diff --git a/sdk/table/azure-table/azure/table/_deserialize.py b/sdk/table/azure-table/azure/table/_deserialize.py index 7ee228d8bcf6..fb76221a6af2 100644 --- a/sdk/table/azure-table/azure/table/_deserialize.py +++ b/sdk/table/azure-table/azure/table/_deserialize.py @@ -4,15 +4,14 @@ # license information. # -------------------------------------------------------------------------- # pylint: disable=unused-argument +import datetime from uuid import UUID -from dateutil.parser import parse from azure.table._shared import url_quote from azure.table._entity import EntityProperty, EdmType, Entity from azure.table._shared._common_conversion import _decode_base64_to_bytes from azure.table._generated.models import TableProperties from azure.core.exceptions import ResourceExistsError - from ._shared.models import TableErrorCode @@ -54,7 +53,9 @@ def _from_entity_int32(value): def _from_entity_datetime(value): - return parse(value) + # TODO: Fix this + local_timezone = datetime.datetime.now(datetime.timezone(datetime.timedelta(0))).tzinfo + return datetime.datetime.strptime(value, '%Y-%m-%dT%H:%M:%SZ').replace(tzinfo=local_timezone) def _from_entity_guid(value): @@ -119,7 +120,9 @@ def _convert_to_entity(entry_element): # Timestamp is a known property timestamp = properties.pop('Timestamp', None) if timestamp: - entity['Timestamp'] = _from_entity_datetime(timestamp) + # TODO: verify change here + # entity['Timestamp'] = _from_entity_datetime(timestamp) + entity['Timestamp'] = timestamp for name, value in properties.items(): mtype = edmtypes.get(name) diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_binary_property_value.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_binary_property_value.yaml index 063f3554942c..bcdf7c9722b7 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_binary_property_value.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_binary_property_value.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:46 GMT + - Thu, 16 Jul 2020 19:35:25 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:46 GMT + - Thu, 16 Jul 2020 19:35:25 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:32:45 GMT + - Thu, 16 Jul 2020 19:35:23 GMT location: - https://storagename.table.core.windows.net/Tables('uttable99fe1256') server: @@ -64,27 +64,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:47 GMT + - Thu, 16 Jul 2020 19:35:25 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:47 GMT + - Thu, 16 Jul 2020 19:35:25 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttable99fe1256 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable99fe1256/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A32%3A45.7387783Z''\"","PartitionKey":"pk99fe1256","RowKey":"rk99fe1256","Timestamp":"2020-07-16T15:32:45.7387783Z","binary@odata.type":"Edm.Binary","binary":"AQIDBAUGBwgJCg=="}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable99fe1256/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A24.5973502Z''\"","PartitionKey":"pk99fe1256","RowKey":"rk99fe1256","Timestamp":"2020-07-16T19:35:24.5973502Z","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, 16 Jul 2020 15:32:45 GMT + - Thu, 16 Jul 2020 19:35:23 GMT etag: - - W/"datetime'2020-07-16T15%3A32%3A45.7387783Z'" + - W/"datetime'2020-07-16T19%3A35%3A24.5973502Z'" location: - https://storagename.table.core.windows.net/uttable99fe1256(PartitionKey='pk99fe1256',RowKey='rk99fe1256') server: @@ -110,27 +110,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:47 GMT + - Thu, 16 Jul 2020 19:35:25 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:47 GMT + - Thu, 16 Jul 2020 19:35:25 GMT x-ms-version: - '2019-07-07' 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''2020-07-16T15%3A32%3A45.7387783Z''\"","PartitionKey":"pk99fe1256","RowKey":"rk99fe1256","Timestamp":"2020-07-16T15:32:45.7387783Z","binary@odata.type":"Edm.Binary","binary":"AQIDBAUGBwgJCg=="}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable99fe1256/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A24.5973502Z''\"","PartitionKey":"pk99fe1256","RowKey":"rk99fe1256","Timestamp":"2020-07-16T19:35:24.5973502Z","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, 16 Jul 2020 15:32:45 GMT + - Thu, 16 Jul 2020 19:35:24 GMT etag: - - W/"datetime'2020-07-16T15%3A32%3A45.7387783Z'" + - W/"datetime'2020-07-16T19%3A35%3A24.5973502Z'" server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -154,11 +154,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:32:47 GMT + - Thu, 16 Jul 2020 19:35:26 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:47 GMT + - Thu, 16 Jul 2020 19:35:26 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -172,7 +172,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:32:45 GMT + - Thu, 16 Jul 2020 19:35:24 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_delete_entity.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_delete_entity.yaml index d652272fc9b5..f61e05439d1f 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_delete_entity.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_delete_entity.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:47 GMT + - Thu, 16 Jul 2020 19:35:26 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:47 GMT + - Thu, 16 Jul 2020 19:35:26 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:32:45 GMT + - Thu, 16 Jul 2020 19:35:24 GMT location: - https://storagename.table.core.windows.net/Tables('uttable12440ee0') server: @@ -69,27 +69,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:47 GMT + - Thu, 16 Jul 2020 19:35:26 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:47 GMT + - Thu, 16 Jul 2020 19:35:26 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttable12440ee0 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable12440ee0/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A32%3A46.3623741Z''\"","PartitionKey":"pk12440ee0","RowKey":"rk12440ee0","Timestamp":"2020-07-16T15:32:46.3623741Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable12440ee0/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A25.2397166Z''\"","PartitionKey":"pk12440ee0","RowKey":"rk12440ee0","Timestamp":"2020-07-16T19:35:25.2397166Z","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, 16 Jul 2020 15:32:45 GMT + - Thu, 16 Jul 2020 19:35:24 GMT etag: - - W/"datetime'2020-07-16T15%3A32%3A46.3623741Z'" + - W/"datetime'2020-07-16T19%3A35%3A25.2397166Z'" location: - https://storagename.table.core.windows.net/uttable12440ee0(PartitionKey='pk12440ee0',RowKey='rk12440ee0') server: @@ -117,13 +117,13 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:47 GMT + - Thu, 16 Jul 2020 19:35:26 GMT If-Match: - '*' User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:47 GMT + - Thu, 16 Jul 2020 19:35:26 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -137,7 +137,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:32:45 GMT + - Thu, 16 Jul 2020 19:35:24 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: @@ -159,11 +159,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:47 GMT + - Thu, 16 Jul 2020 19:35:26 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:47 GMT + - Thu, 16 Jul 2020 19:35:26 GMT x-ms-version: - '2019-07-07' method: GET @@ -171,14 +171,14 @@ interactions: response: body: string: '{"odata.error":{"code":"ResourceNotFound","message":{"lang":"en-US","value":"The - specified resource does not exist.\nRequestId:0039691e-c002-0048-2b86-5becfc000000\nTime:2020-07-16T15:32:46.5465021Z"}}}' + specified resource does not exist.\nRequestId:960daaec-1002-0098-48a8-5b1b32000000\nTime:2020-07-16T19:35:25.4118369Z"}}}' headers: cache-control: - no-cache content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:32:45 GMT + - Thu, 16 Jul 2020 19:35:24 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -202,11 +202,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:32:47 GMT + - Thu, 16 Jul 2020 19:35:26 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:47 GMT + - Thu, 16 Jul 2020 19:35:26 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -220,7 +220,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:32:45 GMT + - Thu, 16 Jul 2020 19:35:24 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_delete_entity_not_existing.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_delete_entity_not_existing.yaml index 137edaa1e1ce..ce2cab155bad 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_delete_entity_not_existing.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_delete_entity_not_existing.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:48 GMT + - Thu, 16 Jul 2020 19:35:26 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:48 GMT + - Thu, 16 Jul 2020 19:35:26 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:32:46 GMT + - Thu, 16 Jul 2020 19:35:25 GMT location: - https://storagename.table.core.windows.net/Tables('uttablef9b6145a') server: @@ -61,13 +61,13 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:48 GMT + - Thu, 16 Jul 2020 19:35:27 GMT If-Match: - '*' User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:48 GMT + - Thu, 16 Jul 2020 19:35:27 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -77,16 +77,16 @@ interactions: string: 'ResourceNotFoundThe specified resource does not exist. - RequestId:e79a8321-4002-0016-3886-5b1fff000000 + RequestId:5fd974b4-e002-0041-54a8-5bbd1e000000 - Time:2020-07-16T15:32:47.1038039Z' + Time:2020-07-16T19:35:25.9441993Z' headers: cache-control: - no-cache content-type: - application/xml;charset=utf-8 date: - - Thu, 16 Jul 2020 15:32:46 GMT + - Thu, 16 Jul 2020 19:35:25 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -110,11 +110,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:32:48 GMT + - Thu, 16 Jul 2020 19:35:27 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:48 GMT + - Thu, 16 Jul 2020 19:35:27 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -128,7 +128,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:32:46 GMT + - Thu, 16 Jul 2020 19:35:25 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_delete_entity_with_if_doesnt_match.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_delete_entity_with_if_doesnt_match.yaml index 4b9a14fc9a2f..9e02534dfc99 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_delete_entity_with_if_doesnt_match.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_delete_entity_with_if_doesnt_match.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:48 GMT + - Thu, 16 Jul 2020 19:35:27 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:48 GMT + - Thu, 16 Jul 2020 19:35:27 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:32:46 GMT + - Thu, 16 Jul 2020 19:35:25 GMT location: - https://storagename.table.core.windows.net/Tables('uttablea99a1781') server: @@ -69,27 +69,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:48 GMT + - Thu, 16 Jul 2020 19:35:27 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:48 GMT + - Thu, 16 Jul 2020 19:35:27 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttablea99a1781 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablea99a1781/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A32%3A47.6869118Z''\"","PartitionKey":"pka99a1781","RowKey":"rka99a1781","Timestamp":"2020-07-16T15:32:47.6869118Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablea99a1781/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A26.4459909Z''\"","PartitionKey":"pka99a1781","RowKey":"rka99a1781","Timestamp":"2020-07-16T19:35:26.4459909Z","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, 16 Jul 2020 15:32:46 GMT + - Thu, 16 Jul 2020 19:35:25 GMT etag: - - W/"datetime'2020-07-16T15%3A32%3A47.6869118Z'" + - W/"datetime'2020-07-16T19%3A35%3A26.4459909Z'" location: - https://storagename.table.core.windows.net/uttablea99a1781(PartitionKey='pka99a1781',RowKey='rka99a1781') server: @@ -117,13 +117,13 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:49 GMT + - Thu, 16 Jul 2020 19:35:27 GMT If-Match: - W/"datetime'2012-06-15T22%3A51%3A44.9662825Z'" User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:49 GMT + - Thu, 16 Jul 2020 19:35:27 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -133,16 +133,16 @@ interactions: string: 'UpdateConditionNotSatisfiedThe update condition specified in the request was not satisfied. - RequestId:2172cd82-f002-004b-5686-5beffb000000 + RequestId:456668f9-3002-0048-12a8-5ba790000000 - Time:2020-07-16T15:32:47.7789761Z' + Time:2020-07-16T19:35:26.5280497Z' headers: cache-control: - no-cache content-type: - application/xml;charset=utf-8 date: - - Thu, 16 Jul 2020 15:32:47 GMT + - Thu, 16 Jul 2020 19:35:25 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -166,11 +166,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:32:49 GMT + - Thu, 16 Jul 2020 19:35:27 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:49 GMT + - Thu, 16 Jul 2020 19:35:27 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -184,7 +184,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:32:47 GMT + - Thu, 16 Jul 2020 19:35:25 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_delete_entity_with_if_matches.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_delete_entity_with_if_matches.yaml index 0fdfec121b36..bc98f35eaa94 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_delete_entity_with_if_matches.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_delete_entity_with_if_matches.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:49 GMT + - Thu, 16 Jul 2020 19:35:27 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:49 GMT + - Thu, 16 Jul 2020 19:35:27 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:32:48 GMT + - Thu, 16 Jul 2020 19:35:26 GMT location: - https://storagename.table.core.windows.net/Tables('uttable3801156d') server: @@ -69,27 +69,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:49 GMT + - Thu, 16 Jul 2020 19:35:28 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:49 GMT + - Thu, 16 Jul 2020 19:35:28 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttable3801156d response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable3801156d/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A32%3A48.3321461Z''\"","PartitionKey":"pk3801156d","RowKey":"rk3801156d","Timestamp":"2020-07-16T15:32:48.3321461Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable3801156d/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A27.0665911Z''\"","PartitionKey":"pk3801156d","RowKey":"rk3801156d","Timestamp":"2020-07-16T19:35:27.0665911Z","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, 16 Jul 2020 15:32:48 GMT + - Thu, 16 Jul 2020 19:35:26 GMT etag: - - W/"datetime'2020-07-16T15%3A32%3A48.3321461Z'" + - W/"datetime'2020-07-16T19%3A35%3A27.0665911Z'" location: - https://storagename.table.core.windows.net/uttable3801156d(PartitionKey='pk3801156d',RowKey='rk3801156d') server: @@ -117,13 +117,13 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:49 GMT + - Thu, 16 Jul 2020 19:35:28 GMT If-Match: - - W/"datetime'2020-07-16T15%3A32%3A48.3321461Z'" + - W/"datetime'2020-07-16T19%3A35%3A27.0665911Z'" User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:49 GMT + - Thu, 16 Jul 2020 19:35:28 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -137,7 +137,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:32:48 GMT + - Thu, 16 Jul 2020 19:35:26 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: @@ -159,11 +159,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:49 GMT + - Thu, 16 Jul 2020 19:35:28 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:49 GMT + - Thu, 16 Jul 2020 19:35:28 GMT x-ms-version: - '2019-07-07' method: GET @@ -171,14 +171,14 @@ interactions: response: body: string: '{"odata.error":{"code":"ResourceNotFound","message":{"lang":"en-US","value":"The - specified resource does not exist.\nRequestId:6090a6fb-1002-0005-2486-5b2a1e000000\nTime:2020-07-16T15:32:48.5172768Z"}}}' + specified resource does not exist.\nRequestId:1acdac17-c002-0091-03a8-5b01bc000000\nTime:2020-07-16T19:35:27.2347098Z"}}}' headers: cache-control: - no-cache content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:32:48 GMT + - Thu, 16 Jul 2020 19:35:26 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -202,11 +202,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:32:49 GMT + - Thu, 16 Jul 2020 19:35:28 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:49 GMT + - Thu, 16 Jul 2020 19:35:28 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -220,7 +220,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:32:48 GMT + - Thu, 16 Jul 2020 19:35:26 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_empty_and_spaces_property_value.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_empty_and_spaces_property_value.yaml index 4602b9ae65f2..401ed46763e1 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_empty_and_spaces_property_value.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_empty_and_spaces_property_value.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:50 GMT + - Thu, 16 Jul 2020 19:35:28 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:50 GMT + - Thu, 16 Jul 2020 19:35:28 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:32:48 GMT + - Thu, 16 Jul 2020 19:35:26 GMT location: - https://storagename.table.core.windows.net/Tables('uttable66111670') server: @@ -67,27 +67,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:50 GMT + - Thu, 16 Jul 2020 19:35:28 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:50 GMT + - Thu, 16 Jul 2020 19:35:28 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttable66111670 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable66111670/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A32%3A49.0432997Z''\"","PartitionKey":"pk66111670","RowKey":"rk66111670","Timestamp":"2020-07-16T15:32:49.0432997Z","EmptyByte":"","EmptyUnicode":"","SpacesOnlyByte":" ","SpacesOnlyUnicode":" ","SpacesBeforeByte":" Text","SpacesBeforeUnicode":" Text","SpacesAfterByte":"Text ","SpacesAfterUnicode":"Text ","SpacesBeforeAndAfterByte":" Text ","SpacesBeforeAndAfterUnicode":" Text "}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable66111670/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A27.7467826Z''\"","PartitionKey":"pk66111670","RowKey":"rk66111670","Timestamp":"2020-07-16T19:35:27.7467826Z","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, 16 Jul 2020 15:32:48 GMT + - Thu, 16 Jul 2020 19:35:26 GMT etag: - - W/"datetime'2020-07-16T15%3A32%3A49.0432997Z'" + - W/"datetime'2020-07-16T19%3A35%3A27.7467826Z'" location: - https://storagename.table.core.windows.net/uttable66111670(PartitionKey='pk66111670',RowKey='rk66111670') server: @@ -113,27 +113,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:50 GMT + - Thu, 16 Jul 2020 19:35:29 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:50 GMT + - Thu, 16 Jul 2020 19:35:29 GMT x-ms-version: - '2019-07-07' 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''2020-07-16T15%3A32%3A49.0432997Z''\"","PartitionKey":"pk66111670","RowKey":"rk66111670","Timestamp":"2020-07-16T15:32:49.0432997Z","EmptyByte":"","EmptyUnicode":"","SpacesOnlyByte":" ","SpacesOnlyUnicode":" ","SpacesBeforeByte":" Text","SpacesBeforeUnicode":" Text","SpacesAfterByte":"Text ","SpacesAfterUnicode":"Text ","SpacesBeforeAndAfterByte":" Text ","SpacesBeforeAndAfterUnicode":" Text "}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable66111670/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A27.7467826Z''\"","PartitionKey":"pk66111670","RowKey":"rk66111670","Timestamp":"2020-07-16T19:35:27.7467826Z","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, 16 Jul 2020 15:32:48 GMT + - Thu, 16 Jul 2020 19:35:27 GMT etag: - - W/"datetime'2020-07-16T15%3A32%3A49.0432997Z'" + - W/"datetime'2020-07-16T19%3A35%3A27.7467826Z'" server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -157,11 +157,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:32:50 GMT + - Thu, 16 Jul 2020 19:35:29 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:50 GMT + - Thu, 16 Jul 2020 19:35:29 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -175,7 +175,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:32:48 GMT + - Thu, 16 Jul 2020 19:35:27 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_get_entity.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_get_entity.yaml index 6006a39cc964..39dc76e27f8e 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_get_entity.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_get_entity.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:50 GMT + - Thu, 16 Jul 2020 19:35:29 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:50 GMT + - Thu, 16 Jul 2020 19:35:29 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:32:48 GMT + - Thu, 16 Jul 2020 19:35:27 GMT location: - https://storagename.table.core.windows.net/Tables('uttablee7730dad') server: @@ -69,27 +69,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:50 GMT + - Thu, 16 Jul 2020 19:35:29 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:50 GMT + - Thu, 16 Jul 2020 19:35:29 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttablee7730dad response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablee7730dad/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A32%3A49.682974Z''\"","PartitionKey":"pke7730dad","RowKey":"rke7730dad","Timestamp":"2020-07-16T15:32:49.682974Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablee7730dad/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A28.3571458Z''\"","PartitionKey":"pke7730dad","RowKey":"rke7730dad","Timestamp":"2020-07-16T19:35:28.3571458Z","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, 16 Jul 2020 15:32:48 GMT + - Thu, 16 Jul 2020 19:35:28 GMT etag: - - W/"datetime'2020-07-16T15%3A32%3A49.682974Z'" + - W/"datetime'2020-07-16T19%3A35%3A28.3571458Z'" location: - https://storagename.table.core.windows.net/uttablee7730dad(PartitionKey='pke7730dad',RowKey='rke7730dad') server: @@ -115,27 +115,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:51 GMT + - Thu, 16 Jul 2020 19:35:29 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:51 GMT + - Thu, 16 Jul 2020 19:35:29 GMT x-ms-version: - '2019-07-07' 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''2020-07-16T15%3A32%3A49.682974Z''\"","PartitionKey":"pke7730dad","RowKey":"rke7730dad","Timestamp":"2020-07-16T15:32:49.682974Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablee7730dad/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A28.3571458Z''\"","PartitionKey":"pke7730dad","RowKey":"rke7730dad","Timestamp":"2020-07-16T19:35:28.3571458Z","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, 16 Jul 2020 15:32:48 GMT + - Thu, 16 Jul 2020 19:35:28 GMT etag: - - W/"datetime'2020-07-16T15%3A32%3A49.682974Z'" + - W/"datetime'2020-07-16T19%3A35%3A28.3571458Z'" server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -159,11 +159,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:32:51 GMT + - Thu, 16 Jul 2020 19:35:29 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:51 GMT + - Thu, 16 Jul 2020 19:35:29 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -177,7 +177,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:32:49 GMT + - Thu, 16 Jul 2020 19:35:28 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_get_entity_full_metadata.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_get_entity_full_metadata.yaml index d49021220e42..fc153abc9d65 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_get_entity_full_metadata.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_get_entity_full_metadata.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:51 GMT + - Thu, 16 Jul 2020 19:35:29 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:51 GMT + - Thu, 16 Jul 2020 19:35:29 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:32:49 GMT + - Thu, 16 Jul 2020 19:35:28 GMT location: - https://storagename.table.core.windows.net/Tables('uttabled1cb135f') server: @@ -69,27 +69,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:51 GMT + - Thu, 16 Jul 2020 19:35:30 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:51 GMT + - Thu, 16 Jul 2020 19:35:30 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttabled1cb135f response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttabled1cb135f/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A32%3A50.2869624Z''\"","PartitionKey":"pkd1cb135f","RowKey":"rkd1cb135f","Timestamp":"2020-07-16T15:32:50.2869624Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttabled1cb135f/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A28.9605923Z''\"","PartitionKey":"pkd1cb135f","RowKey":"rkd1cb135f","Timestamp":"2020-07-16T19:35:28.9605923Z","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, 16 Jul 2020 15:32:49 GMT + - Thu, 16 Jul 2020 19:35:28 GMT etag: - - W/"datetime'2020-07-16T15%3A32%3A50.2869624Z'" + - W/"datetime'2020-07-16T19%3A35%3A28.9605923Z'" location: - https://storagename.table.core.windows.net/uttabled1cb135f(PartitionKey='pkd1cb135f',RowKey='rkd1cb135f') server: @@ -113,29 +113,29 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:51 GMT + - Thu, 16 Jul 2020 19:35:30 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) accept: - application/json;odata=fullmetadata x-ms-date: - - Thu, 16 Jul 2020 15:32:51 GMT + - Thu, 16 Jul 2020 19:35:30 GMT x-ms-version: - '2019-07-07' 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''2020-07-16T15%3A32%3A50.2869624Z''\"","odata.editLink":"uttabled1cb135f(PartitionKey=''pkd1cb135f'',RowKey=''rkd1cb135f'')","PartitionKey":"pkd1cb135f","RowKey":"rkd1cb135f","Timestamp@odata.type":"Edm.DateTime","Timestamp":"2020-07-16T15:32:50.2869624Z","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"}' + 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''2020-07-16T19%3A35%3A28.9605923Z''\"","odata.editLink":"uttabled1cb135f(PartitionKey=''pkd1cb135f'',RowKey=''rkd1cb135f'')","PartitionKey":"pkd1cb135f","RowKey":"rkd1cb135f","Timestamp@odata.type":"Edm.DateTime","Timestamp":"2020-07-16T19:35:28.9605923Z","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, 16 Jul 2020 15:32:49 GMT + - Thu, 16 Jul 2020 19:35:28 GMT etag: - - W/"datetime'2020-07-16T15%3A32%3A50.2869624Z'" + - W/"datetime'2020-07-16T19%3A35%3A28.9605923Z'" server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -159,11 +159,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:32:51 GMT + - Thu, 16 Jul 2020 19:35:30 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:51 GMT + - Thu, 16 Jul 2020 19:35:30 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -177,7 +177,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:32:49 GMT + - Thu, 16 Jul 2020 19:35:28 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_get_entity_if_match.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_get_entity_if_match.yaml index 648e6479e597..e0ea73bf777b 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_get_entity_if_match.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_get_entity_if_match.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:51 GMT + - Thu, 16 Jul 2020 19:35:30 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:51 GMT + - Thu, 16 Jul 2020 19:35:30 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:32:50 GMT + - Thu, 16 Jul 2020 19:35:28 GMT location: - https://storagename.table.core.windows.net/Tables('uttable74691147') server: @@ -69,27 +69,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:52 GMT + - Thu, 16 Jul 2020 19:35:30 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:52 GMT + - Thu, 16 Jul 2020 19:35:30 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttable74691147 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable74691147/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A32%3A50.9509344Z''\"","PartitionKey":"pk74691147","RowKey":"rk74691147","Timestamp":"2020-07-16T15:32:50.9509344Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable74691147/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A29.5606242Z''\"","PartitionKey":"pk74691147","RowKey":"rk74691147","Timestamp":"2020-07-16T19:35:29.5606242Z","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, 16 Jul 2020 15:32:50 GMT + - Thu, 16 Jul 2020 19:35:28 GMT etag: - - W/"datetime'2020-07-16T15%3A32%3A50.9509344Z'" + - W/"datetime'2020-07-16T19%3A35%3A29.5606242Z'" location: - https://storagename.table.core.windows.net/uttable74691147(PartitionKey='pk74691147',RowKey='rk74691147') server: @@ -115,27 +115,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:52 GMT + - Thu, 16 Jul 2020 19:35:30 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:52 GMT + - Thu, 16 Jul 2020 19:35:30 GMT x-ms-version: - '2019-07-07' 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''2020-07-16T15%3A32%3A50.9509344Z''\"","PartitionKey":"pk74691147","RowKey":"rk74691147","Timestamp":"2020-07-16T15:32:50.9509344Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable74691147/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A29.5606242Z''\"","PartitionKey":"pk74691147","RowKey":"rk74691147","Timestamp":"2020-07-16T19:35:29.5606242Z","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, 16 Jul 2020 15:32:50 GMT + - Thu, 16 Jul 2020 19:35:29 GMT etag: - - W/"datetime'2020-07-16T15%3A32%3A50.9509344Z'" + - W/"datetime'2020-07-16T19%3A35%3A29.5606242Z'" server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -161,13 +161,13 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:52 GMT + - Thu, 16 Jul 2020 19:35:30 GMT If-Match: - - W/"datetime'2020-07-16T15%3A32%3A50.9509344Z'" + - W/"datetime'2020-07-16T19%3A35%3A29.5606242Z'" User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:52 GMT + - Thu, 16 Jul 2020 19:35:30 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -181,7 +181,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:32:50 GMT + - Thu, 16 Jul 2020 19:35:29 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: @@ -203,11 +203,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:32:52 GMT + - Thu, 16 Jul 2020 19:35:31 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:52 GMT + - Thu, 16 Jul 2020 19:35:31 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -221,7 +221,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:32:50 GMT + - Thu, 16 Jul 2020 19:35:29 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_get_entity_no_metadata.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_get_entity_no_metadata.yaml index d11dba429a0c..a7d85f1d8b97 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_get_entity_no_metadata.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_get_entity_no_metadata.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:52 GMT + - Thu, 16 Jul 2020 19:35:31 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:52 GMT + - Thu, 16 Jul 2020 19:35:31 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:32:50 GMT + - Thu, 16 Jul 2020 19:35:30 GMT location: - https://storagename.table.core.windows.net/Tables('uttableab3d1289') server: @@ -69,27 +69,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:52 GMT + - Thu, 16 Jul 2020 19:35:31 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:52 GMT + - Thu, 16 Jul 2020 19:35:31 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttableab3d1289 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableab3d1289/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A32%3A51.6936899Z''\"","PartitionKey":"pkab3d1289","RowKey":"rkab3d1289","Timestamp":"2020-07-16T15:32:51.6936899Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableab3d1289/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A30.2420497Z''\"","PartitionKey":"pkab3d1289","RowKey":"rkab3d1289","Timestamp":"2020-07-16T19:35:30.2420497Z","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, 16 Jul 2020 15:32:50 GMT + - Thu, 16 Jul 2020 19:35:30 GMT etag: - - W/"datetime'2020-07-16T15%3A32%3A51.6936899Z'" + - W/"datetime'2020-07-16T19%3A35%3A30.2420497Z'" location: - https://storagename.table.core.windows.net/uttableab3d1289(PartitionKey='pkab3d1289',RowKey='rkab3d1289') server: @@ -113,29 +113,29 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:53 GMT + - Thu, 16 Jul 2020 19:35:31 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) accept: - application/json;odata=nometadata x-ms-date: - - Thu, 16 Jul 2020 15:32:53 GMT + - Thu, 16 Jul 2020 19:35:31 GMT x-ms-version: - '2019-07-07' method: GET uri: https://storagename.table.core.windows.net/uttableab3d1289(PartitionKey='pkab3d1289',RowKey='rkab3d1289') response: body: - string: '{"PartitionKey":"pkab3d1289","RowKey":"rkab3d1289","Timestamp":"2020-07-16T15:32:51.6936899Z","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"}' + string: '{"PartitionKey":"pkab3d1289","RowKey":"rkab3d1289","Timestamp":"2020-07-16T19:35:30.2420497Z","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, 16 Jul 2020 15:32:50 GMT + - Thu, 16 Jul 2020 19:35:30 GMT etag: - - W/"datetime'2020-07-16T15%3A32%3A51.6936899Z'" + - W/"datetime'2020-07-16T19%3A35%3A30.2420497Z'" server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -159,11 +159,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:32:53 GMT + - Thu, 16 Jul 2020 19:35:31 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:53 GMT + - Thu, 16 Jul 2020 19:35:31 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -177,7 +177,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:32:51 GMT + - Thu, 16 Jul 2020 19:35:30 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_get_entity_not_existing.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_get_entity_not_existing.yaml index ef3bd1377669..a692c613ecee 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_get_entity_not_existing.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_get_entity_not_existing.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:53 GMT + - Thu, 16 Jul 2020 19:35:31 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:53 GMT + - Thu, 16 Jul 2020 19:35:31 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:32:51 GMT + - Thu, 16 Jul 2020 19:35:29 GMT location: - https://storagename.table.core.windows.net/Tables('uttablebf5d1327') server: @@ -59,11 +59,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:53 GMT + - Thu, 16 Jul 2020 19:35:32 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:53 GMT + - Thu, 16 Jul 2020 19:35:32 GMT x-ms-version: - '2019-07-07' method: GET @@ -71,14 +71,14 @@ interactions: response: body: string: '{"odata.error":{"code":"ResourceNotFound","message":{"lang":"en-US","value":"The - specified resource does not exist.\nRequestId:712b3549-1002-0027-2286-5b4428000000\nTime:2020-07-16T15:32:52.2939902Z"}}}' + specified resource does not exist.\nRequestId:2c0cf969-d002-006b-09a8-5bc85b000000\nTime:2020-07-16T19:35:30.8797940Z"}}}' headers: cache-control: - no-cache content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:32:51 GMT + - Thu, 16 Jul 2020 19:35:30 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -102,11 +102,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:32:53 GMT + - Thu, 16 Jul 2020 19:35:32 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:53 GMT + - Thu, 16 Jul 2020 19:35:32 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -120,7 +120,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:32:51 GMT + - Thu, 16 Jul 2020 19:35:30 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_get_entity_with_hook.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_get_entity_with_hook.yaml index 52271a2012fe..78fb24928dad 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_get_entity_with_hook.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_get_entity_with_hook.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:53 GMT + - Thu, 16 Jul 2020 19:35:32 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:53 GMT + - Thu, 16 Jul 2020 19:35:32 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:32:51 GMT + - Thu, 16 Jul 2020 19:35:30 GMT location: - https://storagename.table.core.windows.net/Tables('uttable871e11d8') server: @@ -69,27 +69,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:54 GMT + - Thu, 16 Jul 2020 19:35:32 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:54 GMT + - Thu, 16 Jul 2020 19:35:32 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttable871e11d8 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable871e11d8/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A32%3A52.816122Z''\"","PartitionKey":"pk871e11d8","RowKey":"rk871e11d8","Timestamp":"2020-07-16T15:32:52.816122Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable871e11d8/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A31.3882099Z''\"","PartitionKey":"pk871e11d8","RowKey":"rk871e11d8","Timestamp":"2020-07-16T19:35:31.3882099Z","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, 16 Jul 2020 15:32:51 GMT + - Thu, 16 Jul 2020 19:35:31 GMT etag: - - W/"datetime'2020-07-16T15%3A32%3A52.816122Z'" + - W/"datetime'2020-07-16T19%3A35%3A31.3882099Z'" location: - https://storagename.table.core.windows.net/uttable871e11d8(PartitionKey='pk871e11d8',RowKey='rk871e11d8') server: @@ -115,27 +115,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:54 GMT + - Thu, 16 Jul 2020 19:35:32 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:54 GMT + - Thu, 16 Jul 2020 19:35:32 GMT x-ms-version: - '2019-07-07' method: GET uri: https://storagename.table.core.windows.net/uttable871e11d8(PartitionKey='pk871e11d8',RowKey='rk871e11d8') response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable871e11d8/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A32%3A52.816122Z''\"","PartitionKey":"pk871e11d8","RowKey":"rk871e11d8","Timestamp":"2020-07-16T15:32:52.816122Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable871e11d8/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A31.3882099Z''\"","PartitionKey":"pk871e11d8","RowKey":"rk871e11d8","Timestamp":"2020-07-16T19:35:31.3882099Z","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, 16 Jul 2020 15:32:52 GMT + - Thu, 16 Jul 2020 19:35:31 GMT etag: - - W/"datetime'2020-07-16T15%3A32%3A52.816122Z'" + - W/"datetime'2020-07-16T19%3A35%3A31.3882099Z'" server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -159,11 +159,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:32:54 GMT + - Thu, 16 Jul 2020 19:35:32 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:54 GMT + - Thu, 16 Jul 2020 19:35:32 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -177,7 +177,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:32:52 GMT + - Thu, 16 Jul 2020 19:35:31 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_get_entity_with_select.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_get_entity_with_select.yaml index 4960f67b4851..03cf921f126d 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_get_entity_with_select.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_get_entity_with_select.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:54 GMT + - Thu, 16 Jul 2020 19:35:32 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:54 GMT + - Thu, 16 Jul 2020 19:35:32 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:32:52 GMT + - Thu, 16 Jul 2020 19:35:31 GMT location: - https://storagename.table.core.windows.net/Tables('uttableabfa12a7') server: @@ -69,27 +69,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:54 GMT + - Thu, 16 Jul 2020 19:35:33 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:54 GMT + - Thu, 16 Jul 2020 19:35:33 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttableabfa12a7 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableabfa12a7/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A32%3A53.4305147Z''\"","PartitionKey":"pkabfa12a7","RowKey":"rkabfa12a7","Timestamp":"2020-07-16T15:32:53.4305147Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableabfa12a7/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A31.9768102Z''\"","PartitionKey":"pkabfa12a7","RowKey":"rkabfa12a7","Timestamp":"2020-07-16T19:35:31.9768102Z","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, 16 Jul 2020 15:32:52 GMT + - Thu, 16 Jul 2020 19:35:31 GMT etag: - - W/"datetime'2020-07-16T15%3A32%3A53.4305147Z'" + - W/"datetime'2020-07-16T19%3A35%3A31.9768102Z'" location: - https://storagename.table.core.windows.net/uttableabfa12a7(PartitionKey='pkabfa12a7',RowKey='rkabfa12a7') server: @@ -115,27 +115,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:54 GMT + - Thu, 16 Jul 2020 19:35:33 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:54 GMT + - Thu, 16 Jul 2020 19:35:33 GMT x-ms-version: - '2019-07-07' method: GET uri: https://storagename.table.core.windows.net/uttableabfa12a7(PartitionKey='pkabfa12a7',RowKey='rkabfa12a7')?$select=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''2020-07-16T15%3A32%3A53.4305147Z''\"","age@odata.type":"Edm.Int64","age":"39","sex":"male","xyz":null}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableabfa12a7/@Element&$select=age,sex,xyz","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A31.9768102Z''\"","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, 16 Jul 2020 15:32:52 GMT + - Thu, 16 Jul 2020 19:35:31 GMT etag: - - W/"datetime'2020-07-16T15%3A32%3A53.4305147Z'" + - W/"datetime'2020-07-16T19%3A35%3A31.9768102Z'" server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -159,11 +159,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:32:54 GMT + - Thu, 16 Jul 2020 19:35:33 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:54 GMT + - Thu, 16 Jul 2020 19:35:33 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -177,7 +177,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:32:52 GMT + - Thu, 16 Jul 2020 19:35:31 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_get_entity_with_special_doubles.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_get_entity_with_special_doubles.yaml index e4689e00d4b9..2e4f6f7a54b9 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_get_entity_with_special_doubles.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_get_entity_with_special_doubles.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:55 GMT + - Thu, 16 Jul 2020 19:35:33 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:55 GMT + - Thu, 16 Jul 2020 19:35:33 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:32:53 GMT + - Thu, 16 Jul 2020 19:35:31 GMT location: - https://storagename.table.core.windows.net/Tables('uttable65ff1655') server: @@ -65,27 +65,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:55 GMT + - Thu, 16 Jul 2020 19:35:33 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:55 GMT + - Thu, 16 Jul 2020 19:35:33 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttable65ff1655 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable65ff1655/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A32%3A54.0630771Z''\"","PartitionKey":"pk65ff1655","RowKey":"rk65ff1655","Timestamp":"2020-07-16T15:32:54.0630771Z","inf@odata.type":"Edm.Double","inf":"Infinity","negativeinf@odata.type":"Edm.Double","negativeinf":"-Infinity","nan@odata.type":"Edm.Double","nan":"NaN"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable65ff1655/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A32.5796568Z''\"","PartitionKey":"pk65ff1655","RowKey":"rk65ff1655","Timestamp":"2020-07-16T19:35:32.5796568Z","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, 16 Jul 2020 15:32:54 GMT + - Thu, 16 Jul 2020 19:35:32 GMT etag: - - W/"datetime'2020-07-16T15%3A32%3A54.0630771Z'" + - W/"datetime'2020-07-16T19%3A35%3A32.5796568Z'" location: - https://storagename.table.core.windows.net/uttable65ff1655(PartitionKey='pk65ff1655',RowKey='rk65ff1655') server: @@ -111,27 +111,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:55 GMT + - Thu, 16 Jul 2020 19:35:33 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:55 GMT + - Thu, 16 Jul 2020 19:35:33 GMT x-ms-version: - '2019-07-07' 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''2020-07-16T15%3A32%3A54.0630771Z''\"","PartitionKey":"pk65ff1655","RowKey":"rk65ff1655","Timestamp":"2020-07-16T15:32:54.0630771Z","inf@odata.type":"Edm.Double","inf":"Infinity","negativeinf@odata.type":"Edm.Double","negativeinf":"-Infinity","nan@odata.type":"Edm.Double","nan":"NaN"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable65ff1655/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A32.5796568Z''\"","PartitionKey":"pk65ff1655","RowKey":"rk65ff1655","Timestamp":"2020-07-16T19:35:32.5796568Z","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, 16 Jul 2020 15:32:54 GMT + - Thu, 16 Jul 2020 19:35:32 GMT etag: - - W/"datetime'2020-07-16T15%3A32%3A54.0630771Z'" + - W/"datetime'2020-07-16T19%3A35%3A32.5796568Z'" server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -155,11 +155,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:32:55 GMT + - Thu, 16 Jul 2020 19:35:33 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:55 GMT + - Thu, 16 Jul 2020 19:35:33 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -173,7 +173,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:32:54 GMT + - Thu, 16 Jul 2020 19:35:32 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_conflict.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_conflict.yaml index 7ad4b8e58dca..c45dabc9a41e 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_conflict.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_conflict.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:55 GMT + - Thu, 16 Jul 2020 19:35:34 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:55 GMT + - Thu, 16 Jul 2020 19:35:34 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:32:54 GMT + - Thu, 16 Jul 2020 19:35:32 GMT location: - https://storagename.table.core.windows.net/Tables('uttableace512b3') server: @@ -69,27 +69,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:55 GMT + - Thu, 16 Jul 2020 19:35:34 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:55 GMT + - Thu, 16 Jul 2020 19:35:34 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttableace512b3 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableace512b3/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A32%3A54.6814391Z''\"","PartitionKey":"pkace512b3","RowKey":"rkace512b3","Timestamp":"2020-07-16T15:32:54.6814391Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableace512b3/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A33.2280291Z''\"","PartitionKey":"pkace512b3","RowKey":"rkace512b3","Timestamp":"2020-07-16T19:35:33.2280291Z","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, 16 Jul 2020 15:32:54 GMT + - Thu, 16 Jul 2020 19:35:32 GMT etag: - - W/"datetime'2020-07-16T15%3A32%3A54.6814391Z'" + - W/"datetime'2020-07-16T19%3A35%3A33.2280291Z'" location: - https://storagename.table.core.windows.net/uttableace512b3(PartitionKey='pkace512b3',RowKey='rkace512b3') server: @@ -125,11 +125,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:56 GMT + - Thu, 16 Jul 2020 19:35:34 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:56 GMT + - Thu, 16 Jul 2020 19:35:34 GMT x-ms-version: - '2019-07-07' method: POST @@ -137,14 +137,14 @@ interactions: response: body: string: '{"odata.error":{"code":"EntityAlreadyExists","message":{"lang":"en-US","value":"The - specified entity already exists.\nRequestId:ddd7f415-8002-006d-4786-5b744f000000\nTime:2020-07-16T15:32:54.7624940Z"}}}' + specified entity already exists.\nRequestId:54fecd79-6002-0014-11a8-5b5669000000\nTime:2020-07-16T19:35:33.3120893Z"}}}' headers: cache-control: - no-cache content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:32:54 GMT + - Thu, 16 Jul 2020 19:35:32 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -168,11 +168,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:32:56 GMT + - Thu, 16 Jul 2020 19:35:34 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:56 GMT + - Thu, 16 Jul 2020 19:35:34 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -186,7 +186,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:32:54 GMT + - Thu, 16 Jul 2020 19:35:32 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_dictionary.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_dictionary.yaml index 6ee81af7ff95..4649d7759373 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_dictionary.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_dictionary.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:56 GMT + - Thu, 16 Jul 2020 19:35:34 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:56 GMT + - Thu, 16 Jul 2020 19:35:34 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:32:55 GMT + - Thu, 16 Jul 2020 19:35:33 GMT location: - https://storagename.table.core.windows.net/Tables('uttabled3851397') server: @@ -69,27 +69,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:56 GMT + - Thu, 16 Jul 2020 19:35:35 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:56 GMT + - Thu, 16 Jul 2020 19:35:35 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttabled3851397 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttabled3851397/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A32%3A55.2902433Z''\"","PartitionKey":"pkd3851397","RowKey":"rkd3851397","Timestamp":"2020-07-16T15:32:55.2902433Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttabled3851397/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A34.0077877Z''\"","PartitionKey":"pkd3851397","RowKey":"rkd3851397","Timestamp":"2020-07-16T19:35:34.0077877Z","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, 16 Jul 2020 15:32:55 GMT + - Thu, 16 Jul 2020 19:35:33 GMT etag: - - W/"datetime'2020-07-16T15%3A32%3A55.2902433Z'" + - W/"datetime'2020-07-16T19%3A35%3A34.0077877Z'" location: - https://storagename.table.core.windows.net/uttabled3851397(PartitionKey='pkd3851397',RowKey='rkd3851397') server: @@ -115,11 +115,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:32:56 GMT + - Thu, 16 Jul 2020 19:35:35 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:56 GMT + - Thu, 16 Jul 2020 19:35:35 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -133,7 +133,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:32:55 GMT + - Thu, 16 Jul 2020 19:35:33 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_empty_string_pk.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_empty_string_pk.yaml index 2080551a2ed5..53fb8198dbd6 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_empty_string_pk.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_empty_string_pk.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:56 GMT + - Thu, 16 Jul 2020 19:35:35 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:56 GMT + - Thu, 16 Jul 2020 19:35:35 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:32:55 GMT + - Thu, 16 Jul 2020 19:35:34 GMT location: - https://storagename.table.core.windows.net/Tables('uttable3d1615c0') server: @@ -63,27 +63,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:57 GMT + - Thu, 16 Jul 2020 19:35:35 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:57 GMT + - Thu, 16 Jul 2020 19:35:35 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttable3d1615c0 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable3d1615c0/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A32%3A55.7917435Z''\"","PartitionKey":"","RowKey":"rk","Timestamp":"2020-07-16T15:32:55.7917435Z"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable3d1615c0/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A34.5446671Z''\"","PartitionKey":"","RowKey":"rk","Timestamp":"2020-07-16T19:35:34.5446671Z"}' headers: cache-control: - no-cache content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:32:55 GMT + - Thu, 16 Jul 2020 19:35:34 GMT etag: - - W/"datetime'2020-07-16T15%3A32%3A55.7917435Z'" + - W/"datetime'2020-07-16T19%3A35%3A34.5446671Z'" location: - https://storagename.table.core.windows.net/uttable3d1615c0(PartitionKey='',RowKey='rk') server: @@ -109,11 +109,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:32:57 GMT + - Thu, 16 Jul 2020 19:35:35 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:57 GMT + - Thu, 16 Jul 2020 19:35:35 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -127,7 +127,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:32:55 GMT + - Thu, 16 Jul 2020 19:35:34 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_empty_string_rk.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_empty_string_rk.yaml index b4e7845c770a..535621979c5c 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_empty_string_rk.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_empty_string_rk.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:57 GMT + - Thu, 16 Jul 2020 19:35:35 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:57 GMT + - Thu, 16 Jul 2020 19:35:35 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:32:55 GMT + - Thu, 16 Jul 2020 19:35:34 GMT location: - https://storagename.table.core.windows.net/Tables('uttable3d1a15c2') server: @@ -63,27 +63,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:57 GMT + - Thu, 16 Jul 2020 19:35:36 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:57 GMT + - Thu, 16 Jul 2020 19:35:36 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttable3d1a15c2 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable3d1a15c2/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A32%3A56.3361614Z''\"","PartitionKey":"pk","RowKey":"","Timestamp":"2020-07-16T15:32:56.3361614Z"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable3d1a15c2/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A35.0918546Z''\"","PartitionKey":"pk","RowKey":"","Timestamp":"2020-07-16T19:35:35.0918546Z"}' headers: cache-control: - no-cache content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:32:56 GMT + - Thu, 16 Jul 2020 19:35:34 GMT etag: - - W/"datetime'2020-07-16T15%3A32%3A56.3361614Z'" + - W/"datetime'2020-07-16T19%3A35%3A35.0918546Z'" location: - https://storagename.table.core.windows.net/uttable3d1a15c2(PartitionKey='pk',RowKey='') server: @@ -109,11 +109,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:32:57 GMT + - Thu, 16 Jul 2020 19:35:36 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:57 GMT + - Thu, 16 Jul 2020 19:35:36 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -127,7 +127,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:32:56 GMT + - Thu, 16 Jul 2020 19:35:34 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_missing_pk.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_missing_pk.yaml index 6f1a94f3cdbd..f97d5bb5c6f3 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_missing_pk.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_missing_pk.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:57 GMT + - Thu, 16 Jul 2020 19:35:36 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:57 GMT + - Thu, 16 Jul 2020 19:35:36 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:32:56 GMT + - Thu, 16 Jul 2020 19:35:34 GMT location: - https://storagename.table.core.windows.net/Tables('uttabled41f1395') server: @@ -59,11 +59,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:32:58 GMT + - Thu, 16 Jul 2020 19:35:36 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:58 GMT + - Thu, 16 Jul 2020 19:35:36 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -77,7 +77,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:32:56 GMT + - Thu, 16 Jul 2020 19:35:35 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_missing_rk.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_missing_rk.yaml index c3e947996d50..aca3639fe98c 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_missing_rk.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_missing_rk.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:58 GMT + - Thu, 16 Jul 2020 19:35:36 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:58 GMT + - Thu, 16 Jul 2020 19:35:36 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:32:56 GMT + - Thu, 16 Jul 2020 19:35:35 GMT location: - https://storagename.table.core.windows.net/Tables('uttabled4231397') server: @@ -59,11 +59,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:32:58 GMT + - Thu, 16 Jul 2020 19:35:37 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:58 GMT + - Thu, 16 Jul 2020 19:35:37 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -77,7 +77,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:32:56 GMT + - Thu, 16 Jul 2020 19:35:35 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_property_name_too_long.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_property_name_too_long.yaml index 9deeeaff1699..4592a1873cc9 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_property_name_too_long.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_property_name_too_long.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:58 GMT + - Thu, 16 Jul 2020 19:35:37 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:58 GMT + - Thu, 16 Jul 2020 19:35:37 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:32:57 GMT + - Thu, 16 Jul 2020 19:35:35 GMT location: - https://storagename.table.core.windows.net/Tables('uttablee10d18a6') server: @@ -64,11 +64,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:59 GMT + - Thu, 16 Jul 2020 19:35:37 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:59 GMT + - Thu, 16 Jul 2020 19:35:37 GMT x-ms-version: - '2019-07-07' method: POST @@ -76,14 +76,14 @@ interactions: response: body: string: '{"odata.error":{"code":"PropertyNameTooLong","message":{"lang":"en-US","value":"The - property name exceeds the maximum allowed length (255).\nRequestId:d0fa8f96-3002-003b-4786-5b9c3f000000\nTime:2020-07-16T15:32:57.8659553Z"}}}' + property name exceeds the maximum allowed length (255).\nRequestId:6920ea2a-9002-0001-66a8-5b94f0000000\nTime:2020-07-16T19:35:36.5307767Z"}}}' headers: cache-control: - no-cache content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:32:57 GMT + - Thu, 16 Jul 2020 19:35:35 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -107,11 +107,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:32:59 GMT + - Thu, 16 Jul 2020 19:35:37 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:59 GMT + - Thu, 16 Jul 2020 19:35:37 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -125,7 +125,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:32:57 GMT + - Thu, 16 Jul 2020 19:35:35 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_too_many_properties.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_too_many_properties.yaml index 290709fa976a..6e2521c96b97 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_too_many_properties.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_too_many_properties.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:59 GMT + - Thu, 16 Jul 2020 19:35:37 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:59 GMT + - Thu, 16 Jul 2020 19:35:37 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:32:57 GMT + - Thu, 16 Jul 2020 19:35:36 GMT location: - https://storagename.table.core.windows.net/Tables('uttable97d21773') server: @@ -132,11 +132,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:59 GMT + - Thu, 16 Jul 2020 19:35:38 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:59 GMT + - Thu, 16 Jul 2020 19:35:38 GMT x-ms-version: - '2019-07-07' method: POST @@ -145,14 +145,14 @@ interactions: body: string: '{"odata.error":{"code":"TooManyProperties","message":{"lang":"en-US","value":"The entity contains more properties than allowed. Each entity can include up to - 252 properties to store data. Each entity also has 3 system properties.\nRequestId:045ee392-3002-0056-3086-5b3611000000\nTime:2020-07-16T15:32:58.4211857Z"}}}' + 252 properties to store data. Each entity also has 3 system properties.\nRequestId:07f31a5b-7002-0044-1ca8-5b4961000000\nTime:2020-07-16T19:35:37.0439996Z"}}}' headers: cache-control: - no-cache content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:32:57 GMT + - Thu, 16 Jul 2020 19:35:36 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -176,11 +176,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:32:59 GMT + - Thu, 16 Jul 2020 19:35:38 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:59 GMT + - Thu, 16 Jul 2020 19:35:38 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -194,7 +194,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:32:57 GMT + - Thu, 16 Jul 2020 19:35:37 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_with_full_metadata.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_with_full_metadata.yaml index a11e5233812e..bc2ceae62c9b 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_with_full_metadata.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_with_full_metadata.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:32:59 GMT + - Thu, 16 Jul 2020 19:35:38 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:32:59 GMT + - Thu, 16 Jul 2020 19:35:38 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:32:58 GMT + - Thu, 16 Jul 2020 19:35:36 GMT location: - https://storagename.table.core.windows.net/Tables('uttable7f6816cf') server: @@ -69,27 +69,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:00 GMT + - Thu, 16 Jul 2020 19:35:38 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:00 GMT + - Thu, 16 Jul 2020 19:35:38 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttable7f6816cf response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable7f6816cf/@Element","odata.type":"storagename.uttable7f6816cf","odata.id":"https://storagename.table.core.windows.net/uttable7f6816cf(PartitionKey=''pk7f6816cf'',RowKey=''rk7f6816cf'')","odata.etag":"W/\"datetime''2020-07-16T15%3A32%3A58.9761383Z''\"","odata.editLink":"uttable7f6816cf(PartitionKey=''pk7f6816cf'',RowKey=''rk7f6816cf'')","PartitionKey":"pk7f6816cf","RowKey":"rk7f6816cf","Timestamp@odata.type":"Edm.DateTime","Timestamp":"2020-07-16T15:32:58.9761383Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable7f6816cf/@Element","odata.type":"storagename.uttable7f6816cf","odata.id":"https://storagename.table.core.windows.net/uttable7f6816cf(PartitionKey=''pk7f6816cf'',RowKey=''rk7f6816cf'')","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A37.5554096Z''\"","odata.editLink":"uttable7f6816cf(PartitionKey=''pk7f6816cf'',RowKey=''rk7f6816cf'')","PartitionKey":"pk7f6816cf","RowKey":"rk7f6816cf","Timestamp@odata.type":"Edm.DateTime","Timestamp":"2020-07-16T19:35:37.5554096Z","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, 16 Jul 2020 15:32:58 GMT + - Thu, 16 Jul 2020 19:35:36 GMT etag: - - W/"datetime'2020-07-16T15%3A32%3A58.9761383Z'" + - W/"datetime'2020-07-16T19%3A35%3A37.5554096Z'" location: - https://storagename.table.core.windows.net/uttable7f6816cf(PartitionKey='pk7f6816cf',RowKey='rk7f6816cf') server: @@ -115,11 +115,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:00 GMT + - Thu, 16 Jul 2020 19:35:38 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:00 GMT + - Thu, 16 Jul 2020 19:35:38 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -133,7 +133,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:32:58 GMT + - Thu, 16 Jul 2020 19:35:36 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_with_hook.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_with_hook.yaml index fd10cb072f4a..293842f9cd0b 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_with_hook.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_with_hook.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:00 GMT + - Thu, 16 Jul 2020 19:35:38 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:00 GMT + - Thu, 16 Jul 2020 19:35:38 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:32:58 GMT + - Thu, 16 Jul 2020 19:35:37 GMT location: - https://storagename.table.core.windows.net/Tables('uttablec092132d') server: @@ -69,27 +69,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:00 GMT + - Thu, 16 Jul 2020 19:35:39 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:00 GMT + - Thu, 16 Jul 2020 19:35:39 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttablec092132d response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablec092132d/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A32%3A59.5177994Z''\"","PartitionKey":"pkc092132d","RowKey":"rkc092132d","Timestamp":"2020-07-16T15:32:59.5177994Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablec092132d/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A38.0816637Z''\"","PartitionKey":"pkc092132d","RowKey":"rkc092132d","Timestamp":"2020-07-16T19:35:38.0816637Z","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, 16 Jul 2020 15:32:58 GMT + - Thu, 16 Jul 2020 19:35:37 GMT etag: - - W/"datetime'2020-07-16T15%3A32%3A59.5177994Z'" + - W/"datetime'2020-07-16T19%3A35%3A38.0816637Z'" location: - https://storagename.table.core.windows.net/uttablec092132d(PartitionKey='pkc092132d',RowKey='rkc092132d') server: @@ -115,11 +115,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:00 GMT + - Thu, 16 Jul 2020 19:35:39 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:00 GMT + - Thu, 16 Jul 2020 19:35:39 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -133,7 +133,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:32:58 GMT + - Thu, 16 Jul 2020 19:35:37 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_with_large_int32_value_throws.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_with_large_int32_value_throws.yaml index dec891de9f98..aa69771c02a3 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_with_large_int32_value_throws.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_with_large_int32_value_throws.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:01 GMT + - Thu, 16 Jul 2020 19:35:39 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:01 GMT + - Thu, 16 Jul 2020 19:35:39 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:32:59 GMT + - Thu, 16 Jul 2020 19:35:38 GMT location: - https://storagename.table.core.windows.net/Tables('uttable8fac1b18') server: @@ -59,11 +59,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:01 GMT + - Thu, 16 Jul 2020 19:35:39 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:01 GMT + - Thu, 16 Jul 2020 19:35:39 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -77,7 +77,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:32:59 GMT + - Thu, 16 Jul 2020 19:35:38 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_with_large_int64_value_throws.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_with_large_int64_value_throws.yaml index c965b76c466d..973d10c13c99 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_with_large_int64_value_throws.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_with_large_int64_value_throws.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:01 GMT + - Thu, 16 Jul 2020 19:35:39 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:01 GMT + - Thu, 16 Jul 2020 19:35:39 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:32:59 GMT + - Thu, 16 Jul 2020 19:35:38 GMT location: - https://storagename.table.core.windows.net/Tables('uttable8ff51b1d') server: @@ -59,11 +59,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:01 GMT + - Thu, 16 Jul 2020 19:35:40 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:01 GMT + - Thu, 16 Jul 2020 19:35:40 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -77,7 +77,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:32:59 GMT + - Thu, 16 Jul 2020 19:35:38 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_with_no_metadata.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_with_no_metadata.yaml index 2ec439e4a49c..ba5a6d4e14dd 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_with_no_metadata.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_entity_with_no_metadata.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:01 GMT + - Thu, 16 Jul 2020 19:35:40 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:01 GMT + - Thu, 16 Jul 2020 19:35:40 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:00 GMT + - Thu, 16 Jul 2020 19:35:39 GMT location: - https://storagename.table.core.windows.net/Tables('uttable51fa15f9') server: @@ -69,27 +69,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:02 GMT + - Thu, 16 Jul 2020 19:35:40 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:02 GMT + - Thu, 16 Jul 2020 19:35:40 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttable51fa15f9 response: body: - string: '{"PartitionKey":"pk51fa15f9","RowKey":"rk51fa15f9","Timestamp":"2020-07-16T15:33:00.953852Z","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"}' + string: '{"PartitionKey":"pk51fa15f9","RowKey":"rk51fa15f9","Timestamp":"2020-07-16T19:35:39.504022Z","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, 16 Jul 2020 15:33:00 GMT + - Thu, 16 Jul 2020 19:35:39 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A00.953852Z'" + - W/"datetime'2020-07-16T19%3A35%3A39.504022Z'" location: - https://storagename.table.core.windows.net/uttable51fa15f9(PartitionKey='pk51fa15f9',RowKey='rk51fa15f9') server: @@ -115,11 +115,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:02 GMT + - Thu, 16 Jul 2020 19:35:40 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:02 GMT + - Thu, 16 Jul 2020 19:35:40 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -133,7 +133,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:00 GMT + - Thu, 16 Jul 2020 19:35:39 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_etag.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_etag.yaml index d56061427471..120ced3b68d5 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_etag.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_etag.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:02 GMT + - Thu, 16 Jul 2020 19:35:40 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:02 GMT + - Thu, 16 Jul 2020 19:35:40 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:00 GMT + - Thu, 16 Jul 2020 19:35:39 GMT location: - https://storagename.table.core.windows.net/Tables('uttablef5f40e06') server: @@ -69,27 +69,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:02 GMT + - Thu, 16 Jul 2020 19:35:41 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:02 GMT + - Thu, 16 Jul 2020 19:35:41 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttablef5f40e06 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablef5f40e06/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A01.4821994Z''\"","PartitionKey":"pkf5f40e06","RowKey":"rkf5f40e06","Timestamp":"2020-07-16T15:33:01.4821994Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablef5f40e06/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A40.0186387Z''\"","PartitionKey":"pkf5f40e06","RowKey":"rkf5f40e06","Timestamp":"2020-07-16T19:35:40.0186387Z","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, 16 Jul 2020 15:33:01 GMT + - Thu, 16 Jul 2020 19:35:39 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A01.4821994Z'" + - W/"datetime'2020-07-16T19%3A35%3A40.0186387Z'" location: - https://storagename.table.core.windows.net/uttablef5f40e06(PartitionKey='pkf5f40e06',RowKey='rkf5f40e06') server: @@ -115,27 +115,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:02 GMT + - Thu, 16 Jul 2020 19:35:41 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:02 GMT + - Thu, 16 Jul 2020 19:35:41 GMT x-ms-version: - '2019-07-07' method: GET uri: https://storagename.table.core.windows.net/uttablef5f40e06(PartitionKey='pkf5f40e06',RowKey='rkf5f40e06') response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablef5f40e06/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A01.4821994Z''\"","PartitionKey":"pkf5f40e06","RowKey":"rkf5f40e06","Timestamp":"2020-07-16T15:33:01.4821994Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablef5f40e06/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A40.0186387Z''\"","PartitionKey":"pkf5f40e06","RowKey":"rkf5f40e06","Timestamp":"2020-07-16T19:35:40.0186387Z","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, 16 Jul 2020 15:33:01 GMT + - Thu, 16 Jul 2020 19:35:39 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A01.4821994Z'" + - W/"datetime'2020-07-16T19%3A35%3A40.0186387Z'" server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_or_merge_entity_with_existing_entity.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_or_merge_entity_with_existing_entity.yaml index 8b848ff6fbcd..29d350da4f85 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_or_merge_entity_with_existing_entity.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_or_merge_entity_with_existing_entity.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:02 GMT + - Thu, 16 Jul 2020 19:35:41 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:02 GMT + - Thu, 16 Jul 2020 19:35:41 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:01 GMT + - Thu, 16 Jul 2020 19:35:39 GMT location: - https://storagename.table.core.windows.net/Tables('uttable95761b92') server: @@ -69,27 +69,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:03 GMT + - Thu, 16 Jul 2020 19:35:41 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:03 GMT + - Thu, 16 Jul 2020 19:35:41 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttable95761b92 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable95761b92/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A02.1090733Z''\"","PartitionKey":"pk95761b92","RowKey":"rk95761b92","Timestamp":"2020-07-16T15:33:02.1090733Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable95761b92/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A40.5104329Z''\"","PartitionKey":"pk95761b92","RowKey":"rk95761b92","Timestamp":"2020-07-16T19:35:40.5104329Z","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, 16 Jul 2020 15:33:01 GMT + - Thu, 16 Jul 2020 19:35:40 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A02.1090733Z'" + - W/"datetime'2020-07-16T19%3A35%3A40.5104329Z'" location: - https://storagename.table.core.windows.net/uttable95761b92(PartitionKey='pk95761b92',RowKey='rk95761b92') server: @@ -121,11 +121,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:03 GMT + - Thu, 16 Jul 2020 19:35:41 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:03 GMT + - Thu, 16 Jul 2020 19:35:41 GMT x-ms-version: - '2019-07-07' method: PATCH @@ -139,9 +139,9 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:01 GMT + - Thu, 16 Jul 2020 19:35:40 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A02.1945475Z'" + - W/"datetime'2020-07-16T19%3A35%3A40.5927006Z'" server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: @@ -163,27 +163,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:03 GMT + - Thu, 16 Jul 2020 19:35:41 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:03 GMT + - Thu, 16 Jul 2020 19:35:41 GMT x-ms-version: - '2019-07-07' 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''2020-07-16T15%3A33%3A02.1945475Z''\"","PartitionKey":"pk95761b92","RowKey":"rk95761b92","Timestamp":"2020-07-16T15:33:02.1945475Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable95761b92/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A40.5927006Z''\"","PartitionKey":"pk95761b92","RowKey":"rk95761b92","Timestamp":"2020-07-16T19:35:40.5927006Z","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, 16 Jul 2020 15:33:01 GMT + - Thu, 16 Jul 2020 19:35:40 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A02.1945475Z'" + - W/"datetime'2020-07-16T19%3A35%3A40.5927006Z'" server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -207,11 +207,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:03 GMT + - Thu, 16 Jul 2020 19:35:41 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:03 GMT + - Thu, 16 Jul 2020 19:35:41 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -225,7 +225,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:01 GMT + - Thu, 16 Jul 2020 19:35:40 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_or_merge_entity_with_non_existing_entity.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_or_merge_entity_with_non_existing_entity.yaml index 5a3d8061e9d7..76f9fa2d3f72 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_or_merge_entity_with_non_existing_entity.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_or_merge_entity_with_non_existing_entity.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:03 GMT + - Thu, 16 Jul 2020 19:35:42 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:03 GMT + - Thu, 16 Jul 2020 19:35:42 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:02 GMT + - Thu, 16 Jul 2020 19:35:40 GMT location: - https://storagename.table.core.windows.net/Tables('uttable7671d3c') server: @@ -65,11 +65,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:04 GMT + - Thu, 16 Jul 2020 19:35:42 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:04 GMT + - Thu, 16 Jul 2020 19:35:42 GMT x-ms-version: - '2019-07-07' method: PATCH @@ -83,9 +83,9 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:02 GMT + - Thu, 16 Jul 2020 19:35:40 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A02.8449898Z'" + - W/"datetime'2020-07-16T19%3A35%3A41.1721088Z'" server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: @@ -107,27 +107,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:04 GMT + - Thu, 16 Jul 2020 19:35:42 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:04 GMT + - Thu, 16 Jul 2020 19:35:42 GMT x-ms-version: - '2019-07-07' 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''2020-07-16T15%3A33%3A02.8449898Z''\"","PartitionKey":"pk7671d3c","RowKey":"rk7671d3c","Timestamp":"2020-07-16T15:33:02.8449898Z","age":"abc","birthday@odata.type":"Edm.DateTime","birthday":"1991-10-04T00:00:00Z","sex":"female","sign":"aquarius"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable7671d3c/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A41.1721088Z''\"","PartitionKey":"pk7671d3c","RowKey":"rk7671d3c","Timestamp":"2020-07-16T19:35:41.1721088Z","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, 16 Jul 2020 15:33:02 GMT + - Thu, 16 Jul 2020 19:35:40 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A02.8449898Z'" + - W/"datetime'2020-07-16T19%3A35%3A41.1721088Z'" server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -151,11 +151,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:04 GMT + - Thu, 16 Jul 2020 19:35:42 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:04 GMT + - Thu, 16 Jul 2020 19:35:42 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -169,7 +169,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:02 GMT + - Thu, 16 Jul 2020 19:35:40 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_or_replace_entity_with_existing_entity.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_or_replace_entity_with_existing_entity.yaml index 9f73194ab5cd..e6b35d0e8c3d 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_or_replace_entity_with_existing_entity.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_or_replace_entity_with_existing_entity.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:04 GMT + - Thu, 16 Jul 2020 19:35:42 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:04 GMT + - Thu, 16 Jul 2020 19:35:42 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:02 GMT + - Thu, 16 Jul 2020 19:35:40 GMT location: - https://storagename.table.core.windows.net/Tables('uttablecc7c1c5e') server: @@ -69,27 +69,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:04 GMT + - Thu, 16 Jul 2020 19:35:43 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:04 GMT + - Thu, 16 Jul 2020 19:35:43 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttablecc7c1c5e response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablecc7c1c5e/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A03.4441469Z''\"","PartitionKey":"pkcc7c1c5e","RowKey":"rkcc7c1c5e","Timestamp":"2020-07-16T15:33:03.4441469Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablecc7c1c5e/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A41.7719252Z''\"","PartitionKey":"pkcc7c1c5e","RowKey":"rkcc7c1c5e","Timestamp":"2020-07-16T19:35:41.7719252Z","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, 16 Jul 2020 15:33:02 GMT + - Thu, 16 Jul 2020 19:35:41 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A03.4441469Z'" + - W/"datetime'2020-07-16T19%3A35%3A41.7719252Z'" location: - https://storagename.table.core.windows.net/uttablecc7c1c5e(PartitionKey='pkcc7c1c5e',RowKey='rkcc7c1c5e') server: @@ -121,11 +121,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:04 GMT + - Thu, 16 Jul 2020 19:35:43 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:04 GMT + - Thu, 16 Jul 2020 19:35:43 GMT x-ms-version: - '2019-07-07' method: PUT @@ -139,9 +139,9 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:02 GMT + - Thu, 16 Jul 2020 19:35:41 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A03.5304557Z'" + - W/"datetime'2020-07-16T19%3A35%3A41.8555909Z'" server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: @@ -163,27 +163,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:04 GMT + - Thu, 16 Jul 2020 19:35:43 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:04 GMT + - Thu, 16 Jul 2020 19:35:43 GMT x-ms-version: - '2019-07-07' 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''2020-07-16T15%3A33%3A03.5304557Z''\"","PartitionKey":"pkcc7c1c5e","RowKey":"rkcc7c1c5e","Timestamp":"2020-07-16T15:33:03.5304557Z","age":"abc","birthday@odata.type":"Edm.DateTime","birthday":"1991-10-04T00:00:00Z","sex":"female","sign":"aquarius"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablecc7c1c5e/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A41.8555909Z''\"","PartitionKey":"pkcc7c1c5e","RowKey":"rkcc7c1c5e","Timestamp":"2020-07-16T19:35:41.8555909Z","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, 16 Jul 2020 15:33:03 GMT + - Thu, 16 Jul 2020 19:35:41 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A03.5304557Z'" + - W/"datetime'2020-07-16T19%3A35%3A41.8555909Z'" server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -207,11 +207,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:05 GMT + - Thu, 16 Jul 2020 19:35:43 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:05 GMT + - Thu, 16 Jul 2020 19:35:43 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -225,7 +225,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:03 GMT + - Thu, 16 Jul 2020 19:35:41 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_or_replace_entity_with_non_existing_entity.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_or_replace_entity_with_non_existing_entity.yaml index 5d820db0ab83..7c915812f122 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_or_replace_entity_with_non_existing_entity.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_insert_or_replace_entity_with_non_existing_entity.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:05 GMT + - Thu, 16 Jul 2020 19:35:43 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:05 GMT + - Thu, 16 Jul 2020 19:35:43 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:03 GMT + - Thu, 16 Jul 2020 19:35:42 GMT location: - https://storagename.table.core.windows.net/Tables('uttable419d1e08') server: @@ -65,11 +65,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:05 GMT + - Thu, 16 Jul 2020 19:35:43 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:05 GMT + - Thu, 16 Jul 2020 19:35:43 GMT x-ms-version: - '2019-07-07' method: PUT @@ -83,9 +83,9 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:03 GMT + - Thu, 16 Jul 2020 19:35:42 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A04.1688894Z'" + - W/"datetime'2020-07-16T19%3A35%3A42.4750279Z'" server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: @@ -107,27 +107,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:05 GMT + - Thu, 16 Jul 2020 19:35:43 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:05 GMT + - Thu, 16 Jul 2020 19:35:43 GMT x-ms-version: - '2019-07-07' 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''2020-07-16T15%3A33%3A04.1688894Z''\"","PartitionKey":"pk419d1e08","RowKey":"rk419d1e08","Timestamp":"2020-07-16T15:33:04.1688894Z","age":"abc","birthday@odata.type":"Edm.DateTime","birthday":"1991-10-04T00:00:00Z","sex":"female","sign":"aquarius"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable419d1e08/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A42.4750279Z''\"","PartitionKey":"pk419d1e08","RowKey":"rk419d1e08","Timestamp":"2020-07-16T19:35:42.4750279Z","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, 16 Jul 2020 15:33:03 GMT + - Thu, 16 Jul 2020 19:35:42 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A04.1688894Z'" + - W/"datetime'2020-07-16T19%3A35%3A42.4750279Z'" server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -151,11 +151,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:05 GMT + - Thu, 16 Jul 2020 19:35:43 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:05 GMT + - Thu, 16 Jul 2020 19:35:43 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -169,7 +169,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:03 GMT + - Thu, 16 Jul 2020 19:35:42 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_merge_entity.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_merge_entity.yaml index ed04ff393aae..6e732ca3fb67 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_merge_entity.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_merge_entity.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:05 GMT + - Thu, 16 Jul 2020 19:35:43 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:05 GMT + - Thu, 16 Jul 2020 19:35:43 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:04 GMT + - Thu, 16 Jul 2020 19:35:42 GMT location: - https://storagename.table.core.windows.net/Tables('uttable3df0e7d') server: @@ -69,27 +69,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:06 GMT + - Thu, 16 Jul 2020 19:35:44 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:06 GMT + - Thu, 16 Jul 2020 19:35:44 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttable3df0e7d response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable3df0e7d/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A04.7649921Z''\"","PartitionKey":"pk3df0e7d","RowKey":"rk3df0e7d","Timestamp":"2020-07-16T15:33:04.7649921Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable3df0e7d/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A43.0718632Z''\"","PartitionKey":"pk3df0e7d","RowKey":"rk3df0e7d","Timestamp":"2020-07-16T19:35:43.0718632Z","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, 16 Jul 2020 15:33:04 GMT + - Thu, 16 Jul 2020 19:35:42 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A04.7649921Z'" + - W/"datetime'2020-07-16T19%3A35%3A43.0718632Z'" location: - https://storagename.table.core.windows.net/uttable3df0e7d(PartitionKey='pk3df0e7d',RowKey='rk3df0e7d') server: @@ -121,13 +121,13 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:06 GMT + - Thu, 16 Jul 2020 19:35:44 GMT If-Match: - '*' User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:06 GMT + - Thu, 16 Jul 2020 19:35:44 GMT x-ms-version: - '2019-07-07' method: PATCH @@ -141,9 +141,9 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:04 GMT + - Thu, 16 Jul 2020 19:35:42 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A04.8623621Z'" + - W/"datetime'2020-07-16T19%3A35%3A43.1515048Z'" server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: @@ -165,27 +165,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:06 GMT + - Thu, 16 Jul 2020 19:35:44 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:06 GMT + - Thu, 16 Jul 2020 19:35:44 GMT x-ms-version: - '2019-07-07' 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''2020-07-16T15%3A33%3A04.8623621Z''\"","PartitionKey":"pk3df0e7d","RowKey":"rk3df0e7d","Timestamp":"2020-07-16T15:33:04.8623621Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable3df0e7d/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A43.1515048Z''\"","PartitionKey":"pk3df0e7d","RowKey":"rk3df0e7d","Timestamp":"2020-07-16T19:35:43.1515048Z","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, 16 Jul 2020 15:33:04 GMT + - Thu, 16 Jul 2020 19:35:42 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A04.8623621Z'" + - W/"datetime'2020-07-16T19%3A35%3A43.1515048Z'" server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -209,11 +209,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:06 GMT + - Thu, 16 Jul 2020 19:35:44 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:06 GMT + - Thu, 16 Jul 2020 19:35:44 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -227,7 +227,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:04 GMT + - Thu, 16 Jul 2020 19:35:42 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_merge_entity_not_existing.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_merge_entity_not_existing.yaml index e3e747eb863d..e8f5851dda1e 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_merge_entity_not_existing.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_merge_entity_not_existing.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:06 GMT + - Thu, 16 Jul 2020 19:35:44 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:06 GMT + - Thu, 16 Jul 2020 19:35:44 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:04 GMT + - Thu, 16 Jul 2020 19:35:43 GMT location: - https://storagename.table.core.windows.net/Tables('uttablee64a13f7') server: @@ -65,13 +65,13 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:06 GMT + - Thu, 16 Jul 2020 19:35:45 GMT If-Match: - '*' User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:06 GMT + - Thu, 16 Jul 2020 19:35:45 GMT x-ms-version: - '2019-07-07' method: PATCH @@ -81,16 +81,16 @@ interactions: string: 'ResourceNotFoundThe specified resource does not exist. - RequestId:633a9010-e002-0076-1486-5b5add000000 + RequestId:75030f7d-0002-0087-59a8-5bc022000000 - Time:2020-07-16T15:33:05.4742500Z' + Time:2020-07-16T19:35:43.7621962Z' headers: cache-control: - no-cache content-type: - application/xml;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:04 GMT + - Thu, 16 Jul 2020 19:35:43 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -114,11 +114,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:06 GMT + - Thu, 16 Jul 2020 19:35:45 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:06 GMT + - Thu, 16 Jul 2020 19:35:45 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -132,7 +132,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:04 GMT + - Thu, 16 Jul 2020 19:35:43 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_merge_entity_with_if_doesnt_match.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_merge_entity_with_if_doesnt_match.yaml index be55d48b2ed3..a32de96c95b4 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_merge_entity_with_if_doesnt_match.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_merge_entity_with_if_doesnt_match.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:06 GMT + - Thu, 16 Jul 2020 19:35:45 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:06 GMT + - Thu, 16 Jul 2020 19:35:45 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:05 GMT + - Thu, 16 Jul 2020 19:35:43 GMT location: - https://storagename.table.core.windows.net/Tables('uttable9316171e') server: @@ -69,27 +69,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:07 GMT + - Thu, 16 Jul 2020 19:35:45 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:07 GMT + - Thu, 16 Jul 2020 19:35:45 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttable9316171e response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable9316171e/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A05.9825416Z''\"","PartitionKey":"pk9316171e","RowKey":"rk9316171e","Timestamp":"2020-07-16T15:33:05.9825416Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable9316171e/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A44.2963163Z''\"","PartitionKey":"pk9316171e","RowKey":"rk9316171e","Timestamp":"2020-07-16T19:35:44.2963163Z","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, 16 Jul 2020 15:33:05 GMT + - Thu, 16 Jul 2020 19:35:43 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A05.9825416Z'" + - W/"datetime'2020-07-16T19%3A35%3A44.2963163Z'" location: - https://storagename.table.core.windows.net/uttable9316171e(PartitionKey='pk9316171e',RowKey='rk9316171e') server: @@ -121,13 +121,13 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:07 GMT + - Thu, 16 Jul 2020 19:35:45 GMT If-Match: - W/"datetime'2012-06-15T22%3A51%3A44.9662825Z'" User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:07 GMT + - Thu, 16 Jul 2020 19:35:45 GMT x-ms-version: - '2019-07-07' method: PATCH @@ -137,16 +137,16 @@ interactions: string: 'UpdateConditionNotSatisfiedThe update condition specified in the request was not satisfied. - RequestId:667b3c66-4002-0052-3c86-5bc393000000 + RequestId:a818f884-7002-00a1-28a8-5b5b96000000 - Time:2020-07-16T15:33:06.0726054Z' + Time:2020-07-16T19:35:44.3803722Z' headers: cache-control: - no-cache content-type: - application/xml;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:05 GMT + - Thu, 16 Jul 2020 19:35:43 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -170,11 +170,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:07 GMT + - Thu, 16 Jul 2020 19:35:45 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:07 GMT + - Thu, 16 Jul 2020 19:35:45 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -188,7 +188,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:05 GMT + - Thu, 16 Jul 2020 19:35:43 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_merge_entity_with_if_matches.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_merge_entity_with_if_matches.yaml index 1eb173a1bff1..c3cba9c7213c 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_merge_entity_with_if_matches.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_merge_entity_with_if_matches.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:07 GMT + - Thu, 16 Jul 2020 19:35:45 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:07 GMT + - Thu, 16 Jul 2020 19:35:45 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:06 GMT + - Thu, 16 Jul 2020 19:35:44 GMT location: - https://storagename.table.core.windows.net/Tables('uttable236c150a') server: @@ -69,27 +69,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:07 GMT + - Thu, 16 Jul 2020 19:35:46 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:07 GMT + - Thu, 16 Jul 2020 19:35:46 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttable236c150a response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable236c150a/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A06.6019432Z''\"","PartitionKey":"pk236c150a","RowKey":"rk236c150a","Timestamp":"2020-07-16T15:33:06.6019432Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable236c150a/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A44.8841623Z''\"","PartitionKey":"pk236c150a","RowKey":"rk236c150a","Timestamp":"2020-07-16T19:35:44.8841623Z","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, 16 Jul 2020 15:33:06 GMT + - Thu, 16 Jul 2020 19:35:44 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A06.6019432Z'" + - W/"datetime'2020-07-16T19%3A35%3A44.8841623Z'" location: - https://storagename.table.core.windows.net/uttable236c150a(PartitionKey='pk236c150a',RowKey='rk236c150a') server: @@ -121,13 +121,13 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:07 GMT + - Thu, 16 Jul 2020 19:35:46 GMT If-Match: - - W/"datetime'2020-07-16T15%3A33%3A06.6019432Z'" + - W/"datetime'2020-07-16T19%3A35%3A44.8841623Z'" User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:07 GMT + - Thu, 16 Jul 2020 19:35:46 GMT x-ms-version: - '2019-07-07' method: PATCH @@ -141,9 +141,9 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:06 GMT + - Thu, 16 Jul 2020 19:35:44 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A06.6856016Z'" + - W/"datetime'2020-07-16T19%3A35%3A44.9687865Z'" server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: @@ -165,27 +165,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:08 GMT + - Thu, 16 Jul 2020 19:35:46 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:08 GMT + - Thu, 16 Jul 2020 19:35:46 GMT x-ms-version: - '2019-07-07' 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''2020-07-16T15%3A33%3A06.6856016Z''\"","PartitionKey":"pk236c150a","RowKey":"rk236c150a","Timestamp":"2020-07-16T15:33:06.6856016Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable236c150a/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A44.9687865Z''\"","PartitionKey":"pk236c150a","RowKey":"rk236c150a","Timestamp":"2020-07-16T19:35:44.9687865Z","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, 16 Jul 2020 15:33:06 GMT + - Thu, 16 Jul 2020 19:35:44 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A06.6856016Z'" + - W/"datetime'2020-07-16T19%3A35%3A44.9687865Z'" server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -209,11 +209,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:08 GMT + - Thu, 16 Jul 2020 19:35:46 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:08 GMT + - Thu, 16 Jul 2020 19:35:46 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -227,7 +227,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:06 GMT + - Thu, 16 Jul 2020 19:35:44 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_none_property_value.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_none_property_value.yaml index da785d1835b9..a8f8996a7425 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_none_property_value.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_none_property_value.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:08 GMT + - Thu, 16 Jul 2020 19:35:46 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:08 GMT + - Thu, 16 Jul 2020 19:35:46 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:06 GMT + - Thu, 16 Jul 2020 19:35:44 GMT location: - https://storagename.table.core.windows.net/Tables('uttable76561181') server: @@ -63,27 +63,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:08 GMT + - Thu, 16 Jul 2020 19:35:46 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:08 GMT + - Thu, 16 Jul 2020 19:35:46 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttable76561181 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable76561181/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A07.2866108Z''\"","PartitionKey":"pk76561181","RowKey":"rk76561181","Timestamp":"2020-07-16T15:33:07.2866108Z"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable76561181/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A45.5553833Z''\"","PartitionKey":"pk76561181","RowKey":"rk76561181","Timestamp":"2020-07-16T19:35:45.5553833Z"}' headers: cache-control: - no-cache content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:06 GMT + - Thu, 16 Jul 2020 19:35:44 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A07.2866108Z'" + - W/"datetime'2020-07-16T19%3A35%3A45.5553833Z'" location: - https://storagename.table.core.windows.net/uttable76561181(PartitionKey='pk76561181',RowKey='rk76561181') server: @@ -109,27 +109,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:08 GMT + - Thu, 16 Jul 2020 19:35:46 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:08 GMT + - Thu, 16 Jul 2020 19:35:46 GMT x-ms-version: - '2019-07-07' 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''2020-07-16T15%3A33%3A07.2866108Z''\"","PartitionKey":"pk76561181","RowKey":"rk76561181","Timestamp":"2020-07-16T15:33:07.2866108Z"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable76561181/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A45.5553833Z''\"","PartitionKey":"pk76561181","RowKey":"rk76561181","Timestamp":"2020-07-16T19:35:45.5553833Z"}' headers: cache-control: - no-cache content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:06 GMT + - Thu, 16 Jul 2020 19:35:45 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A07.2866108Z'" + - W/"datetime'2020-07-16T19%3A35%3A45.5553833Z'" server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -153,11 +153,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:08 GMT + - Thu, 16 Jul 2020 19:35:46 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:08 GMT + - Thu, 16 Jul 2020 19:35:46 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -171,7 +171,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:06 GMT + - Thu, 16 Jul 2020 19:35:45 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_operations_on_entity_with_partition_key_having_single_quote.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_operations_on_entity_with_partition_key_having_single_quote.yaml index dfc23d233d6c..47cbaec3d89a 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_operations_on_entity_with_partition_key_having_single_quote.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_operations_on_entity_with_partition_key_having_single_quote.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:08 GMT + - Thu, 16 Jul 2020 19:35:47 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:08 GMT + - Thu, 16 Jul 2020 19:35:47 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:07 GMT + - Thu, 16 Jul 2020 19:35:45 GMT location: - https://storagename.table.core.windows.net/Tables('uttable88682233') server: @@ -69,27 +69,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:09 GMT + - Thu, 16 Jul 2020 19:35:47 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:09 GMT + - Thu, 16 Jul 2020 19:35:47 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttable88682233 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable88682233/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A07.9268894Z''\"","PartitionKey":"a''''''''b","RowKey":"a''''''''b","Timestamp":"2020-07-16T15:33:07.9268894Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable88682233/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A46.1941127Z''\"","PartitionKey":"a''''''''b","RowKey":"a''''''''b","Timestamp":"2020-07-16T19:35:46.1941127Z","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, 16 Jul 2020 15:33:07 GMT + - Thu, 16 Jul 2020 19:35:45 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A07.9268894Z'" + - W/"datetime'2020-07-16T19%3A35%3A46.1941127Z'" location: - https://storagename.table.core.windows.net/uttable88682233(PartitionKey='a''''''''b',RowKey='a''''''''b') server: @@ -121,11 +121,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:09 GMT + - Thu, 16 Jul 2020 19:35:47 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:09 GMT + - Thu, 16 Jul 2020 19:35:47 GMT x-ms-version: - '2019-07-07' method: PATCH @@ -139,9 +139,9 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:07 GMT + - Thu, 16 Jul 2020 19:35:45 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A08.0145057Z'" + - W/"datetime'2020-07-16T19%3A35%3A46.2777097Z'" server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: @@ -163,27 +163,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:09 GMT + - Thu, 16 Jul 2020 19:35:47 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:09 GMT + - Thu, 16 Jul 2020 19:35:47 GMT x-ms-version: - '2019-07-07' method: GET uri: https://storagename.table.core.windows.net/uttable88682233(PartitionKey='a%27%27%27%27b',RowKey='a%27%27%27%27b') response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable88682233/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A08.0145057Z''\"","PartitionKey":"a''''b","RowKey":"a''''b","Timestamp":"2020-07-16T15:33:08.0145057Z","age":"abc","birthday@odata.type":"Edm.DateTime","birthday":"1991-10-04T00:00:00Z","sex":"female","sign":"aquarius"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable88682233/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A46.2777097Z''\"","PartitionKey":"a''''b","RowKey":"a''''b","Timestamp":"2020-07-16T19:35:46.2777097Z","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, 16 Jul 2020 15:33:07 GMT + - Thu, 16 Jul 2020 19:35:45 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A08.0145057Z'" + - W/"datetime'2020-07-16T19%3A35%3A46.2777097Z'" server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -213,13 +213,13 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:09 GMT + - Thu, 16 Jul 2020 19:35:47 GMT If-Match: - '*' User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:09 GMT + - Thu, 16 Jul 2020 19:35:47 GMT x-ms-version: - '2019-07-07' method: PATCH @@ -233,9 +233,9 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:07 GMT + - Thu, 16 Jul 2020 19:35:45 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A08.1776164Z'" + - W/"datetime'2020-07-16T19%3A35%3A46.440824Z'" server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: @@ -257,27 +257,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:09 GMT + - Thu, 16 Jul 2020 19:35:47 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:09 GMT + - Thu, 16 Jul 2020 19:35:47 GMT x-ms-version: - '2019-07-07' method: GET uri: https://storagename.table.core.windows.net/uttable88682233(PartitionKey='a%27%27%27%27b',RowKey='a%27%27%27%27b') response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable88682233/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A08.1776164Z''\"","PartitionKey":"a''''b","RowKey":"a''''b","Timestamp":"2020-07-16T15:33:08.1776164Z","age":"abc","birthday@odata.type":"Edm.DateTime","birthday":"1991-10-04T00:00:00Z","newField":"newFieldValue","sex":"female","sign":"aquarius"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable88682233/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A46.440824Z''\"","PartitionKey":"a''''b","RowKey":"a''''b","Timestamp":"2020-07-16T19:35:46.440824Z","age":"abc","birthday@odata.type":"Edm.DateTime","birthday":"1991-10-04T00:00:00Z","newField":"newFieldValue","sex":"female","sign":"aquarius"}' headers: cache-control: - no-cache content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:07 GMT + - Thu, 16 Jul 2020 19:35:45 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A08.1776164Z'" + - W/"datetime'2020-07-16T19%3A35%3A46.440824Z'" server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -303,13 +303,13 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:09 GMT + - Thu, 16 Jul 2020 19:35:47 GMT If-Match: - '*' User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:09 GMT + - Thu, 16 Jul 2020 19:35:47 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -323,7 +323,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:08 GMT + - Thu, 16 Jul 2020 19:35:45 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: @@ -345,11 +345,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:09 GMT + - Thu, 16 Jul 2020 19:35:47 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:09 GMT + - Thu, 16 Jul 2020 19:35:47 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -363,7 +363,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:08 GMT + - Thu, 16 Jul 2020 19:35:45 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_query_entities.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_query_entities.yaml index e7e2a98bf912..2a3a42a7c37c 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_query_entities.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_query_entities.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:09 GMT + - Thu, 16 Jul 2020 19:35:48 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:09 GMT + - Thu, 16 Jul 2020 19:35:48 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:08 GMT + - Thu, 16 Jul 2020 19:35:47 GMT location: - https://storagename.table.core.windows.net/Tables('uttable23930f6b') server: @@ -63,11 +63,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:10 GMT + - Thu, 16 Jul 2020 19:35:48 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:10 GMT + - Thu, 16 Jul 2020 19:35:48 GMT x-ms-version: - '2019-07-07' method: POST @@ -81,7 +81,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:08 GMT + - Thu, 16 Jul 2020 19:35:47 GMT location: - https://storagename.table.core.windows.net/Tables('querytable23930f6b') server: @@ -117,27 +117,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:10 GMT + - Thu, 16 Jul 2020 19:35:48 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:10 GMT + - Thu, 16 Jul 2020 19:35:48 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/querytable23930f6b response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable23930f6b/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A09.1141554Z''\"","PartitionKey":"pk23930f6b","RowKey":"rk23930f6b1","Timestamp":"2020-07-16T15:33:09.1141554Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable23930f6b/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A47.2316558Z''\"","PartitionKey":"pk23930f6b","RowKey":"rk23930f6b1","Timestamp":"2020-07-16T19:35:47.2316558Z","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, 16 Jul 2020 15:33:08 GMT + - Thu, 16 Jul 2020 19:35:47 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A09.1141554Z'" + - W/"datetime'2020-07-16T19%3A35%3A47.2316558Z'" location: - https://storagename.table.core.windows.net/querytable23930f6b(PartitionKey='pk23930f6b',RowKey='rk23930f6b1') server: @@ -173,27 +173,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:10 GMT + - Thu, 16 Jul 2020 19:35:48 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:10 GMT + - Thu, 16 Jul 2020 19:35:48 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/querytable23930f6b response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable23930f6b/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A09.2022175Z''\"","PartitionKey":"pk23930f6b","RowKey":"rk23930f6b12","Timestamp":"2020-07-16T15:33:09.2022175Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable23930f6b/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A47.3187147Z''\"","PartitionKey":"pk23930f6b","RowKey":"rk23930f6b12","Timestamp":"2020-07-16T19:35:47.3187147Z","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, 16 Jul 2020 15:33:08 GMT + - Thu, 16 Jul 2020 19:35:47 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A09.2022175Z'" + - W/"datetime'2020-07-16T19%3A35%3A47.3187147Z'" location: - https://storagename.table.core.windows.net/querytable23930f6b(PartitionKey='pk23930f6b',RowKey='rk23930f6b12') server: @@ -219,25 +219,25 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:10 GMT + - Thu, 16 Jul 2020 19:35:48 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:10 GMT + - Thu, 16 Jul 2020 19:35:48 GMT x-ms-version: - '2019-07-07' 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''2020-07-16T15%3A33%3A09.1141554Z''\"","PartitionKey":"pk23930f6b","RowKey":"rk23930f6b1","Timestamp":"2020-07-16T15:33:09.1141554Z","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''2020-07-16T15%3A33%3A09.2022175Z''\"","PartitionKey":"pk23930f6b","RowKey":"rk23930f6b12","Timestamp":"2020-07-16T15:33:09.2022175Z","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"}]}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable23930f6b","value":[{"odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A47.2316558Z''\"","PartitionKey":"pk23930f6b","RowKey":"rk23930f6b1","Timestamp":"2020-07-16T19:35:47.2316558Z","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''2020-07-16T19%3A35%3A47.3187147Z''\"","PartitionKey":"pk23930f6b","RowKey":"rk23930f6b12","Timestamp":"2020-07-16T19:35:47.3187147Z","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, 16 Jul 2020 15:33:08 GMT + - Thu, 16 Jul 2020 19:35:47 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -261,11 +261,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:10 GMT + - Thu, 16 Jul 2020 19:35:48 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:10 GMT + - Thu, 16 Jul 2020 19:35:48 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -279,7 +279,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:08 GMT + - Thu, 16 Jul 2020 19:35:47 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: @@ -301,11 +301,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:10 GMT + - Thu, 16 Jul 2020 19:35:48 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:10 GMT + - Thu, 16 Jul 2020 19:35:48 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -319,7 +319,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:09 GMT + - Thu, 16 Jul 2020 19:35:47 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_query_entities_full_metadata.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_query_entities_full_metadata.yaml index 6cac0b71d157..731322ff544d 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_query_entities_full_metadata.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_query_entities_full_metadata.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:10 GMT + - Thu, 16 Jul 2020 19:35:48 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:10 GMT + - Thu, 16 Jul 2020 19:35:48 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:09 GMT + - Thu, 16 Jul 2020 19:35:47 GMT location: - https://storagename.table.core.windows.net/Tables('uttable264f151d') server: @@ -63,11 +63,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:11 GMT + - Thu, 16 Jul 2020 19:35:49 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:11 GMT + - Thu, 16 Jul 2020 19:35:49 GMT x-ms-version: - '2019-07-07' method: POST @@ -81,7 +81,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:09 GMT + - Thu, 16 Jul 2020 19:35:47 GMT location: - https://storagename.table.core.windows.net/Tables('querytable264f151d') server: @@ -117,27 +117,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:11 GMT + - Thu, 16 Jul 2020 19:35:49 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:11 GMT + - Thu, 16 Jul 2020 19:35:49 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/querytable264f151d response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable264f151d/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A10.0748263Z''\"","PartitionKey":"pk264f151d","RowKey":"rk264f151d1","Timestamp":"2020-07-16T15:33:10.0748263Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable264f151d/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A48.0935149Z''\"","PartitionKey":"pk264f151d","RowKey":"rk264f151d1","Timestamp":"2020-07-16T19:35:48.0935149Z","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, 16 Jul 2020 15:33:09 GMT + - Thu, 16 Jul 2020 19:35:47 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A10.0748263Z'" + - W/"datetime'2020-07-16T19%3A35%3A48.0935149Z'" location: - https://storagename.table.core.windows.net/querytable264f151d(PartitionKey='pk264f151d',RowKey='rk264f151d1') server: @@ -173,27 +173,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:11 GMT + - Thu, 16 Jul 2020 19:35:49 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:11 GMT + - Thu, 16 Jul 2020 19:35:49 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/querytable264f151d response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable264f151d/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A10.1558837Z''\"","PartitionKey":"pk264f151d","RowKey":"rk264f151d12","Timestamp":"2020-07-16T15:33:10.1558837Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable264f151d/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A48.1755732Z''\"","PartitionKey":"pk264f151d","RowKey":"rk264f151d12","Timestamp":"2020-07-16T19:35:48.1755732Z","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, 16 Jul 2020 15:33:09 GMT + - Thu, 16 Jul 2020 19:35:47 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A10.1558837Z'" + - W/"datetime'2020-07-16T19%3A35%3A48.1755732Z'" location: - https://storagename.table.core.windows.net/querytable264f151d(PartitionKey='pk264f151d',RowKey='rk264f151d12') server: @@ -217,27 +217,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:11 GMT + - Thu, 16 Jul 2020 19:35:49 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) accept: - application/json;odata=fullmetadata x-ms-date: - - Thu, 16 Jul 2020 15:33:11 GMT + - Thu, 16 Jul 2020 19:35:49 GMT x-ms-version: - '2019-07-07' 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''2020-07-16T15%3A33%3A10.0748263Z''\"","odata.editLink":"querytable264f151d(PartitionKey=''pk264f151d'',RowKey=''rk264f151d1'')","PartitionKey":"pk264f151d","RowKey":"rk264f151d1","Timestamp@odata.type":"Edm.DateTime","Timestamp":"2020-07-16T15:33:10.0748263Z","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''2020-07-16T15%3A33%3A10.1558837Z''\"","odata.editLink":"querytable264f151d(PartitionKey=''pk264f151d'',RowKey=''rk264f151d12'')","PartitionKey":"pk264f151d","RowKey":"rk264f151d12","Timestamp@odata.type":"Edm.DateTime","Timestamp":"2020-07-16T15:33:10.1558837Z","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"}]}' + 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''2020-07-16T19%3A35%3A48.0935149Z''\"","odata.editLink":"querytable264f151d(PartitionKey=''pk264f151d'',RowKey=''rk264f151d1'')","PartitionKey":"pk264f151d","RowKey":"rk264f151d1","Timestamp@odata.type":"Edm.DateTime","Timestamp":"2020-07-16T19:35:48.0935149Z","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''2020-07-16T19%3A35%3A48.1755732Z''\"","odata.editLink":"querytable264f151d(PartitionKey=''pk264f151d'',RowKey=''rk264f151d12'')","PartitionKey":"pk264f151d","RowKey":"rk264f151d12","Timestamp@odata.type":"Edm.DateTime","Timestamp":"2020-07-16T19:35:48.1755732Z","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, 16 Jul 2020 15:33:09 GMT + - Thu, 16 Jul 2020 19:35:47 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -261,11 +261,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:11 GMT + - Thu, 16 Jul 2020 19:35:49 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:11 GMT + - Thu, 16 Jul 2020 19:35:49 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -279,7 +279,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:09 GMT + - Thu, 16 Jul 2020 19:35:47 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: @@ -301,11 +301,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:11 GMT + - Thu, 16 Jul 2020 19:35:49 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:11 GMT + - Thu, 16 Jul 2020 19:35:49 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -319,7 +319,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:09 GMT + - Thu, 16 Jul 2020 19:35:47 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_query_entities_no_metadata.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_query_entities_no_metadata.yaml index 7137e5d6d459..16900fb4b0aa 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_query_entities_no_metadata.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_query_entities_no_metadata.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:11 GMT + - Thu, 16 Jul 2020 19:35:49 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:11 GMT + - Thu, 16 Jul 2020 19:35:49 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:10 GMT + - Thu, 16 Jul 2020 19:35:48 GMT location: - https://storagename.table.core.windows.net/Tables('uttablefc361447') server: @@ -63,11 +63,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:12 GMT + - Thu, 16 Jul 2020 19:35:50 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:12 GMT + - Thu, 16 Jul 2020 19:35:50 GMT x-ms-version: - '2019-07-07' method: POST @@ -81,7 +81,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:10 GMT + - Thu, 16 Jul 2020 19:35:48 GMT location: - https://storagename.table.core.windows.net/Tables('querytablefc361447') server: @@ -117,27 +117,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:12 GMT + - Thu, 16 Jul 2020 19:35:50 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:12 GMT + - Thu, 16 Jul 2020 19:35:50 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/querytablefc361447 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytablefc361447/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A10.9703112Z''\"","PartitionKey":"pkfc361447","RowKey":"rkfc3614471","Timestamp":"2020-07-16T15:33:10.9703112Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytablefc361447/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A48.9259667Z''\"","PartitionKey":"pkfc361447","RowKey":"rkfc3614471","Timestamp":"2020-07-16T19:35:48.9259667Z","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, 16 Jul 2020 15:33:10 GMT + - Thu, 16 Jul 2020 19:35:48 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A10.9703112Z'" + - W/"datetime'2020-07-16T19%3A35%3A48.9259667Z'" location: - https://storagename.table.core.windows.net/querytablefc361447(PartitionKey='pkfc361447',RowKey='rkfc3614471') server: @@ -173,27 +173,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:12 GMT + - Thu, 16 Jul 2020 19:35:50 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:12 GMT + - Thu, 16 Jul 2020 19:35:50 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/querytablefc361447 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytablefc361447/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A11.0513665Z''\"","PartitionKey":"pkfc361447","RowKey":"rkfc36144712","Timestamp":"2020-07-16T15:33:11.0513665Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytablefc361447/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A49.0080237Z''\"","PartitionKey":"pkfc361447","RowKey":"rkfc36144712","Timestamp":"2020-07-16T19:35:49.0080237Z","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, 16 Jul 2020 15:33:10 GMT + - Thu, 16 Jul 2020 19:35:48 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A11.0513665Z'" + - W/"datetime'2020-07-16T19%3A35%3A49.0080237Z'" location: - https://storagename.table.core.windows.net/querytablefc361447(PartitionKey='pkfc361447',RowKey='rkfc36144712') server: @@ -217,27 +217,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:12 GMT + - Thu, 16 Jul 2020 19:35:50 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) accept: - application/json;odata=nometadata x-ms-date: - - Thu, 16 Jul 2020 15:33:12 GMT + - Thu, 16 Jul 2020 19:35:50 GMT x-ms-version: - '2019-07-07' method: GET uri: https://storagename.table.core.windows.net/querytablefc361447() response: body: - string: '{"value":[{"PartitionKey":"pkfc361447","RowKey":"rkfc3614471","Timestamp":"2020-07-16T15:33:10.9703112Z","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":"2020-07-16T15:33:11.0513665Z","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"}]}' + string: '{"value":[{"PartitionKey":"pkfc361447","RowKey":"rkfc3614471","Timestamp":"2020-07-16T19:35:48.9259667Z","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":"2020-07-16T19:35:49.0080237Z","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, 16 Jul 2020 15:33:10 GMT + - Thu, 16 Jul 2020 19:35:48 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -261,11 +261,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:12 GMT + - Thu, 16 Jul 2020 19:35:50 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:12 GMT + - Thu, 16 Jul 2020 19:35:50 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -279,7 +279,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:10 GMT + - Thu, 16 Jul 2020 19:35:48 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: @@ -301,11 +301,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:12 GMT + - Thu, 16 Jul 2020 19:35:50 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:12 GMT + - Thu, 16 Jul 2020 19:35:50 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -319,7 +319,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:10 GMT + - Thu, 16 Jul 2020 19:35:48 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_query_entities_with_filter.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_query_entities_with_filter.yaml index c25db120da35..620358351d63 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_query_entities_with_filter.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_query_entities_with_filter.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:12 GMT + - Thu, 16 Jul 2020 19:35:50 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:12 GMT + - Thu, 16 Jul 2020 19:35:50 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:10 GMT + - Thu, 16 Jul 2020 19:35:49 GMT location: - https://storagename.table.core.windows.net/Tables('uttablefce8146b') server: @@ -69,27 +69,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:13 GMT + - Thu, 16 Jul 2020 19:35:50 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:13 GMT + - Thu, 16 Jul 2020 19:35:50 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttablefce8146b response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablefce8146b/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A11.7677581Z''\"","PartitionKey":"pkfce8146b","RowKey":"rkfce8146b","Timestamp":"2020-07-16T15:33:11.7677581Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablefce8146b/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A49.6973414Z''\"","PartitionKey":"pkfce8146b","RowKey":"rkfce8146b","Timestamp":"2020-07-16T19:35:49.6973414Z","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, 16 Jul 2020 15:33:10 GMT + - Thu, 16 Jul 2020 19:35:49 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A11.7677581Z'" + - W/"datetime'2020-07-16T19%3A35%3A49.6973414Z'" location: - https://storagename.table.core.windows.net/uttablefce8146b(PartitionKey='pkfce8146b',RowKey='rkfce8146b') server: @@ -115,25 +115,25 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:13 GMT + - Thu, 16 Jul 2020 19:35:51 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:13 GMT + - Thu, 16 Jul 2020 19:35:51 GMT x-ms-version: - '2019-07-07' method: GET uri: https://storagename.table.core.windows.net/uttablefce8146b()?$filter=PartitionKey%20eq%20%27pkfce8146b%27 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablefce8146b","value":[{"odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A11.7677581Z''\"","PartitionKey":"pkfce8146b","RowKey":"rkfce8146b","Timestamp":"2020-07-16T15:33:11.7677581Z","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"}]}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablefce8146b","value":[{"odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A49.6973414Z''\"","PartitionKey":"pkfce8146b","RowKey":"rkfce8146b","Timestamp":"2020-07-16T19:35:49.6973414Z","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, 16 Jul 2020 15:33:11 GMT + - Thu, 16 Jul 2020 19:35:49 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -157,11 +157,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:13 GMT + - Thu, 16 Jul 2020 19:35:51 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:13 GMT + - Thu, 16 Jul 2020 19:35:51 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -175,7 +175,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:11 GMT + - Thu, 16 Jul 2020 19:35:49 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_query_entities_with_select.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_query_entities_with_select.yaml index a4aa7e20c0f5..61684686bdcf 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_query_entities_with_select.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_query_entities_with_select.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:13 GMT + - Thu, 16 Jul 2020 19:35:51 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:13 GMT + - Thu, 16 Jul 2020 19:35:51 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:11 GMT + - Thu, 16 Jul 2020 19:35:49 GMT location: - https://storagename.table.core.windows.net/Tables('uttablefcf31465') server: @@ -63,11 +63,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:13 GMT + - Thu, 16 Jul 2020 19:35:51 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:13 GMT + - Thu, 16 Jul 2020 19:35:51 GMT x-ms-version: - '2019-07-07' method: POST @@ -81,7 +81,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:11 GMT + - Thu, 16 Jul 2020 19:35:49 GMT location: - https://storagename.table.core.windows.net/Tables('querytablefcf31465') server: @@ -117,27 +117,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:13 GMT + - Thu, 16 Jul 2020 19:35:51 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:13 GMT + - Thu, 16 Jul 2020 19:35:51 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/querytablefcf31465 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytablefcf31465/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A12.521878Z''\"","PartitionKey":"pkfcf31465","RowKey":"rkfcf314651","Timestamp":"2020-07-16T15:33:12.521878Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytablefcf31465/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A50.3768881Z''\"","PartitionKey":"pkfcf31465","RowKey":"rkfcf314651","Timestamp":"2020-07-16T19:35:50.3768881Z","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, 16 Jul 2020 15:33:11 GMT + - Thu, 16 Jul 2020 19:35:49 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A12.521878Z'" + - W/"datetime'2020-07-16T19%3A35%3A50.3768881Z'" location: - https://storagename.table.core.windows.net/querytablefcf31465(PartitionKey='pkfcf31465',RowKey='rkfcf314651') server: @@ -173,27 +173,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:13 GMT + - Thu, 16 Jul 2020 19:35:51 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:13 GMT + - Thu, 16 Jul 2020 19:35:51 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/querytablefcf31465 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytablefcf31465/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A12.6219496Z''\"","PartitionKey":"pkfcf31465","RowKey":"rkfcf3146512","Timestamp":"2020-07-16T15:33:12.6219496Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytablefcf31465/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A50.4599468Z''\"","PartitionKey":"pkfcf31465","RowKey":"rkfcf3146512","Timestamp":"2020-07-16T19:35:50.4599468Z","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, 16 Jul 2020 15:33:11 GMT + - Thu, 16 Jul 2020 19:35:49 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A12.6219496Z'" + - W/"datetime'2020-07-16T19%3A35%3A50.4599468Z'" location: - https://storagename.table.core.windows.net/querytablefcf31465(PartitionKey='pkfcf31465',RowKey='rkfcf3146512') server: @@ -219,25 +219,25 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:14 GMT + - Thu, 16 Jul 2020 19:35:51 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:14 GMT + - Thu, 16 Jul 2020 19:35:51 GMT x-ms-version: - '2019-07-07' method: GET uri: https://storagename.table.core.windows.net/querytablefcf31465()?$select=age%2C%20sex response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytablefcf31465&$select=age,%20sex","value":[{"odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A12.521878Z''\"","age@odata.type":"Edm.Int64","age":"39","sex":"male"},{"odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A12.6219496Z''\"","age@odata.type":"Edm.Int64","age":"39","sex":"male"}]}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytablefcf31465&$select=age,%20sex","value":[{"odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A50.3768881Z''\"","age@odata.type":"Edm.Int64","age":"39","sex":"male"},{"odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A50.4599468Z''\"","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, 16 Jul 2020 15:33:12 GMT + - Thu, 16 Jul 2020 19:35:50 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -261,11 +261,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:14 GMT + - Thu, 16 Jul 2020 19:35:51 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:14 GMT + - Thu, 16 Jul 2020 19:35:51 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -279,7 +279,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:12 GMT + - Thu, 16 Jul 2020 19:35:50 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: @@ -301,11 +301,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:14 GMT + - Thu, 16 Jul 2020 19:35:51 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:14 GMT + - Thu, 16 Jul 2020 19:35:51 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -319,7 +319,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:12 GMT + - Thu, 16 Jul 2020 19:35:50 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_query_entities_with_top.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_query_entities_with_top.yaml index 885bca57bc15..3cb42632fa88 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_query_entities_with_top.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_query_entities_with_top.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:14 GMT + - Thu, 16 Jul 2020 19:35:52 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:14 GMT + - Thu, 16 Jul 2020 19:35:52 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:12 GMT + - Thu, 16 Jul 2020 19:35:50 GMT location: - https://storagename.table.core.windows.net/Tables('uttablec12a1338') server: @@ -63,11 +63,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:14 GMT + - Thu, 16 Jul 2020 19:35:52 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:14 GMT + - Thu, 16 Jul 2020 19:35:52 GMT x-ms-version: - '2019-07-07' method: POST @@ -81,7 +81,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:13 GMT + - Thu, 16 Jul 2020 19:35:50 GMT location: - https://storagename.table.core.windows.net/Tables('querytablec12a1338') server: @@ -117,27 +117,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:14 GMT + - Thu, 16 Jul 2020 19:35:52 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:14 GMT + - Thu, 16 Jul 2020 19:35:52 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/querytablec12a1338 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytablec12a1338/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A13.4804344Z''\"","PartitionKey":"pkc12a1338","RowKey":"rkc12a13381","Timestamp":"2020-07-16T15:33:13.4804344Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytablec12a1338/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A51.1992321Z''\"","PartitionKey":"pkc12a1338","RowKey":"rkc12a13381","Timestamp":"2020-07-16T19:35:51.1992321Z","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, 16 Jul 2020 15:33:13 GMT + - Thu, 16 Jul 2020 19:35:50 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A13.4804344Z'" + - W/"datetime'2020-07-16T19%3A35%3A51.1992321Z'" location: - https://storagename.table.core.windows.net/querytablec12a1338(PartitionKey='pkc12a1338',RowKey='rkc12a13381') server: @@ -173,27 +173,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:14 GMT + - Thu, 16 Jul 2020 19:35:52 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:14 GMT + - Thu, 16 Jul 2020 19:35:52 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/querytablec12a1338 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytablec12a1338/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A13.5995196Z''\"","PartitionKey":"pkc12a1338","RowKey":"rkc12a133812","Timestamp":"2020-07-16T15:33:13.5995196Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytablec12a1338/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A51.2752862Z''\"","PartitionKey":"pkc12a1338","RowKey":"rkc12a133812","Timestamp":"2020-07-16T19:35:51.2752862Z","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, 16 Jul 2020 15:33:13 GMT + - Thu, 16 Jul 2020 19:35:50 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A13.5995196Z'" + - W/"datetime'2020-07-16T19%3A35%3A51.2752862Z'" location: - https://storagename.table.core.windows.net/querytablec12a1338(PartitionKey='pkc12a1338',RowKey='rkc12a133812') server: @@ -229,27 +229,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:14 GMT + - Thu, 16 Jul 2020 19:35:52 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:14 GMT + - Thu, 16 Jul 2020 19:35:52 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/querytablec12a1338 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytablec12a1338/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A13.6815761Z''\"","PartitionKey":"pkc12a1338","RowKey":"rkc12a1338123","Timestamp":"2020-07-16T15:33:13.6815761Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytablec12a1338/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A51.3543427Z''\"","PartitionKey":"pkc12a1338","RowKey":"rkc12a1338123","Timestamp":"2020-07-16T19:35:51.3543427Z","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, 16 Jul 2020 15:33:13 GMT + - Thu, 16 Jul 2020 19:35:50 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A13.6815761Z'" + - W/"datetime'2020-07-16T19%3A35%3A51.3543427Z'" location: - https://storagename.table.core.windows.net/querytablec12a1338(PartitionKey='pkc12a1338',RowKey='rkc12a1338123') server: @@ -275,25 +275,25 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:15 GMT + - Thu, 16 Jul 2020 19:35:52 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:15 GMT + - Thu, 16 Jul 2020 19:35:52 GMT x-ms-version: - '2019-07-07' method: GET uri: https://storagename.table.core.windows.net/querytablec12a1338()?$top=2 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytablec12a1338","value":[{"odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A13.4804344Z''\"","PartitionKey":"pkc12a1338","RowKey":"rkc12a13381","Timestamp":"2020-07-16T15:33:13.4804344Z","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''2020-07-16T15%3A33%3A13.5995196Z''\"","PartitionKey":"pkc12a1338","RowKey":"rkc12a133812","Timestamp":"2020-07-16T15:33:13.5995196Z","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"}]}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytablec12a1338","value":[{"odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A51.1992321Z''\"","PartitionKey":"pkc12a1338","RowKey":"rkc12a13381","Timestamp":"2020-07-16T19:35:51.1992321Z","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''2020-07-16T19%3A35%3A51.2752862Z''\"","PartitionKey":"pkc12a1338","RowKey":"rkc12a133812","Timestamp":"2020-07-16T19:35:51.2752862Z","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, 16 Jul 2020 15:33:13 GMT + - Thu, 16 Jul 2020 19:35:50 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -321,11 +321,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:15 GMT + - Thu, 16 Jul 2020 19:35:52 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:15 GMT + - Thu, 16 Jul 2020 19:35:52 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -339,7 +339,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:13 GMT + - Thu, 16 Jul 2020 19:35:50 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: @@ -361,11 +361,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:15 GMT + - Thu, 16 Jul 2020 19:35:52 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:15 GMT + - Thu, 16 Jul 2020 19:35:52 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -379,7 +379,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:13 GMT + - Thu, 16 Jul 2020 19:35:50 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_query_entities_with_top_and_next.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_query_entities_with_top_and_next.yaml index deea6f1058cf..e4e1473c0d40 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_query_entities_with_top_and_next.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_query_entities_with_top_and_next.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:15 GMT + - Thu, 16 Jul 2020 19:35:52 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:15 GMT + - Thu, 16 Jul 2020 19:35:52 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:14 GMT + - Thu, 16 Jul 2020 19:35:51 GMT location: - https://storagename.table.core.windows.net/Tables('uttable801016e8') server: @@ -63,11 +63,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:15 GMT + - Thu, 16 Jul 2020 19:35:53 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:15 GMT + - Thu, 16 Jul 2020 19:35:53 GMT x-ms-version: - '2019-07-07' method: POST @@ -81,7 +81,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:14 GMT + - Thu, 16 Jul 2020 19:35:51 GMT location: - https://storagename.table.core.windows.net/Tables('querytable801016e8') server: @@ -117,27 +117,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:15 GMT + - Thu, 16 Jul 2020 19:35:53 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:15 GMT + - Thu, 16 Jul 2020 19:35:53 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/querytable801016e8 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable801016e8/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A14.5555508Z''\"","PartitionKey":"pk801016e8","RowKey":"rk801016e81","Timestamp":"2020-07-16T15:33:14.5555508Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable801016e8/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A52.1343913Z''\"","PartitionKey":"pk801016e8","RowKey":"rk801016e81","Timestamp":"2020-07-16T19:35:52.1343913Z","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, 16 Jul 2020 15:33:14 GMT + - Thu, 16 Jul 2020 19:35:52 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A14.5555508Z'" + - W/"datetime'2020-07-16T19%3A35%3A52.1343913Z'" location: - https://storagename.table.core.windows.net/querytable801016e8(PartitionKey='pk801016e8',RowKey='rk801016e81') server: @@ -173,27 +173,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:15 GMT + - Thu, 16 Jul 2020 19:35:53 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:15 GMT + - Thu, 16 Jul 2020 19:35:53 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/querytable801016e8 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable801016e8/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A14.6426102Z''\"","PartitionKey":"pk801016e8","RowKey":"rk801016e812","Timestamp":"2020-07-16T15:33:14.6426102Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable801016e8/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A52.2164496Z''\"","PartitionKey":"pk801016e8","RowKey":"rk801016e812","Timestamp":"2020-07-16T19:35:52.2164496Z","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, 16 Jul 2020 15:33:14 GMT + - Thu, 16 Jul 2020 19:35:52 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A14.6426102Z'" + - W/"datetime'2020-07-16T19%3A35%3A52.2164496Z'" location: - https://storagename.table.core.windows.net/querytable801016e8(PartitionKey='pk801016e8',RowKey='rk801016e812') server: @@ -229,27 +229,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:16 GMT + - Thu, 16 Jul 2020 19:35:53 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:16 GMT + - Thu, 16 Jul 2020 19:35:53 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/querytable801016e8 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable801016e8/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A14.7336723Z''\"","PartitionKey":"pk801016e8","RowKey":"rk801016e8123","Timestamp":"2020-07-16T15:33:14.7336723Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable801016e8/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A52.3005094Z''\"","PartitionKey":"pk801016e8","RowKey":"rk801016e8123","Timestamp":"2020-07-16T19:35:52.3005094Z","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, 16 Jul 2020 15:33:14 GMT + - Thu, 16 Jul 2020 19:35:52 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A14.7336723Z'" + - W/"datetime'2020-07-16T19%3A35%3A52.3005094Z'" location: - https://storagename.table.core.windows.net/querytable801016e8(PartitionKey='pk801016e8',RowKey='rk801016e8123') server: @@ -285,27 +285,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:16 GMT + - Thu, 16 Jul 2020 19:35:53 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:16 GMT + - Thu, 16 Jul 2020 19:35:53 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/querytable801016e8 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable801016e8/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A14.8367425Z''\"","PartitionKey":"pk801016e8","RowKey":"rk801016e81234","Timestamp":"2020-07-16T15:33:14.8367425Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable801016e8/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A52.3835683Z''\"","PartitionKey":"pk801016e8","RowKey":"rk801016e81234","Timestamp":"2020-07-16T19:35:52.3835683Z","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, 16 Jul 2020 15:33:14 GMT + - Thu, 16 Jul 2020 19:35:52 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A14.8367425Z'" + - W/"datetime'2020-07-16T19%3A35%3A52.3835683Z'" location: - https://storagename.table.core.windows.net/querytable801016e8(PartitionKey='pk801016e8',RowKey='rk801016e81234') server: @@ -341,27 +341,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:16 GMT + - Thu, 16 Jul 2020 19:35:53 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:16 GMT + - Thu, 16 Jul 2020 19:35:53 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/querytable801016e8 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable801016e8/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A14.9388115Z''\"","PartitionKey":"pk801016e8","RowKey":"rk801016e812345","Timestamp":"2020-07-16T15:33:14.9388115Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable801016e8/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A52.4716309Z''\"","PartitionKey":"pk801016e8","RowKey":"rk801016e812345","Timestamp":"2020-07-16T19:35:52.4716309Z","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, 16 Jul 2020 15:33:14 GMT + - Thu, 16 Jul 2020 19:35:52 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A14.9388115Z'" + - W/"datetime'2020-07-16T19%3A35%3A52.4716309Z'" location: - https://storagename.table.core.windows.net/querytable801016e8(PartitionKey='pk801016e8',RowKey='rk801016e812345') server: @@ -387,25 +387,25 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:16 GMT + - Thu, 16 Jul 2020 19:35:53 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:16 GMT + - Thu, 16 Jul 2020 19:35:53 GMT x-ms-version: - '2019-07-07' method: GET uri: https://storagename.table.core.windows.net/querytable801016e8()?$top=2 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable801016e8","value":[{"odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A14.5555508Z''\"","PartitionKey":"pk801016e8","RowKey":"rk801016e81","Timestamp":"2020-07-16T15:33:14.5555508Z","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''2020-07-16T15%3A33%3A14.6426102Z''\"","PartitionKey":"pk801016e8","RowKey":"rk801016e812","Timestamp":"2020-07-16T15:33:14.6426102Z","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"}]}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable801016e8","value":[{"odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A52.1343913Z''\"","PartitionKey":"pk801016e8","RowKey":"rk801016e81","Timestamp":"2020-07-16T19:35:52.1343913Z","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''2020-07-16T19%3A35%3A52.2164496Z''\"","PartitionKey":"pk801016e8","RowKey":"rk801016e812","Timestamp":"2020-07-16T19:35:52.2164496Z","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, 16 Jul 2020 15:33:14 GMT + - Thu, 16 Jul 2020 19:35:52 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -433,25 +433,25 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:16 GMT + - Thu, 16 Jul 2020 19:35:53 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:16 GMT + - Thu, 16 Jul 2020 19:35:53 GMT x-ms-version: - '2019-07-07' method: GET uri: https://storagename.table.core.windows.net/querytable801016e8()?$top=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''2020-07-16T15%3A33%3A14.7336723Z''\"","PartitionKey":"pk801016e8","RowKey":"rk801016e8123","Timestamp":"2020-07-16T15:33:14.7336723Z","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''2020-07-16T15%3A33%3A14.8367425Z''\"","PartitionKey":"pk801016e8","RowKey":"rk801016e81234","Timestamp":"2020-07-16T15:33:14.8367425Z","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"}]}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable801016e8","value":[{"odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A52.3005094Z''\"","PartitionKey":"pk801016e8","RowKey":"rk801016e8123","Timestamp":"2020-07-16T19:35:52.3005094Z","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''2020-07-16T19%3A35%3A52.3835683Z''\"","PartitionKey":"pk801016e8","RowKey":"rk801016e81234","Timestamp":"2020-07-16T19:35:52.3835683Z","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, 16 Jul 2020 15:33:14 GMT + - Thu, 16 Jul 2020 19:35:52 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -479,25 +479,25 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:16 GMT + - Thu, 16 Jul 2020 19:35:53 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:16 GMT + - Thu, 16 Jul 2020 19:35:53 GMT x-ms-version: - '2019-07-07' method: GET uri: https://storagename.table.core.windows.net/querytable801016e8()?$top=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''2020-07-16T15%3A33%3A14.9388115Z''\"","PartitionKey":"pk801016e8","RowKey":"rk801016e812345","Timestamp":"2020-07-16T15:33:14.9388115Z","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"}]}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable801016e8","value":[{"odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A52.4716309Z''\"","PartitionKey":"pk801016e8","RowKey":"rk801016e812345","Timestamp":"2020-07-16T19:35:52.4716309Z","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, 16 Jul 2020 15:33:15 GMT + - Thu, 16 Jul 2020 19:35:52 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -521,11 +521,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:16 GMT + - Thu, 16 Jul 2020 19:35:54 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:16 GMT + - Thu, 16 Jul 2020 19:35:54 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -539,7 +539,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:15 GMT + - Thu, 16 Jul 2020 19:35:52 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: @@ -561,11 +561,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:16 GMT + - Thu, 16 Jul 2020 19:35:54 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:16 GMT + - Thu, 16 Jul 2020 19:35:54 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -579,7 +579,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:15 GMT + - Thu, 16 Jul 2020 19:35:52 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_query_user_filter.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_query_user_filter.yaml index 9d49dc2d5491..c18dd959b514 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_query_user_filter.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_query_user_filter.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:16 GMT + - Thu, 16 Jul 2020 19:35:54 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:16 GMT + - Thu, 16 Jul 2020 19:35:54 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:15 GMT + - Thu, 16 Jul 2020 19:35:52 GMT location: - https://storagename.table.core.windows.net/Tables('uttable546210aa') server: @@ -69,27 +69,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:17 GMT + - Thu, 16 Jul 2020 19:35:54 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:17 GMT + - Thu, 16 Jul 2020 19:35:54 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttable546210aa response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable546210aa/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A15.8593158Z''\"","PartitionKey":"pk546210aa","RowKey":"rk546210aa","Timestamp":"2020-07-16T15:33:15.8593158Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable546210aa/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A53.3099929Z''\"","PartitionKey":"pk546210aa","RowKey":"rk546210aa","Timestamp":"2020-07-16T19:35:53.3099929Z","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, 16 Jul 2020 15:33:15 GMT + - Thu, 16 Jul 2020 19:35:53 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A15.8593158Z'" + - W/"datetime'2020-07-16T19%3A35%3A53.3099929Z'" location: - https://storagename.table.core.windows.net/uttable546210aa(PartitionKey='pk546210aa',RowKey='rk546210aa') server: @@ -115,11 +115,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:17 GMT + - Thu, 16 Jul 2020 19:35:54 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:17 GMT + - Thu, 16 Jul 2020 19:35:54 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -133,7 +133,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:15 GMT + - Thu, 16 Jul 2020 19:35:53 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_query_zero_entities.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_query_zero_entities.yaml index bdb28c375914..3fc92cb3660c 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_query_zero_entities.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_query_zero_entities.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:17 GMT + - Thu, 16 Jul 2020 19:35:54 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:17 GMT + - Thu, 16 Jul 2020 19:35:54 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:15 GMT + - Thu, 16 Jul 2020 19:35:52 GMT location: - https://storagename.table.core.windows.net/Tables('uttable7732118a') server: @@ -63,11 +63,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:17 GMT + - Thu, 16 Jul 2020 19:35:55 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:17 GMT + - Thu, 16 Jul 2020 19:35:55 GMT x-ms-version: - '2019-07-07' method: POST @@ -81,7 +81,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:15 GMT + - Thu, 16 Jul 2020 19:35:52 GMT location: - https://storagename.table.core.windows.net/Tables('querytable7732118a') server: @@ -107,11 +107,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:17 GMT + - Thu, 16 Jul 2020 19:35:55 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:17 GMT + - Thu, 16 Jul 2020 19:35:55 GMT x-ms-version: - '2019-07-07' method: GET @@ -125,7 +125,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:15 GMT + - Thu, 16 Jul 2020 19:35:53 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -149,11 +149,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:17 GMT + - Thu, 16 Jul 2020 19:35:55 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:17 GMT + - Thu, 16 Jul 2020 19:35:55 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -167,7 +167,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:15 GMT + - Thu, 16 Jul 2020 19:35:53 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: @@ -189,11 +189,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:17 GMT + - Thu, 16 Jul 2020 19:35:55 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:17 GMT + - Thu, 16 Jul 2020 19:35:55 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -207,7 +207,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:15 GMT + - Thu, 16 Jul 2020 19:35:53 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_sas_add.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_sas_add.yaml index d6204a6bb052..39d394e30034 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_sas_add.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_sas_add.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:18 GMT + - Thu, 16 Jul 2020 19:35:55 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:18 GMT + - Thu, 16 Jul 2020 19:35:55 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:16 GMT + - Thu, 16 Jul 2020 19:35:54 GMT location: - https://storagename.table.core.windows.net/Tables('uttablebfd90c40') server: @@ -69,27 +69,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:18 GMT + - Thu, 16 Jul 2020 19:35:55 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:18 GMT + - Thu, 16 Jul 2020 19:35:55 GMT x-ms-version: - '2019-07-07' method: POST - uri: https://storagename.table.core.windows.net/uttablebfd90c40?st=2020-07-16T15%3A32%3A18Z&se=2020-07-16T16%3A33%3A18Z&sp=a&sv=2019-07-07&tn=uttablebfd90c40&sig=cFlWVPxJI0%2B3TVMT6BilIbnQfHIFSzGo7%2BE5YP2oMyw%3D + uri: https://storagename.table.core.windows.net/uttablebfd90c40?st=2020-07-16T19%3A34%3A55Z&se=2020-07-16T20%3A35%3A55Z&sp=a&sv=2019-07-07&tn=uttablebfd90c40&sig=%2F0AxdVoJ0W5P6Iwf99UhdO1U7Q%2Fetg5es5DS66wk1dE%3D response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablebfd90c40/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A17.3047213Z''\"","PartitionKey":"pkbfd90c40","RowKey":"rkbfd90c40","Timestamp":"2020-07-16T15:33:17.3047213Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablebfd90c40/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A54.7743291Z''\"","PartitionKey":"pkbfd90c40","RowKey":"rkbfd90c40","Timestamp":"2020-07-16T19:35:54.7743291Z","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, 16 Jul 2020 15:33:16 GMT + - Thu, 16 Jul 2020 19:35:53 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A17.3047213Z'" + - W/"datetime'2020-07-16T19%3A35%3A54.7743291Z'" location: - https://storagename.table.core.windows.net/uttablebfd90c40(PartitionKey='pkbfd90c40',RowKey='rkbfd90c40') server: @@ -115,27 +115,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:18 GMT + - Thu, 16 Jul 2020 19:35:56 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:18 GMT + - Thu, 16 Jul 2020 19:35:56 GMT x-ms-version: - '2019-07-07' method: GET uri: https://storagename.table.core.windows.net/uttablebfd90c40(PartitionKey='pkbfd90c40',RowKey='rkbfd90c40') response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablebfd90c40/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A17.3047213Z''\"","PartitionKey":"pkbfd90c40","RowKey":"rkbfd90c40","Timestamp":"2020-07-16T15:33:17.3047213Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablebfd90c40/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A54.7743291Z''\"","PartitionKey":"pkbfd90c40","RowKey":"rkbfd90c40","Timestamp":"2020-07-16T19:35:54.7743291Z","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, 16 Jul 2020 15:33:16 GMT + - Thu, 16 Jul 2020 19:35:54 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A17.3047213Z'" + - W/"datetime'2020-07-16T19%3A35%3A54.7743291Z'" server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -159,11 +159,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:18 GMT + - Thu, 16 Jul 2020 19:35:56 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:18 GMT + - Thu, 16 Jul 2020 19:35:56 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -177,7 +177,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:16 GMT + - Thu, 16 Jul 2020 19:35:54 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_sas_add_inside_range.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_sas_add_inside_range.yaml index 31f23374b383..ad55efdc4e97 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_sas_add_inside_range.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_sas_add_inside_range.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:18 GMT + - Thu, 16 Jul 2020 19:35:56 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:18 GMT + - Thu, 16 Jul 2020 19:35:56 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:17 GMT + - Thu, 16 Jul 2020 19:35:55 GMT location: - https://storagename.table.core.windows.net/Tables('uttable84281187') server: @@ -69,27 +69,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:19 GMT + - Thu, 16 Jul 2020 19:35:56 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:19 GMT + - Thu, 16 Jul 2020 19:35:56 GMT x-ms-version: - '2019-07-07' method: POST - uri: https://storagename.table.core.windows.net/uttable84281187?se=2020-07-16T16%3A33%3A19Z&sp=a&sv=2019-07-07&tn=uttable84281187&spk=test&srk=test1&epk=test&erk=test1&sig=4t3xcXuNcQoBY9SDNQnUtN8du6ZKBgtQpZzrzXLRLL4%3D + uri: https://storagename.table.core.windows.net/uttable84281187?se=2020-07-16T20%3A35%3A56Z&sp=a&sv=2019-07-07&tn=uttable84281187&spk=test&srk=test1&epk=test&erk=test1&sig=RERu0%2B%2FzhHgJ9oGbVBgHRD%2FxL%2FyM%2Bd4kvMpwSWGXI5A%3D response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable84281187/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A18.1641064Z''\"","PartitionKey":"test","RowKey":"test1","Timestamp":"2020-07-16T15:33:18.1641064Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable84281187/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A55.6586049Z''\"","PartitionKey":"test","RowKey":"test1","Timestamp":"2020-07-16T19:35:55.6586049Z","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, 16 Jul 2020 15:33:17 GMT + - Thu, 16 Jul 2020 19:35:54 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A18.1641064Z'" + - W/"datetime'2020-07-16T19%3A35%3A55.6586049Z'" location: - https://storagename.table.core.windows.net/uttable84281187(PartitionKey='test',RowKey='test1') server: @@ -115,27 +115,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:19 GMT + - Thu, 16 Jul 2020 19:35:56 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:19 GMT + - Thu, 16 Jul 2020 19:35:56 GMT x-ms-version: - '2019-07-07' method: GET uri: https://storagename.table.core.windows.net/uttable84281187(PartitionKey='test',RowKey='test1') response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable84281187/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A18.1641064Z''\"","PartitionKey":"test","RowKey":"test1","Timestamp":"2020-07-16T15:33:18.1641064Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable84281187/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A55.6586049Z''\"","PartitionKey":"test","RowKey":"test1","Timestamp":"2020-07-16T19:35:55.6586049Z","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, 16 Jul 2020 15:33:17 GMT + - Thu, 16 Jul 2020 19:35:55 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A18.1641064Z'" + - W/"datetime'2020-07-16T19%3A35%3A55.6586049Z'" server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -159,11 +159,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:19 GMT + - Thu, 16 Jul 2020 19:35:57 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:19 GMT + - Thu, 16 Jul 2020 19:35:57 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -177,7 +177,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:17 GMT + - Thu, 16 Jul 2020 19:35:55 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_sas_add_outside_range.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_sas_add_outside_range.yaml index 96ff5f2bd8c6..bc8cbfc0b5f7 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_sas_add_outside_range.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_sas_add_outside_range.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:19 GMT + - Thu, 16 Jul 2020 19:35:57 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:19 GMT + - Thu, 16 Jul 2020 19:35:57 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:18 GMT + - Thu, 16 Jul 2020 19:35:55 GMT location: - https://storagename.table.core.windows.net/Tables('uttable973c1208') server: @@ -69,26 +69,26 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:20 GMT + - Thu, 16 Jul 2020 19:35:57 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:20 GMT + - Thu, 16 Jul 2020 19:35:57 GMT x-ms-version: - '2019-07-07' method: POST - uri: https://storagename.table.core.windows.net/uttable973c1208?se=2020-07-16T16%3A33%3A20Z&sp=a&sv=2019-07-07&tn=uttable973c1208&spk=test&srk=test1&epk=test&erk=test1&sig=bg1mgVzGC%2FPzxnxXWTCqM9XqgQcGXVeBsk2UMtj4Fpo%3D + uri: https://storagename.table.core.windows.net/uttable973c1208?se=2020-07-16T20%3A35%3A57Z&sp=a&sv=2019-07-07&tn=uttable973c1208&spk=test&srk=test1&epk=test&erk=test1&sig=BLf1lVnxHZdOUnkl%2Fbjf8rspTD0iQ%2Fetp7Me7kpVb5M%3D response: body: string: '{"odata.error":{"code":"AuthorizationFailure","message":{"lang":"en-US","value":"This - request is not authorized to perform this operation.\nRequestId:cec897c6-f002-000f-7886-5b3397000000\nTime:2020-07-16T15:33:19.0302204Z"}}}' + request is not authorized to perform this operation.\nRequestId:ec256161-f002-0099-0ca8-5b1acf000000\nTime:2020-07-16T19:35:56.4896665Z"}}}' headers: cache-control: - no-cache content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:18 GMT + - Thu, 16 Jul 2020 19:35:56 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -112,11 +112,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:20 GMT + - Thu, 16 Jul 2020 19:35:57 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:20 GMT + - Thu, 16 Jul 2020 19:35:57 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -130,7 +130,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:18 GMT + - Thu, 16 Jul 2020 19:35:55 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_sas_delete.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_sas_delete.yaml index da464b102415..4a2f79c589db 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_sas_delete.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_sas_delete.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:20 GMT + - Thu, 16 Jul 2020 19:35:57 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:20 GMT + - Thu, 16 Jul 2020 19:35:57 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:19 GMT + - Thu, 16 Jul 2020 19:35:56 GMT location: - https://storagename.table.core.windows.net/Tables('uttablee74c0d8a') server: @@ -69,27 +69,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:20 GMT + - Thu, 16 Jul 2020 19:35:58 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:20 GMT + - Thu, 16 Jul 2020 19:35:58 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttablee74c0d8a response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablee74c0d8a/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A19.578917Z''\"","PartitionKey":"pke74c0d8a","RowKey":"rke74c0d8a","Timestamp":"2020-07-16T15:33:19.578917Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablee74c0d8a/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A56.9909978Z''\"","PartitionKey":"pke74c0d8a","RowKey":"rke74c0d8a","Timestamp":"2020-07-16T19:35:56.9909978Z","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, 16 Jul 2020 15:33:19 GMT + - Thu, 16 Jul 2020 19:35:56 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A19.578917Z'" + - W/"datetime'2020-07-16T19%3A35%3A56.9909978Z'" location: - https://storagename.table.core.windows.net/uttablee74c0d8a(PartitionKey='pke74c0d8a',RowKey='rke74c0d8a') server: @@ -117,17 +117,17 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:20 GMT + - Thu, 16 Jul 2020 19:35:58 GMT If-Match: - '*' User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:20 GMT + - Thu, 16 Jul 2020 19:35:58 GMT x-ms-version: - '2019-07-07' method: DELETE - uri: https://storagename.table.core.windows.net/uttablee74c0d8a(PartitionKey='pke74c0d8a',RowKey='rke74c0d8a')?se=2020-07-16T16%3A33%3A20Z&sp=d&sv=2019-07-07&tn=uttablee74c0d8a&sig=j74n5oRHs90xhpnqn%2BTRsAqCQ04QNxNcpiJAGbk1GZM%3D + uri: https://storagename.table.core.windows.net/uttablee74c0d8a(PartitionKey='pke74c0d8a',RowKey='rke74c0d8a')?se=2020-07-16T20%3A35%3A58Z&sp=d&sv=2019-07-07&tn=uttablee74c0d8a&sig=bI08aro5nHhnBjsPMI42W5klzBhJFktn%2FW0UbmHDp%2Fc%3D response: body: string: '' @@ -137,7 +137,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:19 GMT + - Thu, 16 Jul 2020 19:35:57 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: @@ -159,11 +159,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:21 GMT + - Thu, 16 Jul 2020 19:35:58 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:21 GMT + - Thu, 16 Jul 2020 19:35:58 GMT x-ms-version: - '2019-07-07' method: GET @@ -171,14 +171,14 @@ interactions: response: body: string: '{"odata.error":{"code":"ResourceNotFound","message":{"lang":"en-US","value":"The - specified resource does not exist.\nRequestId:9ddce585-0002-0055-0e86-5b3516000000\nTime:2020-07-16T15:33:20.0292339Z"}}}' + specified resource does not exist.\nRequestId:da0adcde-2002-0018-7ba8-5bb898000000\nTime:2020-07-16T19:35:57.4042894Z"}}}' headers: cache-control: - no-cache content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:19 GMT + - Thu, 16 Jul 2020 19:35:56 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -202,11 +202,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:21 GMT + - Thu, 16 Jul 2020 19:35:58 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:21 GMT + - Thu, 16 Jul 2020 19:35:58 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -220,7 +220,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:20 GMT + - Thu, 16 Jul 2020 19:35:56 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_sas_query.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_sas_query.yaml index fcca621f0f81..935260ced6c2 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_sas_query.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_sas_query.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:21 GMT + - Thu, 16 Jul 2020 19:35:58 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:21 GMT + - Thu, 16 Jul 2020 19:35:58 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:19 GMT + - Thu, 16 Jul 2020 19:35:56 GMT location: - https://storagename.table.core.windows.net/Tables('uttableda4d0d4d') server: @@ -69,27 +69,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:21 GMT + - Thu, 16 Jul 2020 19:35:59 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:21 GMT + - Thu, 16 Jul 2020 19:35:59 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttableda4d0d4d response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableda4d0d4d/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A20.6623749Z''\"","PartitionKey":"pkda4d0d4d","RowKey":"rkda4d0d4d","Timestamp":"2020-07-16T15:33:20.6623749Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableda4d0d4d/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A58.0433147Z''\"","PartitionKey":"pkda4d0d4d","RowKey":"rkda4d0d4d","Timestamp":"2020-07-16T19:35:58.0433147Z","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, 16 Jul 2020 15:33:19 GMT + - Thu, 16 Jul 2020 19:35:57 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A20.6623749Z'" + - W/"datetime'2020-07-16T19%3A35%3A58.0433147Z'" location: - https://storagename.table.core.windows.net/uttableda4d0d4d(PartitionKey='pkda4d0d4d',RowKey='rkda4d0d4d') server: @@ -115,25 +115,25 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:22 GMT + - Thu, 16 Jul 2020 19:35:59 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:22 GMT + - Thu, 16 Jul 2020 19:35:59 GMT x-ms-version: - '2019-07-07' method: GET - uri: https://storagename.table.core.windows.net/uttableda4d0d4d()?$filter=PartitionKey%20eq%20%27pkda4d0d4d%27&st=2020-07-16T15%3A32%3A22Z&se=2020-07-16T16%3A33%3A22Z&sp=r&sv=2019-07-07&tn=uttableda4d0d4d&sig=BpO8r5NXaCtRrnTKrUWZnjamfRbqgMs0uwNPdQvdfjs%3D + uri: https://storagename.table.core.windows.net/uttableda4d0d4d()?$filter=PartitionKey%20eq%20%27pkda4d0d4d%27&st=2020-07-16T19%3A34%3A59Z&se=2020-07-16T20%3A35%3A59Z&sp=r&sv=2019-07-07&tn=uttableda4d0d4d&sig=tFLBZKLom6q1sgUlATvv49RqUDSWRcyFoT5CgUpEqps%3D response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableda4d0d4d","value":[{"odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A20.6623749Z''\"","PartitionKey":"pkda4d0d4d","RowKey":"rkda4d0d4d","Timestamp":"2020-07-16T15:33:20.6623749Z","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"}]}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableda4d0d4d","value":[{"odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A58.0433147Z''\"","PartitionKey":"pkda4d0d4d","RowKey":"rkda4d0d4d","Timestamp":"2020-07-16T19:35:58.0433147Z","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, 16 Jul 2020 15:33:20 GMT + - Thu, 16 Jul 2020 19:35:57 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -157,11 +157,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:22 GMT + - Thu, 16 Jul 2020 19:35:59 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:22 GMT + - Thu, 16 Jul 2020 19:35:59 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -175,7 +175,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:20 GMT + - Thu, 16 Jul 2020 19:35:57 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_sas_signed_identifier.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_sas_signed_identifier.yaml index bd234bb0bef7..860d7854a7b3 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_sas_signed_identifier.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_sas_signed_identifier.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:22 GMT + - Thu, 16 Jul 2020 19:35:59 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:22 GMT + - Thu, 16 Jul 2020 19:35:59 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:20 GMT + - Thu, 16 Jul 2020 19:35:58 GMT location: - https://storagename.table.core.windows.net/Tables('uttable979d1213') server: @@ -69,27 +69,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:22 GMT + - Thu, 16 Jul 2020 19:36:00 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:22 GMT + - Thu, 16 Jul 2020 19:36:00 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttable979d1213 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable979d1213/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A21.6229489Z''\"","PartitionKey":"pk979d1213","RowKey":"rk979d1213","Timestamp":"2020-07-16T15:33:21.6229489Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable979d1213/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A58.8682774Z''\"","PartitionKey":"pk979d1213","RowKey":"rk979d1213","Timestamp":"2020-07-16T19:35:58.8682774Z","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, 16 Jul 2020 15:33:21 GMT + - Thu, 16 Jul 2020 19:35:58 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A21.6229489Z'" + - W/"datetime'2020-07-16T19%3A35%3A58.8682774Z'" location: - https://storagename.table.core.windows.net/uttable979d1213(PartitionKey='pk979d1213',RowKey='rk979d1213') server: @@ -119,11 +119,11 @@ interactions: Content-Type: - application/xml Date: - - Thu, 16 Jul 2020 15:33:23 GMT + - Thu, 16 Jul 2020 19:36:00 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:23 GMT + - Thu, 16 Jul 2020 19:36:00 GMT x-ms-version: - '2019-07-07' method: PUT @@ -135,7 +135,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:21 GMT + - Thu, 16 Jul 2020 19:35:58 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -155,25 +155,25 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:23 GMT + - Thu, 16 Jul 2020 19:36:00 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:23 GMT + - Thu, 16 Jul 2020 19:36:00 GMT x-ms-version: - '2019-07-07' method: GET - uri: https://storagename.table.core.windows.net/uttable979d1213()?$filter=PartitionKey%20eq%20%27pk979d1213%27&sv=2019-07-07&si=testid&tn=uttable979d1213&sig=8q7JPRIsJGEkYn50cJaM4zzxgDsXNBEQmstg3DKhmuE%3D + uri: https://storagename.table.core.windows.net/uttable979d1213()?$filter=PartitionKey%20eq%20%27pk979d1213%27&sv=2019-07-07&si=testid&tn=uttable979d1213&sig=v1am4TnQjNL7zxaTgqDKTJQu8lLjp9DzPitqBXg5fss%3D response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable979d1213","value":[{"odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A21.6229489Z''\"","PartitionKey":"pk979d1213","RowKey":"rk979d1213","Timestamp":"2020-07-16T15:33:21.6229489Z","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"}]}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable979d1213","value":[{"odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A58.8682774Z''\"","PartitionKey":"pk979d1213","RowKey":"rk979d1213","Timestamp":"2020-07-16T19:35:58.8682774Z","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, 16 Jul 2020 15:33:21 GMT + - Thu, 16 Jul 2020 19:35:58 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -197,11 +197,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:23 GMT + - Thu, 16 Jul 2020 19:36:00 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:23 GMT + - Thu, 16 Jul 2020 19:36:00 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -215,7 +215,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:21 GMT + - Thu, 16 Jul 2020 19:35:58 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_sas_update.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_sas_update.yaml index f7e68c5d5dd0..5c45797da263 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_sas_update.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_sas_update.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:23 GMT + - Thu, 16 Jul 2020 19:36:00 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:23 GMT + - Thu, 16 Jul 2020 19:36:00 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:22 GMT + - Thu, 16 Jul 2020 19:35:59 GMT location: - https://storagename.table.core.windows.net/Tables('uttablee7bd0d9a') server: @@ -69,27 +69,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:23 GMT + - Thu, 16 Jul 2020 19:36:01 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:23 GMT + - Thu, 16 Jul 2020 19:36:01 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttablee7bd0d9a response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablee7bd0d9a/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A22.5723026Z''\"","PartitionKey":"pke7bd0d9a","RowKey":"rke7bd0d9a","Timestamp":"2020-07-16T15:33:22.5723026Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablee7bd0d9a/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A35%3A59.8612876Z''\"","PartitionKey":"pke7bd0d9a","RowKey":"rke7bd0d9a","Timestamp":"2020-07-16T19:35:59.8612876Z","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, 16 Jul 2020 15:33:22 GMT + - Thu, 16 Jul 2020 19:35:59 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A22.5723026Z'" + - W/"datetime'2020-07-16T19%3A35%3A59.8612876Z'" location: - https://storagename.table.core.windows.net/uttablee7bd0d9a(PartitionKey='pke7bd0d9a',RowKey='rke7bd0d9a') server: @@ -121,17 +121,17 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:23 GMT + - Thu, 16 Jul 2020 19:36:01 GMT If-Match: - '*' User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:23 GMT + - Thu, 16 Jul 2020 19:36:01 GMT x-ms-version: - '2019-07-07' method: PUT - uri: https://storagename.table.core.windows.net/uttablee7bd0d9a(PartitionKey='pke7bd0d9a',RowKey='rke7bd0d9a')?se=2020-07-16T16%3A33%3A23Z&sp=u&sv=2019-07-07&tn=uttablee7bd0d9a&sig=OwkAePiYZSl6OSqOauCSiu8t%2BCT%2FjZq5D99%2F3lyB00s%3D + uri: https://storagename.table.core.windows.net/uttablee7bd0d9a(PartitionKey='pke7bd0d9a',RowKey='rke7bd0d9a')?se=2020-07-16T20%3A36%3A01Z&sp=u&sv=2019-07-07&tn=uttablee7bd0d9a&sig=IrnwwR%2F36P%2Fp7gG0xBpQHSeMl4Z%2F%2BeJgMtqcyppD9o8%3D response: body: string: '' @@ -141,9 +141,9 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:22 GMT + - Thu, 16 Jul 2020 19:35:59 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A22.9017079Z'" + - W/"datetime'2020-07-16T19%3A36%3A00.1825189Z'" server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: @@ -165,27 +165,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:24 GMT + - Thu, 16 Jul 2020 19:36:01 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:24 GMT + - Thu, 16 Jul 2020 19:36:01 GMT x-ms-version: - '2019-07-07' method: GET uri: https://storagename.table.core.windows.net/uttablee7bd0d9a(PartitionKey='pke7bd0d9a',RowKey='rke7bd0d9a') response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablee7bd0d9a/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A22.9017079Z''\"","PartitionKey":"pke7bd0d9a","RowKey":"rke7bd0d9a","Timestamp":"2020-07-16T15:33:22.9017079Z","age":"abc","birthday@odata.type":"Edm.DateTime","birthday":"1991-10-04T00:00:00Z","sex":"female","sign":"aquarius"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablee7bd0d9a/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A36%3A00.1825189Z''\"","PartitionKey":"pke7bd0d9a","RowKey":"rke7bd0d9a","Timestamp":"2020-07-16T19:36:00.1825189Z","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, 16 Jul 2020 15:33:22 GMT + - Thu, 16 Jul 2020 19:35:59 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A22.9017079Z'" + - W/"datetime'2020-07-16T19%3A36%3A00.1825189Z'" server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -209,11 +209,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:24 GMT + - Thu, 16 Jul 2020 19:36:01 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:24 GMT + - Thu, 16 Jul 2020 19:36:01 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -227,7 +227,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:22 GMT + - Thu, 16 Jul 2020 19:35:59 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_sas_upper_case_table_name.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_sas_upper_case_table_name.yaml index 876035ca8f07..abc3681fef74 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_sas_upper_case_table_name.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_sas_upper_case_table_name.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:24 GMT + - Thu, 16 Jul 2020 19:36:01 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:24 GMT + - Thu, 16 Jul 2020 19:36:01 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:22 GMT + - Thu, 16 Jul 2020 19:36:00 GMT location: - https://storagename.table.core.windows.net/Tables('uttablee48713a5') server: @@ -69,27 +69,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:24 GMT + - Thu, 16 Jul 2020 19:36:02 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:24 GMT + - Thu, 16 Jul 2020 19:36:02 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttablee48713a5 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablee48713a5/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A23.5539836Z''\"","PartitionKey":"pke48713a5","RowKey":"rke48713a5","Timestamp":"2020-07-16T15:33:23.5539836Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablee48713a5/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A36%3A00.7947599Z''\"","PartitionKey":"pke48713a5","RowKey":"rke48713a5","Timestamp":"2020-07-16T19:36:00.7947599Z","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, 16 Jul 2020 15:33:22 GMT + - Thu, 16 Jul 2020 19:36:00 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A23.5539836Z'" + - W/"datetime'2020-07-16T19%3A36%3A00.7947599Z'" location: - https://storagename.table.core.windows.net/uttablee48713a5(PartitionKey='pke48713a5',RowKey='rke48713a5') server: @@ -115,25 +115,25 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:24 GMT + - Thu, 16 Jul 2020 19:36:02 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:24 GMT + - Thu, 16 Jul 2020 19:36:02 GMT x-ms-version: - '2019-07-07' method: GET - uri: https://storagename.table.core.windows.net/uttablee48713a5()?$filter=PartitionKey%20eq%20%27pke48713a5%27&st=2020-07-16T15%3A32%3A24Z&se=2020-07-16T16%3A33%3A24Z&sp=r&sv=2019-07-07&tn=UTTABLEE48713A5&sig=FTBxsGz0IJ4RaLm%2FTrhep8UT4ro8jZqgblnbTgG6fbE%3D + uri: https://storagename.table.core.windows.net/uttablee48713a5()?$filter=PartitionKey%20eq%20%27pke48713a5%27&st=2020-07-16T19%3A35%3A02Z&se=2020-07-16T20%3A36%3A02Z&sp=r&sv=2019-07-07&tn=UTTABLEE48713A5&sig=jpalpheUDXYRa4ZW11kWEtCjskavS7b35MCB6OuNS1A%3D response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablee48713a5","value":[{"odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A23.5539836Z''\"","PartitionKey":"pke48713a5","RowKey":"rke48713a5","Timestamp":"2020-07-16T15:33:23.5539836Z","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"}]}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablee48713a5","value":[{"odata.etag":"W/\"datetime''2020-07-16T19%3A36%3A00.7947599Z''\"","PartitionKey":"pke48713a5","RowKey":"rke48713a5","Timestamp":"2020-07-16T19:36:00.7947599Z","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, 16 Jul 2020 15:33:23 GMT + - Thu, 16 Jul 2020 19:36:00 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -157,11 +157,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:25 GMT + - Thu, 16 Jul 2020 19:36:02 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:25 GMT + - Thu, 16 Jul 2020 19:36:02 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -175,7 +175,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:23 GMT + - Thu, 16 Jul 2020 19:36:00 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_timezone.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_timezone.yaml index 521ed7eedcb6..693f63833af1 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_timezone.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_timezone.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:25 GMT + - Thu, 16 Jul 2020 19:36:02 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:25 GMT + - Thu, 16 Jul 2020 19:36:02 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:23 GMT + - Thu, 16 Jul 2020 19:36:01 GMT location: - https://storagename.table.core.windows.net/Tables('uttablecd510cdc') server: @@ -64,27 +64,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:25 GMT + - Thu, 16 Jul 2020 19:36:02 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:25 GMT + - Thu, 16 Jul 2020 19:36:02 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttablecd510cdc response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablecd510cdc/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A24.4216152Z''\"","PartitionKey":"pkcd510cdc","RowKey":"rkcd510cdc","Timestamp":"2020-07-16T15:33:24.4216152Z","date@odata.type":"Edm.DateTime","date":"2003-09-27T09:52:43Z"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablecd510cdc/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A36%3A01.6720955Z''\"","PartitionKey":"pkcd510cdc","RowKey":"rkcd510cdc","Timestamp":"2020-07-16T19:36:01.6720955Z","date@odata.type":"Edm.DateTime","date":"2003-09-27T09:52:43Z"}' headers: cache-control: - no-cache content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:23 GMT + - Thu, 16 Jul 2020 19:36:01 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A24.4216152Z'" + - W/"datetime'2020-07-16T19%3A36%3A01.6720955Z'" location: - https://storagename.table.core.windows.net/uttablecd510cdc(PartitionKey='pkcd510cdc',RowKey='rkcd510cdc') server: @@ -110,27 +110,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:25 GMT + - Thu, 16 Jul 2020 19:36:03 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:25 GMT + - Thu, 16 Jul 2020 19:36:03 GMT x-ms-version: - '2019-07-07' 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''2020-07-16T15%3A33%3A24.4216152Z''\"","PartitionKey":"pkcd510cdc","RowKey":"rkcd510cdc","Timestamp":"2020-07-16T15:33:24.4216152Z","date@odata.type":"Edm.DateTime","date":"2003-09-27T09:52:43Z"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablecd510cdc/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A36%3A01.6720955Z''\"","PartitionKey":"pkcd510cdc","RowKey":"rkcd510cdc","Timestamp":"2020-07-16T19:36:01.6720955Z","date@odata.type":"Edm.DateTime","date":"2003-09-27T09:52:43Z"}' headers: cache-control: - no-cache content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:23 GMT + - Thu, 16 Jul 2020 19:36:01 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A24.4216152Z'" + - W/"datetime'2020-07-16T19%3A36%3A01.6720955Z'" server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -154,11 +154,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:25 GMT + - Thu, 16 Jul 2020 19:36:03 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:25 GMT + - Thu, 16 Jul 2020 19:36:03 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -172,7 +172,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:24 GMT + - Thu, 16 Jul 2020 19:36:01 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_unicode_property_name.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_unicode_property_name.yaml index 0e6e13fd0622..76244d1bff28 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_unicode_property_name.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_unicode_property_name.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:26 GMT + - Thu, 16 Jul 2020 19:36:03 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:26 GMT + - Thu, 16 Jul 2020 19:36:03 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:24 GMT + - Thu, 16 Jul 2020 19:36:01 GMT location: - https://storagename.table.core.windows.net/Tables('uttable9990123c') server: @@ -64,27 +64,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:26 GMT + - Thu, 16 Jul 2020 19:36:03 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:26 GMT + - Thu, 16 Jul 2020 19:36:03 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttable9990123c response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable9990123c/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A25.0458738Z''\"","PartitionKey":"pk9990123c","RowKey":"rk9990123c","Timestamp":"2020-07-16T15:33:25.0458738Z","\u554a\u9f44\u4e02\u72db\u72dc":"\ua015"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable9990123c/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A36%3A02.2937577Z''\"","PartitionKey":"pk9990123c","RowKey":"rk9990123c","Timestamp":"2020-07-16T19:36:02.2937577Z","\u554a\u9f44\u4e02\u72db\u72dc":"\ua015"}' headers: cache-control: - no-cache content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:24 GMT + - Thu, 16 Jul 2020 19:36:01 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A25.0458738Z'" + - W/"datetime'2020-07-16T19%3A36%3A02.2937577Z'" location: - https://storagename.table.core.windows.net/uttable9990123c(PartitionKey='pk9990123c',RowKey='rk9990123c') server: @@ -115,27 +115,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:26 GMT + - Thu, 16 Jul 2020 19:36:03 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:26 GMT + - Thu, 16 Jul 2020 19:36:03 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttable9990123c response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable9990123c/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A25.1269296Z''\"","PartitionKey":"pk9990123c","RowKey":"test2","Timestamp":"2020-07-16T15:33:25.1269296Z","\u554a\u9f44\u4e02\u72db\u72dc":"hello"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable9990123c/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A36%3A02.3728132Z''\"","PartitionKey":"pk9990123c","RowKey":"test2","Timestamp":"2020-07-16T19:36:02.3728132Z","\u554a\u9f44\u4e02\u72db\u72dc":"hello"}' headers: cache-control: - no-cache content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:25 GMT + - Thu, 16 Jul 2020 19:36:01 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A25.1269296Z'" + - W/"datetime'2020-07-16T19%3A36%3A02.3728132Z'" location: - https://storagename.table.core.windows.net/uttable9990123c(PartitionKey='pk9990123c',RowKey='test2') server: @@ -161,25 +161,25 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:26 GMT + - Thu, 16 Jul 2020 19:36:03 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:26 GMT + - Thu, 16 Jul 2020 19:36:03 GMT x-ms-version: - '2019-07-07' method: GET uri: https://storagename.table.core.windows.net/uttable9990123c()?$filter=PartitionKey%20eq%20%27pk9990123c%27 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable9990123c","value":[{"odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A25.0458738Z''\"","PartitionKey":"pk9990123c","RowKey":"rk9990123c","Timestamp":"2020-07-16T15:33:25.0458738Z","\u554a\u9f44\u4e02\u72db\u72dc":"\ua015"},{"odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A25.1269296Z''\"","PartitionKey":"pk9990123c","RowKey":"test2","Timestamp":"2020-07-16T15:33:25.1269296Z","\u554a\u9f44\u4e02\u72db\u72dc":"hello"}]}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable9990123c","value":[{"odata.etag":"W/\"datetime''2020-07-16T19%3A36%3A02.2937577Z''\"","PartitionKey":"pk9990123c","RowKey":"rk9990123c","Timestamp":"2020-07-16T19:36:02.2937577Z","\u554a\u9f44\u4e02\u72db\u72dc":"\ua015"},{"odata.etag":"W/\"datetime''2020-07-16T19%3A36%3A02.3728132Z''\"","PartitionKey":"pk9990123c","RowKey":"test2","Timestamp":"2020-07-16T19:36:02.3728132Z","\u554a\u9f44\u4e02\u72db\u72dc":"hello"}]}' headers: cache-control: - no-cache content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:25 GMT + - Thu, 16 Jul 2020 19:36:01 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -203,11 +203,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:26 GMT + - Thu, 16 Jul 2020 19:36:03 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:26 GMT + - Thu, 16 Jul 2020 19:36:03 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -221,7 +221,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:25 GMT + - Thu, 16 Jul 2020 19:36:01 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_unicode_property_value.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_unicode_property_value.yaml index 93b1fc8aa0ea..2facf882acbf 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_unicode_property_value.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_unicode_property_value.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:26 GMT + - Thu, 16 Jul 2020 19:36:03 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:26 GMT + - Thu, 16 Jul 2020 19:36:03 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:24 GMT + - Thu, 16 Jul 2020 19:36:02 GMT location: - https://storagename.table.core.windows.net/Tables('uttableac7612b8') server: @@ -63,27 +63,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:27 GMT + - Thu, 16 Jul 2020 19:36:04 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:27 GMT + - Thu, 16 Jul 2020 19:36:04 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttableac7612b8 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableac7612b8/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A25.7473219Z''\"","PartitionKey":"pkac7612b8","RowKey":"rkac7612b8","Timestamp":"2020-07-16T15:33:25.7473219Z","Description":"\ua015"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableac7612b8/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A36%3A03.0141228Z''\"","PartitionKey":"pkac7612b8","RowKey":"rkac7612b8","Timestamp":"2020-07-16T19:36:03.0141228Z","Description":"\ua015"}' headers: cache-control: - no-cache content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:24 GMT + - Thu, 16 Jul 2020 19:36:02 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A25.7473219Z'" + - W/"datetime'2020-07-16T19%3A36%3A03.0141228Z'" location: - https://storagename.table.core.windows.net/uttableac7612b8(PartitionKey='pkac7612b8',RowKey='rkac7612b8') server: @@ -113,27 +113,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:27 GMT + - Thu, 16 Jul 2020 19:36:04 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:27 GMT + - Thu, 16 Jul 2020 19:36:04 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttableac7612b8 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableac7612b8/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A25.8323812Z''\"","PartitionKey":"pkac7612b8","RowKey":"test2","Timestamp":"2020-07-16T15:33:25.8323812Z","Description":"\ua015"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableac7612b8/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A36%3A03.0971817Z''\"","PartitionKey":"pkac7612b8","RowKey":"test2","Timestamp":"2020-07-16T19:36:03.0971817Z","Description":"\ua015"}' headers: cache-control: - no-cache content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:24 GMT + - Thu, 16 Jul 2020 19:36:02 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A25.8323812Z'" + - W/"datetime'2020-07-16T19%3A36%3A03.0971817Z'" location: - https://storagename.table.core.windows.net/uttableac7612b8(PartitionKey='pkac7612b8',RowKey='test2') server: @@ -159,25 +159,25 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:27 GMT + - Thu, 16 Jul 2020 19:36:04 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:27 GMT + - Thu, 16 Jul 2020 19:36:04 GMT x-ms-version: - '2019-07-07' method: GET uri: https://storagename.table.core.windows.net/uttableac7612b8()?$filter=PartitionKey%20eq%20%27pkac7612b8%27 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableac7612b8","value":[{"odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A25.7473219Z''\"","PartitionKey":"pkac7612b8","RowKey":"rkac7612b8","Timestamp":"2020-07-16T15:33:25.7473219Z","Description":"\ua015"},{"odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A25.8323812Z''\"","PartitionKey":"pkac7612b8","RowKey":"test2","Timestamp":"2020-07-16T15:33:25.8323812Z","Description":"\ua015"}]}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableac7612b8","value":[{"odata.etag":"W/\"datetime''2020-07-16T19%3A36%3A03.0141228Z''\"","PartitionKey":"pkac7612b8","RowKey":"rkac7612b8","Timestamp":"2020-07-16T19:36:03.0141228Z","Description":"\ua015"},{"odata.etag":"W/\"datetime''2020-07-16T19%3A36%3A03.0971817Z''\"","PartitionKey":"pkac7612b8","RowKey":"test2","Timestamp":"2020-07-16T19:36:03.0971817Z","Description":"\ua015"}]}' headers: cache-control: - no-cache content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:25 GMT + - Thu, 16 Jul 2020 19:36:02 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -201,11 +201,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:27 GMT + - Thu, 16 Jul 2020 19:36:04 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:27 GMT + - Thu, 16 Jul 2020 19:36:04 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -219,7 +219,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:25 GMT + - Thu, 16 Jul 2020 19:36:02 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_update_entity.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_update_entity.yaml index c5d87174a72e..58f5c54f6536 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_update_entity.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_update_entity.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:27 GMT + - Thu, 16 Jul 2020 19:36:04 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:27 GMT + - Thu, 16 Jul 2020 19:36:04 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:25 GMT + - Thu, 16 Jul 2020 19:36:03 GMT location: - https://storagename.table.core.windows.net/Tables('uttable13250ef0') server: @@ -69,27 +69,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:27 GMT + - Thu, 16 Jul 2020 19:36:04 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:27 GMT + - Thu, 16 Jul 2020 19:36:04 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttable13250ef0 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable13250ef0/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A26.4627052Z''\"","PartitionKey":"pk13250ef0","RowKey":"rk13250ef0","Timestamp":"2020-07-16T15:33:26.4627052Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable13250ef0/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A36%3A03.685311Z''\"","PartitionKey":"pk13250ef0","RowKey":"rk13250ef0","Timestamp":"2020-07-16T19:36:03.685311Z","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, 16 Jul 2020 15:33:26 GMT + - Thu, 16 Jul 2020 19:36:03 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A26.4627052Z'" + - W/"datetime'2020-07-16T19%3A36%3A03.685311Z'" location: - https://storagename.table.core.windows.net/uttable13250ef0(PartitionKey='pk13250ef0',RowKey='rk13250ef0') server: @@ -121,13 +121,13 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:27 GMT + - Thu, 16 Jul 2020 19:36:05 GMT If-Match: - '*' User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:27 GMT + - Thu, 16 Jul 2020 19:36:05 GMT x-ms-version: - '2019-07-07' method: PUT @@ -141,9 +141,9 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:26 GMT + - Thu, 16 Jul 2020 19:36:03 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A26.5412042Z'" + - W/"datetime'2020-07-16T19%3A36%3A03.7830569Z'" server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: @@ -165,27 +165,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:27 GMT + - Thu, 16 Jul 2020 19:36:05 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:27 GMT + - Thu, 16 Jul 2020 19:36:05 GMT x-ms-version: - '2019-07-07' 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''2020-07-16T15%3A33%3A26.5412042Z''\"","PartitionKey":"pk13250ef0","RowKey":"rk13250ef0","Timestamp":"2020-07-16T15:33:26.5412042Z","age":"abc","birthday@odata.type":"Edm.DateTime","birthday":"1991-10-04T00:00:00Z","sex":"female","sign":"aquarius"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable13250ef0/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A36%3A03.7830569Z''\"","PartitionKey":"pk13250ef0","RowKey":"rk13250ef0","Timestamp":"2020-07-16T19:36:03.7830569Z","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, 16 Jul 2020 15:33:26 GMT + - Thu, 16 Jul 2020 19:36:03 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A26.5412042Z'" + - W/"datetime'2020-07-16T19%3A36%3A03.7830569Z'" server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -209,11 +209,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:28 GMT + - Thu, 16 Jul 2020 19:36:05 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:28 GMT + - Thu, 16 Jul 2020 19:36:05 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -227,7 +227,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:26 GMT + - Thu, 16 Jul 2020 19:36:03 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_update_entity_not_existing.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_update_entity_not_existing.yaml index 25a739e8b811..e4404618387d 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_update_entity_not_existing.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_update_entity_not_existing.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:28 GMT + - Thu, 16 Jul 2020 19:36:05 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:28 GMT + - Thu, 16 Jul 2020 19:36:05 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:26 GMT + - Thu, 16 Jul 2020 19:36:03 GMT location: - https://storagename.table.core.windows.net/Tables('uttablefb67146a') server: @@ -65,13 +65,13 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:28 GMT + - Thu, 16 Jul 2020 19:36:05 GMT If-Match: - '*' User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:28 GMT + - Thu, 16 Jul 2020 19:36:05 GMT x-ms-version: - '2019-07-07' method: PUT @@ -81,16 +81,16 @@ interactions: string: 'ResourceNotFoundThe specified resource does not exist. - RequestId:00397140-c002-0048-6086-5becfc000000 + RequestId:0e0fc5bc-0002-002d-50a8-5b16cd000000 - Time:2020-07-16T15:33:27.2028573Z' + Time:2020-07-16T19:36:04.3972865Z' headers: cache-control: - no-cache content-type: - application/xml;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:26 GMT + - Thu, 16 Jul 2020 19:36:03 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -114,11 +114,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:28 GMT + - Thu, 16 Jul 2020 19:36:05 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:28 GMT + - Thu, 16 Jul 2020 19:36:05 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -132,7 +132,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:26 GMT + - Thu, 16 Jul 2020 19:36:03 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_update_entity_with_if_doesnt_match.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_update_entity_with_if_doesnt_match.yaml index 478d7f052f15..545042bd727f 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_update_entity_with_if_doesnt_match.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_update_entity_with_if_doesnt_match.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:28 GMT + - Thu, 16 Jul 2020 19:36:05 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:28 GMT + - Thu, 16 Jul 2020 19:36:05 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:26 GMT + - Thu, 16 Jul 2020 19:36:03 GMT location: - https://storagename.table.core.windows.net/Tables('uttableabcb1791') server: @@ -69,27 +69,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:29 GMT + - Thu, 16 Jul 2020 19:36:06 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:29 GMT + - Thu, 16 Jul 2020 19:36:06 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttableabcb1791 response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableabcb1791/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A27.7254295Z''\"","PartitionKey":"pkabcb1791","RowKey":"rkabcb1791","Timestamp":"2020-07-16T15:33:27.7254295Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableabcb1791/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A36%3A04.9293126Z''\"","PartitionKey":"pkabcb1791","RowKey":"rkabcb1791","Timestamp":"2020-07-16T19:36:04.9293126Z","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, 16 Jul 2020 15:33:26 GMT + - Thu, 16 Jul 2020 19:36:04 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A27.7254295Z'" + - W/"datetime'2020-07-16T19%3A36%3A04.9293126Z'" location: - https://storagename.table.core.windows.net/uttableabcb1791(PartitionKey='pkabcb1791',RowKey='rkabcb1791') server: @@ -121,13 +121,13 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:29 GMT + - Thu, 16 Jul 2020 19:36:06 GMT If-Match: - W/"datetime'2012-06-15T22%3A51%3A44.9662825Z'" User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:29 GMT + - Thu, 16 Jul 2020 19:36:06 GMT x-ms-version: - '2019-07-07' method: PATCH @@ -137,16 +137,16 @@ interactions: string: 'UpdateConditionNotSatisfiedThe update condition specified in the request was not satisfied. - RequestId:e79aa1e0-4002-0016-4686-5b1fff000000 + RequestId:57210d49-2002-005c-74a8-5b64f4000000 - Time:2020-07-16T15:33:27.8174944Z' + Time:2020-07-16T19:36:05.0113708Z' headers: cache-control: - no-cache content-type: - application/xml;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:27 GMT + - Thu, 16 Jul 2020 19:36:04 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -170,11 +170,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:29 GMT + - Thu, 16 Jul 2020 19:36:06 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:29 GMT + - Thu, 16 Jul 2020 19:36:06 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -188,7 +188,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:27 GMT + - Thu, 16 Jul 2020 19:36:04 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/recordings/test_table_entity.test_update_entity_with_if_matches.yaml b/sdk/table/azure-table/tests/recordings/test_table_entity.test_update_entity_with_if_matches.yaml index d68644bcc54f..69da6c9fa5b0 100644 --- a/sdk/table/azure-table/tests/recordings/test_table_entity.test_update_entity_with_if_matches.yaml +++ b/sdk/table/azure-table/tests/recordings/test_table_entity.test_update_entity_with_if_matches.yaml @@ -15,11 +15,11 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:29 GMT + - Thu, 16 Jul 2020 19:36:06 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:29 GMT + - Thu, 16 Jul 2020 19:36:06 GMT x-ms-version: - '2019-07-07' method: POST @@ -33,7 +33,7 @@ interactions: content-type: - application/json;odata=minimalmetadata;streaming=true;charset=utf-8 date: - - Thu, 16 Jul 2020 15:33:27 GMT + - Thu, 16 Jul 2020 19:36:05 GMT location: - https://storagename.table.core.windows.net/Tables('uttable39e2157d') server: @@ -69,27 +69,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:29 GMT + - Thu, 16 Jul 2020 19:36:06 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:29 GMT + - Thu, 16 Jul 2020 19:36:06 GMT x-ms-version: - '2019-07-07' method: POST uri: https://storagename.table.core.windows.net/uttable39e2157d response: body: - string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable39e2157d/@Element","odata.etag":"W/\"datetime''2020-07-16T15%3A33%3A28.3695393Z''\"","PartitionKey":"pk39e2157d","RowKey":"rk39e2157d","Timestamp":"2020-07-16T15:33:28.3695393Z","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"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable39e2157d/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A36%3A05.5572388Z''\"","PartitionKey":"pk39e2157d","RowKey":"rk39e2157d","Timestamp":"2020-07-16T19:36:05.5572388Z","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, 16 Jul 2020 15:33:27 GMT + - Thu, 16 Jul 2020 19:36:05 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A28.3695393Z'" + - W/"datetime'2020-07-16T19%3A36%3A05.5572388Z'" location: - https://storagename.table.core.windows.net/uttable39e2157d(PartitionKey='pk39e2157d',RowKey='rk39e2157d') server: @@ -121,13 +121,13 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:29 GMT + - Thu, 16 Jul 2020 19:36:06 GMT If-Match: - - W/"datetime'2020-07-16T15%3A33%3A28.3695393Z'" + - W/"datetime'2020-07-16T19%3A36%3A05.5572388Z'" User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:29 GMT + - Thu, 16 Jul 2020 19:36:06 GMT x-ms-version: - '2019-07-07' method: PUT @@ -141,9 +141,9 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:27 GMT + - Thu, 16 Jul 2020 19:36:05 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A28.4505095Z'" + - W/"datetime'2020-07-16T19%3A36%3A05.6513734Z'" server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: @@ -165,27 +165,27 @@ interactions: DataServiceVersion: - '3.0' Date: - - Thu, 16 Jul 2020 15:33:29 GMT + - Thu, 16 Jul 2020 19:36:06 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:29 GMT + - Thu, 16 Jul 2020 19:36:06 GMT x-ms-version: - '2019-07-07' 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''2020-07-16T15%3A33%3A28.4505095Z''\"","PartitionKey":"pk39e2157d","RowKey":"rk39e2157d","Timestamp":"2020-07-16T15:33:28.4505095Z","age":"abc","birthday@odata.type":"Edm.DateTime","birthday":"1991-10-04T00:00:00Z","sex":"female","sign":"aquarius"}' + string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable39e2157d/@Element","odata.etag":"W/\"datetime''2020-07-16T19%3A36%3A05.6513734Z''\"","PartitionKey":"pk39e2157d","RowKey":"rk39e2157d","Timestamp":"2020-07-16T19:36:05.6513734Z","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, 16 Jul 2020 15:33:27 GMT + - Thu, 16 Jul 2020 19:36:05 GMT etag: - - W/"datetime'2020-07-16T15%3A33%3A28.4505095Z'" + - W/"datetime'2020-07-16T19%3A36%3A05.6513734Z'" server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -209,11 +209,11 @@ interactions: Content-Length: - '0' Date: - - Thu, 16 Jul 2020 15:33:29 GMT + - Thu, 16 Jul 2020 19:36:07 GMT User-Agent: - azsdk-python-storage-table/2019-07-07 Python/3.8.3 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 16 Jul 2020 15:33:29 GMT + - Thu, 16 Jul 2020 19:36:07 GMT x-ms-version: - '2019-07-07' method: DELETE @@ -227,7 +227,7 @@ interactions: content-length: - '0' date: - - Thu, 16 Jul 2020 15:33:27 GMT + - Thu, 16 Jul 2020 19:36:05 GMT server: - Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0 x-content-type-options: diff --git a/sdk/table/azure-table/tests/test_table_encryption.py b/sdk/table/azure-table/tests/test_table_encryption.py index 0ad0e742e5ab..242a395ab9bf 100644 --- a/sdk/table/azure-table/tests/test_table_encryption.py +++ b/sdk/table/azure-table/tests/test_table_encryption.py @@ -59,14 +59,6 @@ _ERROR_OBJECT_INVALID, _ERROR_DECRYPTION_FAILURE, ) -# from azure.storage._encryption import( -# _dict_to_encryption_data, -# _generate_AES_CBC_cipher, -# ) -# from azure.storage._common_conversion import( -# _decode_base64_to_bytes, -# _encode_base64, -# ) from cryptography.hazmat.backends import default_backend from cryptography.hazmat.primitives.ciphers.algorithms import AES from cryptography.hazmat.primitives.ciphers.modes import CBC