diff --git a/sdk/core/Azure.Core.TestFramework/src/TestEnvironment.cs b/sdk/core/Azure.Core.TestFramework/src/TestEnvironment.cs
index 729e00e87ff4..7c0c207ccb58 100644
--- a/sdk/core/Azure.Core.TestFramework/src/TestEnvironment.cs
+++ b/sdk/core/Azure.Core.TestFramework/src/TestEnvironment.cs
@@ -132,7 +132,7 @@ public TokenCredential Credential
throw new InvalidOperationException("Azure.Identity must be referenced to use Credential in Live environment.");
}
- _credential = (TokenCredential) Activator.CreateInstance(
+ _credential = (TokenCredential)Activator.CreateInstance(
type,
GetVariable("TENANT_ID"),
GetVariable("CLIENT_ID"),
@@ -173,8 +173,7 @@ protected string GetRecordedVariable(string name)
}
///
- /// Returns an environment variable value.
- /// Throws when variable is not found.
+ /// Returns an environment variable value or null when variable is not found.
///
protected string GetOptionalVariable(string name)
{
diff --git a/sdk/tables/Azure.Data.Tables/api/Azure.Data.Tables.netstandard2.0.cs b/sdk/tables/Azure.Data.Tables/api/Azure.Data.Tables.netstandard2.0.cs
index 46b483ba88eb..e6e09719f91b 100644
--- a/sdk/tables/Azure.Data.Tables/api/Azure.Data.Tables.netstandard2.0.cs
+++ b/sdk/tables/Azure.Data.Tables/api/Azure.Data.Tables.netstandard2.0.cs
@@ -9,6 +9,7 @@ protected TableClient() { }
public virtual System.Threading.Tasks.Task>> CreateEntityAsync(System.Collections.Generic.IDictionary entity, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
public virtual System.Threading.Tasks.Task> CreateEntityAsync(T entity, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) where T : Azure.Data.Tables.TableEntity, new() { throw null; }
public virtual Azure.Response CreateEntity(T entity, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) where T : Azure.Data.Tables.TableEntity, new() { throw null; }
+ public static string CreateFilter(System.Linq.Expressions.Expression> filter) { throw null; }
public virtual Azure.Response Delete(string partitionKey, string rowKey, string eTag = "*", System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
public virtual System.Threading.Tasks.Task DeleteAsync(string partitionKey, string rowKey, string eTag = "*", System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
public virtual Azure.Response> GetAccessPolicy(int? timeout = default(int?), string requestId = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
@@ -232,13 +233,6 @@ internal TableServiceStats() { }
public Azure.Data.Tables.Models.GeoReplication GeoReplication { get { throw null; } }
}
}
-namespace Azure.Data.Tables.Queryable
-{
- public static partial class TableClientExtensions
- {
- public static string CreateFilter(this Azure.Data.Tables.TableClient client, System.Linq.Expressions.Expression> filter) { throw null; }
- }
-}
namespace Azure.Data.Tables.Sas
{
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
diff --git a/sdk/tables/Azure.Data.Tables/src/Extensions/TableClientExtensions.cs b/sdk/tables/Azure.Data.Tables/src/Extensions/TableClientExtensions.cs
deleted file mode 100644
index 9f430abdac1e..000000000000
--- a/sdk/tables/Azure.Data.Tables/src/Extensions/TableClientExtensions.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-// Copyright (c) Microsoft Corporation. All rights reserved.
-// Licensed under the MIT License.
-
-using System;
-using System.Collections.Generic;
-using System.Linq.Expressions;
-
-namespace Azure.Data.Tables.Queryable
-{
- public static class TableClientExtensions
- {
- ///
- /// Creates an Odata filter query string from the provided expression.
- ///
- /// The type of the entity being queried. Typically this will be derrived from or .
- /// The .
- /// A filter expresssion.
- /// The string representation of the filter expression.
- public static string CreateFilter(this TableClient client, Expression> filter) => client.Bind(filter);
- }
-}
diff --git a/sdk/tables/Azure.Data.Tables/src/Generated/TableRestClient.cs b/sdk/tables/Azure.Data.Tables/src/Generated/TableRestClient.cs
index 117e7af8b363..20a07d18136c 100644
--- a/sdk/tables/Azure.Data.Tables/src/Generated/TableRestClient.cs
+++ b/sdk/tables/Azure.Data.Tables/src/Generated/TableRestClient.cs
@@ -255,6 +255,25 @@ public ResponseWithHeaders Create(TableProper
}
}
+ internal HttpMessage CreateDeleteRequest(string table, string requestId)
+ {
+ var message = _pipeline.CreateMessage();
+ var request = message.Request;
+ request.Method = RequestMethod.Delete;
+ var uri = new RawRequestUriBuilder();
+ uri.AppendRaw(url, false);
+ uri.AppendPath("/Tables('", false);
+ uri.AppendPath(table, true);
+ uri.AppendPath("')", false);
+ request.Uri = uri;
+ request.Headers.Add("x-ms-version", version);
+ if (requestId != null)
+ {
+ request.Headers.Add("x-ms-client-request-id", requestId);
+ }
+ return message;
+ }
+
/// Operation permanently deletes the specified table.
/// The name of the table.
/// Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the analytics logs when analytics logging is enabled.
diff --git a/sdk/tables/Azure.Data.Tables/src/TableAcceptHeaderPipelinePolicy.cs b/sdk/tables/Azure.Data.Tables/src/TableAcceptHeaderPipelinePolicy.cs
new file mode 100644
index 000000000000..9fb88081efd1
--- /dev/null
+++ b/sdk/tables/Azure.Data.Tables/src/TableAcceptHeaderPipelinePolicy.cs
@@ -0,0 +1,44 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+using Azure.Core;
+using Azure.Core.Pipeline;
+
+namespace Azure.Data.Tables
+{
+ ///
+ /// HttpPipelinePolicy to add an Accept header to deal with service inconsistencies between Cosmos and Storage endpoints.
+ /// https://github.com/Azure/azure-sdk-for-net/issues/13559
+ ///
+ internal sealed class TableAcceptHeaderPipelinePolicy : HttpPipelineSynchronousPolicy
+ {
+ ///
+ /// Add Accept headers.
+ ///
+ /// The message.
+ public override void OnSendingRequest(HttpMessage message)
+ {
+ base.OnSendingRequest(message);
+
+ // Both storage and cosmos can be inconsistent about requiring an Accept header, so add one here for all requests
+ if (message.Request.Headers.TryGetValue(TableConstants.HeaderNames.Content, out var contentType))
+ {
+ switch (contentType)
+ {
+ case TableConstants.MimeType.ApplicationXml:
+ message.Request.Headers.SetValue(TableConstants.HeaderNames.Accept, TableConstants.MimeType.ApplicationXml);
+ break;
+ default:
+ message.Request.Headers.SetValue(TableConstants.HeaderNames.Accept, TableConstants.MimeType.ApplicationJson);
+ break;
+ }
+ }
+ else if (!message.Request.Uri.Query.Contains("comp="))
+ {
+ // The default Accept header should be application/json, however all requests using the comp= query string are application/xml
+ // These requests don't always set a Content-Type header as a clue for the logic above.
+ message.Request.Headers.SetValue(TableConstants.HeaderNames.Accept, TableConstants.MimeType.ApplicationJson);
+ }
+ }
+ }
+}
diff --git a/sdk/tables/Azure.Data.Tables/src/TableClient.cs b/sdk/tables/Azure.Data.Tables/src/TableClient.cs
index 7c3f47ab34eb..e60f6507cea8 100644
--- a/sdk/tables/Azure.Data.Tables/src/TableClient.cs
+++ b/sdk/tables/Azure.Data.Tables/src/TableClient.cs
@@ -993,20 +993,15 @@ public virtual Response SetAccessPolicy(IEnumerable tableAcl,
}
}
- internal ExpressionParser GetExpressionParser()
- {
- if (_isPremiumEndpoint)
- {
- //TODO: Port TableExtensionExpressionParser
- throw new NotImplementedException();
- }
- else
- {
- return new ExpressionParser();
- }
- }
+ ///
+ /// Creates an Odata filter query string from the provided expression.
+ ///
+ /// The type of the entity being queried. Typically this will be derrived from or .
+ /// A filter expresssion.
+ /// The string representation of the filter expression.
+ public static string CreateFilter(Expression> filter) => Bind(filter);
- internal string Bind(Expression expression)
+ internal static string Bind(Expression expression)
{
Argument.AssertNotNull(expression, nameof(expression));
@@ -1019,7 +1014,7 @@ internal string Bind(Expression expression)
Expression normalizedExpression = ExpressionNormalizer.Normalize(partialEvaluatedExpression, normalizerRewrites);
// Parse the Bound expression into sub components, i.e. take count, filter, select columns, request options, opcontext, etc.
- ExpressionParser parser = GetExpressionParser();
+ ExpressionParser parser = new ExpressionParser();
parser.Translate(normalizedExpression);
// Return the FilterString.
diff --git a/sdk/tables/Azure.Data.Tables/src/TableConstants.cs b/sdk/tables/Azure.Data.Tables/src/TableConstants.cs
index 091f9bb14bd3..21ed6bc4b185 100644
--- a/sdk/tables/Azure.Data.Tables/src/TableConstants.cs
+++ b/sdk/tables/Azure.Data.Tables/src/TableConstants.cs
@@ -14,6 +14,14 @@ internal static class HeaderNames
public const string SharedKey = "SharedKeyLite";
public const string Authorization = "Authorization";
public const string IfMatch = "If-Match";
+ public const string Accept = "Accept";
+ public const string Content = "Content-Type";
+ }
+
+ internal static class MimeType
+ {
+ internal const string ApplicationJson = "application/json";
+ internal const string ApplicationXml = "application/xml";
}
internal static class QueryParameterNames
diff --git a/sdk/tables/Azure.Data.Tables/src/TableRestClient.cs b/sdk/tables/Azure.Data.Tables/src/TableRestClient.cs
deleted file mode 100644
index 473ab875c642..000000000000
--- a/sdk/tables/Azure.Data.Tables/src/TableRestClient.cs
+++ /dev/null
@@ -1,33 +0,0 @@
-// Copyright (c) Microsoft Corporation. All rights reserved.
-// Licensed under the MIT License.
-
-using Azure.Core;
-
-namespace Azure.Data.Tables
-{
- internal partial class TableRestClient
- {
- // Should be unnecessary when https://github.com/Azure/azure-rest-api-specs/pull/8151/files#r414749024 is implemented.
- internal HttpMessage CreateDeleteRequest(string table, string requestId)
- {
- var message = _pipeline.CreateMessage();
- var request = message.Request;
- request.Method = RequestMethod.Delete;
- var uri = new RawRequestUriBuilder();
- uri.AppendRaw(url, false);
- uri.AppendPath("/Tables('", false);
- uri.AppendPath(table, true);
- uri.AppendPath("')", false);
- request.Uri = uri;
- request.Headers.Add("x-ms-version", version);
- if (requestId != null)
- {
- request.Headers.Add("x-ms-client-request-id", requestId);
- }
- // Delete requests fail without this header.
- request.Headers.Add("Accept", "application/json");
- return message;
- }
-
- }
-}
diff --git a/sdk/tables/Azure.Data.Tables/src/TableServiceClient.cs b/sdk/tables/Azure.Data.Tables/src/TableServiceClient.cs
index 805259f942f4..b74a64e1bb1b 100644
--- a/sdk/tables/Azure.Data.Tables/src/TableServiceClient.cs
+++ b/sdk/tables/Azure.Data.Tables/src/TableServiceClient.cs
@@ -55,14 +55,15 @@ internal TableServiceClient(Uri endpoint, TableSharedKeyPipelinePolicy policy, T
var endpointString = endpoint.ToString();
var secondaryEndpoint = endpointString.Insert(endpointString.IndexOf('.'), "-secondary");
HttpPipeline pipeline;
+ var acceptPolicy = new TableAcceptHeaderPipelinePolicy();
if (policy == default)
{
- pipeline = HttpPipelineBuilder.Build(options);
+ pipeline = HttpPipelineBuilder.Build(options, acceptPolicy);
}
else
{
- pipeline = HttpPipelineBuilder.Build(options, policy);
+ pipeline = HttpPipelineBuilder.Build(options, policy, acceptPolicy);
}
_diagnostics = new ClientDiagnostics(options);
diff --git a/sdk/tables/Azure.Data.Tables/src/TableSharedKeyPipelinePolicy.cs b/sdk/tables/Azure.Data.Tables/src/TableSharedKeyPipelinePolicy.cs
index f25262f86905..ced9fc983fd0 100644
--- a/sdk/tables/Azure.Data.Tables/src/TableSharedKeyPipelinePolicy.cs
+++ b/sdk/tables/Azure.Data.Tables/src/TableSharedKeyPipelinePolicy.cs
@@ -18,10 +18,10 @@ namespace Azure.Data.Tables
///
internal sealed class TableSharedKeyPipelinePolicy : HttpPipelineSynchronousPolicy
{
- private class InternalStorageCredential: TableSharedKeyCredential
+ private class InternalStorageCredential : TableSharedKeyCredential
{
public static InternalStorageCredential Instance = new InternalStorageCredential();
- public InternalStorageCredential(): base(string.Empty, string.Empty)
+ public InternalStorageCredential() : base(string.Empty, string.Empty)
{
}
@@ -94,6 +94,10 @@ private string BuildCanonicalizedResource(Uri resource)
{
foreach (var name in parameters.Keys.OrderBy(key => key, StringComparer.Ordinal))
{
+ // If the request URI addresses a component of the resource, append the appropriate query string.
+ // The query string should include the question mark and the comp parameter (for example, ?comp=metadata).
+ // No other parameters should be included on the query string.
+ // https://docs.microsoft.com/en-us/rest/api/storageservices/authorize-with-shared-key#shared-key-lite-and-table-service-format-for-2009-09-19-and-later
if (name == "comp")
{
#pragma warning disable CA1308 // Normalize strings to uppercase
diff --git a/sdk/tables/Azure.Data.Tables/test-resources.json b/sdk/tables/Azure.Data.Tables/test-resources.json
index 121b1671822e..b19d8f98dd2d 100644
--- a/sdk/tables/Azure.Data.Tables/test-resources.json
+++ b/sdk/tables/Azure.Data.Tables/test-resources.json
@@ -10,7 +10,6 @@
"mgmtApiVersion": "2019-04-01",
"location": "[resourceGroup().location]",
"primaryAccountName": "[concat(parameters('baseName'), 'prim')]",
- "location": "[resourceGroup().location]",
"encryption": {
"services": {
"file": {
@@ -46,16 +45,66 @@
"encryption": "[variables('encryption')]",
"accessTier": "Cool"
}
+ },
+ {
+ "type": "Microsoft.DocumentDB/databaseAccounts",
+ "apiVersion": "2020-04-01",
+ "name": "[variables('primaryAccountName')]",
+ "location": "[variables('location')]",
+ "tags": {
+ "defaultExperience": "Azure Table",
+ "hidden-cosmos-mmspecial": "",
+ "CosmosAccountType": "Non-Production"
+ },
+ "kind": "GlobalDocumentDB",
+ "properties": {
+ "publicNetworkAccess": "Enabled",
+ "enableAutomaticFailover": false,
+ "enableMultipleWriteLocations": false,
+ "isVirtualNetworkFilterEnabled": false,
+ "virtualNetworkRules": [],
+ "disableKeyBasedMetadataWriteAccess": false,
+ "enableFreeTier": false,
+ "enableAnalyticalStorage": false,
+ "databaseAccountOfferType": "Standard",
+ "consistencyPolicy": {
+ "defaultConsistencyLevel": "BoundedStaleness",
+ "maxIntervalInSeconds": 86400,
+ "maxStalenessPrefix": 1000000
+ },
+ "locations": [
+ {
+ "locationName": "[variables('location')]",
+ "provisioningState": "Succeeded",
+ "failoverPriority": 0,
+ "isZoneRedundant": false
+ }
+ ],
+ "capabilities": [
+ {
+ "name": "EnableTable"
+ }
+ ],
+ "ipRules": []
+ }
}
],
"outputs": {
- "TABLES_STORAGE_ACCOUNT_NAME": {
- "type": "string",
- "value": "[variables('primaryAccountName')]"
- },
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": {
- "type": "string",
- "value": "[listKeys(resourceId('Microsoft.Storage/storageAccounts', variables('primaryAccountName')), variables('mgmtApiVersion')).keys[0].value]"
- }
+ "TABLES_STORAGE_ACCOUNT_NAME": {
+ "type": "string",
+ "value": "[variables('primaryAccountName')]"
+ },
+ "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": {
+ "type": "string",
+ "value": "[listKeys(resourceId('Microsoft.Storage/storageAccounts', variables('primaryAccountName')), variables('mgmtApiVersion')).keys[0].value]"
+ },
+ "TABLES_COSMOS_ACCOUNT_NAME": {
+ "type": "string",
+ "value": "[variables('primaryAccountName')]"
+ },
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": {
+ "type": "string",
+ "value": "[listKeys(resourceId('Microsoft.DocumentDB/databaseAccounts', variables('primaryAccountName')), '2020-04-01').primaryMasterKey]"
+ }
}
}
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreateEntityReturnsEntitiesWithoutOdataAnnoations.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreateEntityReturnsEntitiesWithoutOdataAnnoations.json
index e6f13bff9364..969b9cc46908 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreateEntityReturnsEntitiesWithoutOdataAnnoations.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreateEntityReturnsEntitiesWithoutOdataAnnoations.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c11a875413d0304f9534d70232efcfdc-b171ed4097bd2549-00",
+ "traceparent": "00-99344b39d044bc479674a2b37c3bc0a8-09fe4916e87f0b46-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "bfe95ab73b7311d91f9f6b3eebdcc436",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:42 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:05 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablewumpudvf\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:43 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A42.5728008Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablewumpudvf\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "bfe95ab73b7311d91f9f6b3eebdcc436",
- "x-ms-request-id": "2074fcbf-b002-001b-5a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "bfe95ab7-3b73-11d9-1f9f-6b3eebdcc436"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablewumpudvf\u0027)",
- "odata.editLink": "Tables(\u0027testtablewumpudvf\u0027)",
- "TableName": "testtablewumpudvf"
+ "TableName": "testtablewumpudvf",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablewumpudvf?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablewumpudvf?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6d4bfe6907c3d84da1e966739369bd9a-1ace4310600f094e-00",
+ "traceparent": "00-bb07919aec06234b91fa0c2312305519-18295336a4837649-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a7ed91a06b59042841c81b5f6fc9b6ab",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:43 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -83,82 +76,65 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:05 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A05.3438285Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablewumpudvf(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:43 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A43.1881224Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablewumpudvf(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a7ed91a06b59042841c81b5f6fc9b6ab",
- "x-ms-request-id": "2074fcd1-b002-001b-6821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "a7ed91a0-6b59-0428-41c8-1b5f6fc9b6ab"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablewumpudvf/@Element",
- "odata.type": "chrissscratch.testtablewumpudvf",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablewumpudvf(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A05.3438285Z\u0027\u0022",
- "odata.editLink": "testtablewumpudvf(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablewumpudvf/$metadata#testtablewumpudvf/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A43.1881224Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:05.3438285Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:02:00Z",
+ "SomeDateProperty": "2020-01-01T01:02:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "1",
- "SomeDoubleProperty0": 1.0,
+ "SomeDoubleProperty0": 1,
"SomeDoubleProperty1": 1.1,
- "SomeIntProperty": 1
+ "SomeIntProperty": 1,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:43.1881224Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablewumpudvf\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablewumpudvf\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-9f31d64a073f3649b9776d7689878f8a-345acb2bce1e8c4d-00",
+ "traceparent": "00-0342b5fff80dc549b92486ee15188521-191bda040597b143-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "109cd4bdfd2c9af181df623db5a39e5d",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:43 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:05 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "109cd4bdfd2c9af181df623db5a39e5d",
- "x-ms-request-id": "2074fcda-b002-001b-7021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:34:43 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "109cd4bd-fd2c-9af1-81df-623db5a39e5d"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1961355191",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreateEntityReturnsEntitiesWithoutOdataAnnoationsAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreateEntityReturnsEntitiesWithoutOdataAnnoationsAsync.json
index 99a38343ddbb..deffa99e092d 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreateEntityReturnsEntitiesWithoutOdataAnnoationsAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreateEntityReturnsEntitiesWithoutOdataAnnoationsAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-41b9f1ecd13fe84a9c84101b15898f8d-4e019d4329875449-00",
+ "traceparent": "00-b36c4ad83705c14885dd9e3510e4312e-8155ca3af5e40c4f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d0d99932ba5222410531fbb0599ec159",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:29 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:19 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:28 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablezxwt87l1\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:19 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A19.4201096Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablezxwt87l1\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "d0d99932ba5222410531fbb0599ec159",
- "x-ms-request-id": "207513a4-b002-001b-4221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "d0d99932-ba52-2241-0531-fbb0599ec159"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablezxwt87l1\u0027)",
- "odata.editLink": "Tables(\u0027testtablezxwt87l1\u0027)",
- "TableName": "testtablezxwt87l1"
+ "TableName": "testtablezxwt87l1",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablezxwt87l1?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablezxwt87l1?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-01970f8ae18cb84a993f2e1be649d611-c1a1049b3e0a9a4a-00",
+ "traceparent": "00-c74e69ae162f6a4587875eb451f0b66d-cbbeee5169370047-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6a48ae88d4c405e37b17e89d692e0c2d",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:29 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:20 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -83,82 +76,65 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:28 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A29.059613Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablezxwt87l1(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:19 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A19.9600648Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablezxwt87l1(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "6a48ae88d4c405e37b17e89d692e0c2d",
- "x-ms-request-id": "207513b6-b002-001b-5321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "6a48ae88-d4c4-05e3-7b17-e89d692e0c2d"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablezxwt87l1/@Element",
- "odata.type": "chrissscratch.testtablezxwt87l1",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablezxwt87l1(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A29.059613Z\u0027\u0022",
- "odata.editLink": "testtablezxwt87l1(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablezxwt87l1/$metadata#testtablezxwt87l1/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A19.9600648Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:29.059613Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:02:00Z",
+ "SomeDateProperty": "2020-01-01T01:02:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "1",
- "SomeDoubleProperty0": 1.0,
+ "SomeDoubleProperty0": 1,
"SomeDoubleProperty1": 1.1,
- "SomeIntProperty": 1
+ "SomeIntProperty": 1,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:19.9600648Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablezxwt87l1\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablezxwt87l1\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-734916f091b6514f9d2e3e52e86b7101-c762065f2b263a42-00",
+ "traceparent": "00-50b21447d1b5314682964a8de8c9e5a0-2bec26d0fa7a6c44-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6785da2478bcab57ab95f1234801e669",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:29 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:20 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:28 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "6785da2478bcab57ab95f1234801e669",
- "x-ms-request-id": "207513c0-b002-001b-5d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:35:19 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "6785da24-78bc-ab57-ab95-f1234801e669"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "265780735",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedCustomEntitiesAreRoundtrippedProprly.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedCustomEntitiesAreRoundtrippedProprly.json
index dfc879c3c55d..f12ebae85fdf 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedCustomEntitiesAreRoundtrippedProprly.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedCustomEntitiesAreRoundtrippedProprly.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ab44c955f1911c4d99b3d355e75cc953-e9d3d4c0e6adbb48-00",
+ "traceparent": "00-fa8671505fc46c45bd98e0371dc2c2d4-a0b14c1dca382046-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f42afc894715037272c647dc0b8deb01",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:02 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:34 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:02 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablebvoitwq2\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:35 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A34.9565960Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablebvoitwq2\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "f42afc894715037272c647dc0b8deb01",
- "x-ms-request-id": "2074f95a-b002-001b-2c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "f42afc89-4715-0372-72c6-47dc0b8deb01"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablebvoitwq2\u0027)",
- "odata.editLink": "Tables(\u0027testtablebvoitwq2\u0027)",
- "TableName": "testtablebvoitwq2"
+ "TableName": "testtablebvoitwq2",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablebvoitwq2?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablebvoitwq2?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-af688fbcd2033042aa7690a149f3e49f-6c1178fe2953584d-00",
+ "traceparent": "00-9bea09143eed0641ad9d0b593cfb0752-2aee6004b140074e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0211841dcb4ed56a26c35c6403992df6",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:02 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:35 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -86,143 +79,116 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:02 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A02.5745127Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablebvoitwq2(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:35 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A35.6347912Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablebvoitwq2(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "0211841dcb4ed56a26c35c6403992df6",
- "x-ms-request-id": "2074f98e-b002-001b-5e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "0211841d-cb4e-d56a-26c3-5c6403992df6"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablebvoitwq2/@Element",
- "odata.type": "chrissscratch.testtablebvoitwq2",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablebvoitwq2(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A02.5745127Z\u0027\u0022",
- "odata.editLink": "testtablebvoitwq2(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:02.5745127Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablebvoitwq2/$metadata#testtablebvoitwq2/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A35.6347912Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:02:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "1",
- "DoubleTypeProperty": 1.0,
- "IntTypeProperty": 1
+ "DoubleTypeProperty": 1,
+ "IntTypeProperty": 1,
+ "PartitionKey": "somPartition",
+ "RowKey": "01",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:35.6347912Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablebvoitwq2()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%2701%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablebvoitwq2()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%2701%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e73908cd1b39d9c37ecbb5c0f4b7760e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:36 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:02 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:35 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "e73908cd1b39d9c37ecbb5c0f4b7760e",
- "x-ms-request-id": "2074f9c5-b002-001b-1521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "e73908cd-1b39-d9c3-7ecb-b5c0f4b7760e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablebvoitwq2",
"value": [
{
- "odata.type": "chrissscratch.testtablebvoitwq2",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablebvoitwq2(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A02.5745127Z\u0027\u0022",
- "odata.editLink": "testtablebvoitwq2(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:02.5745127Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A35.6347912Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:02:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "1",
- "DoubleTypeProperty": 1.0,
- "IntTypeProperty": 1
+ "DoubleTypeProperty": 1,
+ "IntTypeProperty": 1,
+ "PartitionKey": "somPartition",
+ "RowKey": "01",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:35.6347912Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablebvoitwq2\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablebvoitwq2\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-3d932cec23f7414cbd25759c234a0124-64965f9afa8ecf42-00",
+ "traceparent": "00-7a0a951d2177fa43ac6466b729550083-57432c27df69ca40-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8cc4574a62b3bd5f9254cd51eb0effd9",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:36 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:02 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "8cc4574a62b3bd5f9254cd51eb0effd9",
- "x-ms-request-id": "2074f9da-b002-001b-2621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:34:35 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "8cc4574a-62b3-bd5f-9254-cd51eb0effd9"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1242519506",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedCustomEntitiesAreRoundtrippedProprlyAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedCustomEntitiesAreRoundtrippedProprlyAsync.json
index 49c62fbe7c7c..3e83618e7341 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedCustomEntitiesAreRoundtrippedProprlyAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedCustomEntitiesAreRoundtrippedProprlyAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-3589ce0ed0a26242aff0953533947932-ed078b49e6ea7840-00",
+ "traceparent": "00-0df1b5683ee6d449951d8496215700c4-d3695c01a5894c46-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ca619b2479b291a24d90bca2d2ac8a88",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:26 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:11 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:26 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablef7fxzpso\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:11 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A11.4440712Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablef7fxzpso\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ca619b2479b291a24d90bca2d2ac8a88",
- "x-ms-request-id": "20751090-b002-001b-4621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "ca619b24-79b2-91a2-4d90-bca2d2ac8a88"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablef7fxzpso\u0027)",
- "odata.editLink": "Tables(\u0027testtablef7fxzpso\u0027)",
- "TableName": "testtablef7fxzpso"
+ "TableName": "testtablef7fxzpso",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablef7fxzpso?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablef7fxzpso?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a0c735c064c52f4a8091c13c5a55e874-5828f18aa4b4d14f-00",
+ "traceparent": "00-e99367770251234e97a63d74bbb8618a-28cf521faebab040-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "caac56d8aa3355859fcfcd89e6d4ee7e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:26 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:12 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -86,143 +79,116 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:26 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A26.5054923Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablef7fxzpso(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:11 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A12.1553416Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablef7fxzpso(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "caac56d8aa3355859fcfcd89e6d4ee7e",
- "x-ms-request-id": "207510b9-b002-001b-6e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "caac56d8-aa33-5585-9fcf-cd89e6d4ee7e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablef7fxzpso/@Element",
- "odata.type": "chrissscratch.testtablef7fxzpso",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablef7fxzpso(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A26.5054923Z\u0027\u0022",
- "odata.editLink": "testtablef7fxzpso(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:26.5054923Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablef7fxzpso/$metadata#testtablef7fxzpso/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A12.1553416Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:02:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "1",
- "DoubleTypeProperty": 1.0,
- "IntTypeProperty": 1
+ "DoubleTypeProperty": 1,
+ "IntTypeProperty": 1,
+ "PartitionKey": "somPartition",
+ "RowKey": "01",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:12.1553416Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablef7fxzpso()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%2701%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablef7fxzpso()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%2701%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e3cdcbc604f1f04a4510bb4e6e17dd39",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:26 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:12 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:26 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:11 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "e3cdcbc604f1f04a4510bb4e6e17dd39",
- "x-ms-request-id": "207510ca-b002-001b-7e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "e3cdcbc6-04f1-f04a-4510-bb4e6e17dd39"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablef7fxzpso",
"value": [
{
- "odata.type": "chrissscratch.testtablef7fxzpso",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablef7fxzpso(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A26.5054923Z\u0027\u0022",
- "odata.editLink": "testtablef7fxzpso(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:26.5054923Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A12.1553416Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:02:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "1",
- "DoubleTypeProperty": 1.0,
- "IntTypeProperty": 1
+ "DoubleTypeProperty": 1,
+ "IntTypeProperty": 1,
+ "PartitionKey": "somPartition",
+ "RowKey": "01",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:12.1553416Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablef7fxzpso\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablef7fxzpso\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-abd062a5f1609b4d9f8db2e4d4cecd6f-0157b421738f1141-00",
+ "traceparent": "00-343ae1ae3683164d8faa1af919411fac-da2fddccf1292444-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8a1d84f1289c7ab0150c2be3ac19ab79",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:26 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:12 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:26 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "8a1d84f1289c7ab0150c2be3ac19ab79",
- "x-ms-request-id": "207510d5-b002-001b-0921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:35:12 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "8a1d84f1-289c-7ab0-150c-2be3ac19ab79"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1454581378",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedCustomEntitiesCanBeQueriedWithAndWithoutPagination(5).json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedCustomEntitiesCanBeQueriedWithAndWithoutPagination(5).json
index 69daaab4cecf..a459d6ddf564 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedCustomEntitiesCanBeQueriedWithAndWithoutPagination(5).json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedCustomEntitiesCanBeQueriedWithAndWithoutPagination(5).json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-b929ddd3c3d5044e916543f661179e1e-793e75f109a70f43-00",
+ "traceparent": "00-d2259f107dc6564a8d6d222acbd5bd95-0b10889576adcd42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f932301985438162f4e066e4173c775e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:10 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableufnwhdzj\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:03 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A03.1286792Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableufnwhdzj\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "f932301985438162f4e066e4173c775e",
- "x-ms-request-id": "207501c6-b002-001b-6c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "f9323019-8543-8162-f4e0-66e4173c775e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableufnwhdzj\u0027)",
- "odata.editLink": "Tables(\u0027testtableufnwhdzj\u0027)",
- "TableName": "testtableufnwhdzj"
+ "TableName": "testtableufnwhdzj",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-38a6ed24f664d941a0b985bafbdebbd8-4e7f2f5ace25b943-00",
+ "traceparent": "00-cbc75d8a07907043aa04e7a4b59dc54b-01659a2c715c024b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b8724c9e776fd465726b8704e1fda263",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -86,61 +79,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:10 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.0145606Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:03 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A03.7963272Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "b8724c9e776fd465726b8704e1fda263",
- "x-ms-request-id": "207501ce-b002-001b-7221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "b8724c9e-776f-d465-726b-8704e1fda263"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableufnwhdzj/@Element",
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.0145606Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.0145606Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj/$metadata#testtableufnwhdzj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A03.7963272Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:02:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "1",
- "DoubleTypeProperty": 1.0,
- "IntTypeProperty": 1
+ "DoubleTypeProperty": 1,
+ "IntTypeProperty": 1,
+ "PartitionKey": "somPartition",
+ "RowKey": "01",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:03.7963272Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6fc3ae5a35361d40a4dab2a30d833c5e-b9e321c352bf0a4d-00",
+ "traceparent": "00-116a9e0345e48e4ca371c0cde45c7224-7c75b93a09921543-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0925968f29f6c1be727f9e38316bcd9b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -167,61 +151,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:10 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.0605988Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:03 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A03.8747656Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "0925968f29f6c1be727f9e38316bcd9b",
- "x-ms-request-id": "207501da-b002-001b-7a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "0925968f-29f6-c1be-727f-9e38316bcd9b"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableufnwhdzj/@Element",
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.0605988Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "02",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.0605988Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj/$metadata#testtableufnwhdzj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A03.8747656Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 02",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:03:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:03:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:03:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:03:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "2",
- "DoubleTypeProperty": 2.0,
- "IntTypeProperty": 2
+ "DoubleTypeProperty": 2,
+ "IntTypeProperty": 2,
+ "PartitionKey": "somPartition",
+ "RowKey": "02",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:03.8747656Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-70db67cd3154d945b80629ff3131c4a2-e085b39b3fd64f43-00",
+ "traceparent": "00-e3a50c345010e245ab5f95b6b6bdbadf-f41f7c46568eaf48-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2ab9708100a4a22fcb5e86d7fe5ea0f6",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -248,61 +223,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:10 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.1086382Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:03 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A03.9437832Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "2ab9708100a4a22fcb5e86d7fe5ea0f6",
- "x-ms-request-id": "207501e2-b002-001b-8021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "2ab97081-00a4-a22f-cb5e-86d7fe5ea0f6"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableufnwhdzj/@Element",
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.1086382Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "03",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.1086382Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj/$metadata#testtableufnwhdzj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A03.9437832Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 03",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:04:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:04:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:04:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:04:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "3",
- "DoubleTypeProperty": 3.0,
- "IntTypeProperty": 3
+ "DoubleTypeProperty": 3,
+ "IntTypeProperty": 3,
+ "PartitionKey": "somPartition",
+ "RowKey": "03",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:03.9437832Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8ceb26d46cb61844a0744d665a20659e-0a338b1c915fba44-00",
+ "traceparent": "00-ec7f48fee64ffd4a97f50b7ee8d19a2c-8482354a7f02f941-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8154033e6e1775678db045efd82ca207",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -329,61 +295,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:10 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.153676Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:03 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.0206856Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "8154033e6e1775678db045efd82ca207",
- "x-ms-request-id": "207501f0-b002-001b-0c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "8154033e-6e17-7567-8db0-45efd82ca207"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableufnwhdzj/@Element",
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.153676Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "04",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.153676Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj/$metadata#testtableufnwhdzj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.0206856Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 04",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:05:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:05:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:05:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:05:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "4",
- "DoubleTypeProperty": 4.0,
- "IntTypeProperty": 4
+ "DoubleTypeProperty": 4,
+ "IntTypeProperty": 4,
+ "PartitionKey": "somPartition",
+ "RowKey": "04",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:04.0206856Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-4229c5ef48982045ab45c68828a5ae8f-45d2b03e6c613640-00",
+ "traceparent": "00-a325199f35c7d04580798915e81febb8-d7bd33a7c7846e48-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7183eb9d77448fbe66833e98a2e6c314",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -410,61 +367,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:11 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.1977122Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:03 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.0988168Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "7183eb9d77448fbe66833e98a2e6c314",
- "x-ms-request-id": "207501f9-b002-001b-1521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "7183eb9d-7744-8fbe-6683-3e98a2e6c314"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableufnwhdzj/@Element",
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.1977122Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "05",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.1977122Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj/$metadata#testtableufnwhdzj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.0988168Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 05",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:06:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:06:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:06:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:06:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90005",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "5",
- "DoubleTypeProperty": 5.0,
- "IntTypeProperty": 5
+ "DoubleTypeProperty": 5,
+ "IntTypeProperty": 5,
+ "PartitionKey": "somPartition",
+ "RowKey": "05",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:04.0988168Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6be21ea124d19c44b99f5faed2e0ef6f-a0ffdac5859f7e49-00",
+ "traceparent": "00-7ad0b520dbe31241bcd086b9de7236f1-c06ed38132c5b649-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2dfaa8df4c16138408439df3ba40c99e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -491,61 +439,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:11 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.2427496Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:03 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.1817608Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "2dfaa8df4c16138408439df3ba40c99e",
- "x-ms-request-id": "20750201-b002-001b-1d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "2dfaa8df-4c16-1384-0843-9df3ba40c99e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableufnwhdzj/@Element",
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.2427496Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "06",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.2427496Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj/$metadata#testtableufnwhdzj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.1817608Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 06",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:07:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:07:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:07:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:07:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90006",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "6",
- "DoubleTypeProperty": 6.0,
- "IntTypeProperty": 6
+ "DoubleTypeProperty": 6,
+ "IntTypeProperty": 6,
+ "PartitionKey": "somPartition",
+ "RowKey": "06",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:04.1817608Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-60ea0c766fd1e845a655ca659fba2cd7-e2ab7661fee8d54c-00",
+ "traceparent": "00-e816e543f1026c46bd5dcf538164d975-33fb04bfe9131748-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "13397ebb2fdbc6b145c51a942fcfd2a6",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -572,61 +511,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:11 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.2897886Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:03 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.2550792Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "13397ebb2fdbc6b145c51a942fcfd2a6",
- "x-ms-request-id": "2075020f-b002-001b-2921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "13397ebb-2fdb-c6b1-45c5-1a942fcfd2a6"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableufnwhdzj/@Element",
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.2897886Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "07",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.2897886Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj/$metadata#testtableufnwhdzj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.2550792Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 07",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:08:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:08:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:08:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:08:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90007",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "7",
- "DoubleTypeProperty": 7.0,
- "IntTypeProperty": 7
+ "DoubleTypeProperty": 7,
+ "IntTypeProperty": 7,
+ "PartitionKey": "somPartition",
+ "RowKey": "07",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:04.2550792Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c86c07f91846a64997e35eeee24c69eb-02410b917b4c4c42-00",
+ "traceparent": "00-85289bc3f863ad45ae26e84c00a88d1f-0dda6521585ab047-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "300f30ed753251f0666f6800dacbd426",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -653,61 +583,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:11 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.3328243Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:03 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.3314696Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "300f30ed753251f0666f6800dacbd426",
- "x-ms-request-id": "20750217-b002-001b-3021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "300f30ed-7532-51f0-666f-6800dacbd426"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableufnwhdzj/@Element",
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.3328243Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "08",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.3328243Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj/$metadata#testtableufnwhdzj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.3314696Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 08",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:09:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:09:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:09:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:09:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90008",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "8",
- "DoubleTypeProperty": 8.0,
- "IntTypeProperty": 8
+ "DoubleTypeProperty": 8,
+ "IntTypeProperty": 8,
+ "PartitionKey": "somPartition",
+ "RowKey": "08",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:04.3314696Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-96b954cf8d4fc44ea3853a1d5a96567e-de978766cac10246-00",
+ "traceparent": "00-1c180ce5f89fb8468044ac2b5ec9ced3-b9393ee48e6dff47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "23dda0b9b0adb038f634e85131f0e339",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -734,61 +655,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:11 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.3778617Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:03 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.4084744Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "23dda0b9b0adb038f634e85131f0e339",
- "x-ms-request-id": "20750226-b002-001b-3d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "23dda0b9-b0ad-b038-f634-e85131f0e339"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableufnwhdzj/@Element",
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.3778617Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "09",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.3778617Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj/$metadata#testtableufnwhdzj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.4084744Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 09",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:10:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:10:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:10:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:10:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90009",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "9",
- "DoubleTypeProperty": 9.0,
- "IntTypeProperty": 9
+ "DoubleTypeProperty": 9,
+ "IntTypeProperty": 9,
+ "PartitionKey": "somPartition",
+ "RowKey": "09",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:04.4084744Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f102de4c2a3c3745bd7b4b0c2fcc5886-d36cacb5dbb9cd4c-00",
+ "traceparent": "00-2f2cc669e1bea74f8c7790d4a1f7f3cb-b00a95f7f86f754b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8905f6719930456c8ee8ac6bc6b0eb79",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -815,61 +727,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:11 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.4228995Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:03 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.4838408Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "8905f6719930456c8ee8ac6bc6b0eb79",
- "x-ms-request-id": "20750230-b002-001b-4621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "8905f671-9930-456c-8ee8-ac6bc6b0eb79"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableufnwhdzj/@Element",
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.4228995Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "10",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.4228995Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj/$metadata#testtableufnwhdzj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.4838408Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 10",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:11:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:11:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:11:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:11:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90010",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "10",
- "DoubleTypeProperty": 10.0,
- "IntTypeProperty": 10
+ "DoubleTypeProperty": 10,
+ "IntTypeProperty": 10,
+ "PartitionKey": "somPartition",
+ "RowKey": "10",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:04.4838408Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1b10806ec2045b4c906797f590efae0a-88fbfa283416b04f-00",
+ "traceparent": "00-50e627b5f25a30408581aa2193a3208c-25ecab0a22888742-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8fdaf3f0aef13df9f85e39fd8d9f1f76",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -896,61 +799,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:11 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.4669357Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:03 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.5575688Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "8fdaf3f0aef13df9f85e39fd8d9f1f76",
- "x-ms-request-id": "2075023a-b002-001b-5021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "8fdaf3f0-aef1-3df9-f85e-39fd8d9f1f76"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableufnwhdzj/@Element",
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.4669357Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "11",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.4669357Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj/$metadata#testtableufnwhdzj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.5575688Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 11",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:12:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:12:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:12:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:12:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90011",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "11",
- "DoubleTypeProperty": 11.0,
- "IntTypeProperty": 11
+ "DoubleTypeProperty": 11,
+ "IntTypeProperty": 11,
+ "PartitionKey": "somPartition",
+ "RowKey": "11",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:04.5575688Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a5f738680145da44ad996b4840c0a903-1bb9f680fa907842-00",
+ "traceparent": "00-c80a008d74124c42ab02cac9cbbdd3c9-6337057de4e07c49-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e48f2e8c4ac520f6339795c403cdea45",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -977,61 +871,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:11 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.5089709Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:03 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.6316040Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "e48f2e8c4ac520f6339795c403cdea45",
- "x-ms-request-id": "2075024c-b002-001b-6221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "e48f2e8c-4ac5-20f6-3397-95c403cdea45"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableufnwhdzj/@Element",
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.5089709Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "12",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.5089709Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj/$metadata#testtableufnwhdzj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.6316040Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 12",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:13:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:13:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:13:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:13:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90012",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "12",
- "DoubleTypeProperty": 12.0,
- "IntTypeProperty": 12
+ "DoubleTypeProperty": 12,
+ "IntTypeProperty": 12,
+ "PartitionKey": "somPartition",
+ "RowKey": "12",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:04.6316040Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-419fea1abe162f4db97b5fa21e4f3250-fa3ddc31455ef647-00",
+ "traceparent": "00-11c771039040bc4aab3aab3fd6158b96-3bd063b4ffdf1147-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3e606e495315c247fcc891d25f6eb8ee",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1058,61 +943,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:11 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.554009Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:04 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.7046152Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "3e606e495315c247fcc891d25f6eb8ee",
- "x-ms-request-id": "2075025f-b002-001b-7421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "3e606e49-5315-c247-fcc8-91d25f6eb8ee"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableufnwhdzj/@Element",
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.554009Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "13",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.554009Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj/$metadata#testtableufnwhdzj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.7046152Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 13",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:14:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:14:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:14:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:14:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90013",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "13",
- "DoubleTypeProperty": 13.0,
- "IntTypeProperty": 13
+ "DoubleTypeProperty": 13,
+ "IntTypeProperty": 13,
+ "PartitionKey": "somPartition",
+ "RowKey": "13",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:04.7046152Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-b78d059f8287b04b8ead7af00fe7461a-5f9258d92b4bb146-00",
+ "traceparent": "00-a5c0888abb6a734ca5f0d0768c99edd8-ec1f9e980afe4d4c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "97df36c80620a6b3fdb95b5a1834392a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1139,61 +1015,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:11 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.5960441Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:04 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.7805960Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "97df36c80620a6b3fdb95b5a1834392a",
- "x-ms-request-id": "20750270-b002-001b-0421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "97df36c8-0620-a6b3-fdb9-5b5a1834392a"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableufnwhdzj/@Element",
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.5960441Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "14",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.5960441Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj/$metadata#testtableufnwhdzj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.7805960Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 14",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:15:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:15:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:15:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:15:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90014",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "14",
- "DoubleTypeProperty": 14.0,
- "IntTypeProperty": 14
+ "DoubleTypeProperty": 14,
+ "IntTypeProperty": 14,
+ "PartitionKey": "somPartition",
+ "RowKey": "14",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:04.7805960Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-7d6f806e1a79cf4389600e5bebd3150b-71438233024f4244-00",
+ "traceparent": "00-8f66709be6e7184e8aa296de0844467e-74466c3d87d04e4c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1eb4f474e13e3860e7cde8fdb824c1c5",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1220,61 +1087,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:11 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.6400809Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:04 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.8562696Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "1eb4f474e13e3860e7cde8fdb824c1c5",
- "x-ms-request-id": "20750283-b002-001b-1521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "1eb4f474-e13e-3860-e7cd-e8fdb824c1c5"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableufnwhdzj/@Element",
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.6400809Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "15",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.6400809Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj/$metadata#testtableufnwhdzj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.8562696Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 15",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:16:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:16:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:16:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:16:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90015",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "15",
- "DoubleTypeProperty": 15.0,
- "IntTypeProperty": 15
+ "DoubleTypeProperty": 15,
+ "IntTypeProperty": 15,
+ "PartitionKey": "somPartition",
+ "RowKey": "15",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:04.8562696Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-b9241e76fe397d48864150b757191813-94c0d956d9000641-00",
+ "traceparent": "00-601083d75d735e4f83c66277588a3b5c-197c3ef68a108f43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "cdfba7df52ee4224bbba405bf7eda9c7",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1301,61 +1159,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:11 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.6911232Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:04 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.9327624Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "cdfba7df52ee4224bbba405bf7eda9c7",
- "x-ms-request-id": "20750291-b002-001b-2321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "cdfba7df-52ee-4224-bbba-405bf7eda9c7"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableufnwhdzj/@Element",
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.6911232Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "16",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.6911232Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj/$metadata#testtableufnwhdzj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.9327624Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 16",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:17:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:17:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:17:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:17:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90016",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "16",
- "DoubleTypeProperty": 16.0,
- "IntTypeProperty": 16
+ "DoubleTypeProperty": 16,
+ "IntTypeProperty": 16,
+ "PartitionKey": "somPartition",
+ "RowKey": "16",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:04.9327624Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6be4dd311b3c5949940ab6fc85bae863-e5c26d8ccc81234b-00",
+ "traceparent": "00-b86eb69550611f45a87a23eb70e211ed-5ee60d9ae66cfd4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6b5d678e9ab9e7afd6a6b0531eb6edd9",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1382,61 +1231,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:11 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.7341596Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:04 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A05.0104840Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "6b5d678e9ab9e7afd6a6b0531eb6edd9",
- "x-ms-request-id": "207502a0-b002-001b-3121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "6b5d678e-9ab9-e7af-d6a6-b0531eb6edd9"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableufnwhdzj/@Element",
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.7341596Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "17",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.7341596Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj/$metadata#testtableufnwhdzj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A05.0104840Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 17",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:18:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:18:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:18:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:18:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90017",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "17",
- "DoubleTypeProperty": 17.0,
- "IntTypeProperty": 17
+ "DoubleTypeProperty": 17,
+ "IntTypeProperty": 17,
+ "PartitionKey": "somPartition",
+ "RowKey": "17",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:05.0104840Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f0691909793a834b90b00483837afcde-2cd8442c20efe843-00",
+ "traceparent": "00-b2d3eba571b07a4bbbcaeb2cc3574fca-3fbc5afbfebc6e45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "717b96f86c38223ccf726284a00440fa",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1463,61 +1303,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:11 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.7781964Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:04 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A05.0867720Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "717b96f86c38223ccf726284a00440fa",
- "x-ms-request-id": "207502a9-b002-001b-3a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "717b96f8-6c38-223c-cf72-6284a00440fa"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableufnwhdzj/@Element",
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.7781964Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "18",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.7781964Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj/$metadata#testtableufnwhdzj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A05.0867720Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 18",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:19:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:19:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:19:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:19:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90018",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "18",
- "DoubleTypeProperty": 18.0,
- "IntTypeProperty": 18
+ "DoubleTypeProperty": 18,
+ "IntTypeProperty": 18,
+ "PartitionKey": "somPartition",
+ "RowKey": "18",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:05.0867720Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-2fee478962c1f3468cb6f83aebf0a43b-cea49dbbc5f7f345-00",
+ "traceparent": "00-240f0722eb3e144e98827d9c924cac9e-a1dd731f99a11244-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "516e202356c6440bf714f748a1d12304",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1544,61 +1375,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:11 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.8232341Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:04 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A05.1669512Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "516e202356c6440bf714f748a1d12304",
- "x-ms-request-id": "207502b6-b002-001b-4721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "516e2023-56c6-440b-f714-f748a1d12304"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableufnwhdzj/@Element",
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.8232341Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "19",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.8232341Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj/$metadata#testtableufnwhdzj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A05.1669512Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 19",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:20:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:20:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:20:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:20:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90019",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "19",
- "DoubleTypeProperty": 19.0,
- "IntTypeProperty": 19
+ "DoubleTypeProperty": 19,
+ "IntTypeProperty": 19,
+ "PartitionKey": "somPartition",
+ "RowKey": "19",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:05.1669512Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-3be25bf7915a304db4b0c8189683249c-6f432d46d89b9d47-00",
+ "traceparent": "00-ef7b54d3d536574b8f631b743f06144e-adc92d19dea87846-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "616367cd3872228e2a3b9b47372b47d1",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1625,697 +1447,592 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:11 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.8732768Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:04 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A05.2441608Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "616367cd3872228e2a3b9b47372b47d1",
- "x-ms-request-id": "207502cd-b002-001b-5e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "616367cd-3872-228e-2a3b-9b47372b47d1"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableufnwhdzj/@Element",
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.8732768Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "20",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.8732768Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj/$metadata#testtableufnwhdzj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A05.2441608Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 20",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:21:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:21:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:21:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:21:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90020",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "20",
- "DoubleTypeProperty": 20.0,
- "IntTypeProperty": 20
+ "DoubleTypeProperty": 20,
+ "IntTypeProperty": 20,
+ "PartitionKey": "somPartition",
+ "RowKey": "20",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:05.2441608Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "fe30b6659b47a2128a36792475f480fe",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:11 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:04 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "fe30b6659b47a2128a36792475f480fe",
- "x-ms-continuation-NextPartitionKey": "1!16!c29tUGFydGl0aW9u",
- "x-ms-continuation-NextRowKey": "1!4!MDY-",
- "x-ms-request-id": "207502de-b002-001b-6f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-continuation-NextPartitionKey": "{\u0022token\u0022:\u0022b1w3API6v\u002BIFAAAAAAAAAA==\u0022,\u0022range\u0022:{\u0022min\u0022:\u0022\u0022,\u0022max\u0022:\u0022FF\u0022}}",
+ "x-ms-continuation-NextRowKey": "NA",
+ "x-ms-request-id": "fe30b665-9b47-a212-8a36-792475f480fe"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableufnwhdzj",
"value": [
{
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.0145606Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.0145606Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A03.7963272Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:02:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "1",
- "DoubleTypeProperty": 1.0,
- "IntTypeProperty": 1
- },
- {
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.0605988Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
+ "DoubleTypeProperty": 1,
+ "IntTypeProperty": 1,
"PartitionKey": "somPartition",
- "RowKey": "02",
+ "RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.0605988Z",
+ "Timestamp": "2020-07-17T19:35:03.7963272Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A03.8747656Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 02",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:03:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:03:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:03:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:03:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "2",
- "DoubleTypeProperty": 2.0,
- "IntTypeProperty": 2
- },
- {
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.1086382Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
+ "DoubleTypeProperty": 2,
+ "IntTypeProperty": 2,
"PartitionKey": "somPartition",
- "RowKey": "03",
+ "RowKey": "02",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.1086382Z",
+ "Timestamp": "2020-07-17T19:35:03.8747656Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A03.9437832Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 03",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:04:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:04:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:04:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:04:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "3",
- "DoubleTypeProperty": 3.0,
- "IntTypeProperty": 3
- },
- {
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.153676Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
+ "DoubleTypeProperty": 3,
+ "IntTypeProperty": 3,
"PartitionKey": "somPartition",
- "RowKey": "04",
+ "RowKey": "03",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.153676Z",
+ "Timestamp": "2020-07-17T19:35:03.9437832Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.0206856Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 04",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:05:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:05:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:05:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:05:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "4",
- "DoubleTypeProperty": 4.0,
- "IntTypeProperty": 4
- },
- {
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.1977122Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
+ "DoubleTypeProperty": 4,
+ "IntTypeProperty": 4,
"PartitionKey": "somPartition",
- "RowKey": "05",
+ "RowKey": "04",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.1977122Z",
+ "Timestamp": "2020-07-17T19:35:04.0206856Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.0988168Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 05",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:06:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:06:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:06:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:06:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90005",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "5",
- "DoubleTypeProperty": 5.0,
- "IntTypeProperty": 5
+ "DoubleTypeProperty": 5,
+ "IntTypeProperty": 5,
+ "PartitionKey": "somPartition",
+ "RowKey": "05",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:04.0988168Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextPartitionKey=1%2116%21c29tUGFydGl0aW9u\u0026NextRowKey=1%214%21MDY-",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextPartitionKey=%7B%22token%22%3A%22b1w3API6v%2BIFAAAAAAAAAA%3D%3D%22%2C%22range%22%3A%7B%22min%22%3A%22%22%2C%22max%22%3A%22FF%22%7D%7D\u0026NextRowKey=NA",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "38b75e4edfa1ea87914c278bbac40dcc",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:11 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:04 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "38b75e4edfa1ea87914c278bbac40dcc",
- "x-ms-continuation-NextPartitionKey": "1!16!c29tUGFydGl0aW9u",
- "x-ms-continuation-NextRowKey": "1!4!MTE-",
- "x-ms-request-id": "207502eb-b002-001b-7c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-continuation-NextPartitionKey": "{\u0022token\u0022:\u0022b1w3API6v\u002BIKAAAAAAAAAA==\u0022,\u0022range\u0022:{\u0022min\u0022:\u0022\u0022,\u0022max\u0022:\u0022FF\u0022}}",
+ "x-ms-continuation-NextRowKey": "NA",
+ "x-ms-request-id": "38b75e4e-dfa1-ea87-914c-278bbac40dcc"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableufnwhdzj",
"value": [
{
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.2427496Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "06",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.2427496Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.1817608Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 06",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:07:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:07:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:07:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:07:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90006",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "6",
- "DoubleTypeProperty": 6.0,
- "IntTypeProperty": 6
- },
- {
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.2897886Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
+ "DoubleTypeProperty": 6,
+ "IntTypeProperty": 6,
"PartitionKey": "somPartition",
- "RowKey": "07",
+ "RowKey": "06",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.2897886Z",
+ "Timestamp": "2020-07-17T19:35:04.1817608Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.2550792Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 07",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:08:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:08:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:08:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:08:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90007",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "7",
- "DoubleTypeProperty": 7.0,
- "IntTypeProperty": 7
- },
- {
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.3328243Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
+ "DoubleTypeProperty": 7,
+ "IntTypeProperty": 7,
"PartitionKey": "somPartition",
- "RowKey": "08",
+ "RowKey": "07",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.3328243Z",
+ "Timestamp": "2020-07-17T19:35:04.2550792Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.3314696Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 08",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:09:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:09:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:09:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:09:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90008",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "8",
- "DoubleTypeProperty": 8.0,
- "IntTypeProperty": 8
- },
- {
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.3778617Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
+ "DoubleTypeProperty": 8,
+ "IntTypeProperty": 8,
"PartitionKey": "somPartition",
- "RowKey": "09",
+ "RowKey": "08",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.3778617Z",
+ "Timestamp": "2020-07-17T19:35:04.3314696Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.4084744Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 09",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:10:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:10:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:10:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:10:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90009",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "9",
- "DoubleTypeProperty": 9.0,
- "IntTypeProperty": 9
- },
- {
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.4228995Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
+ "DoubleTypeProperty": 9,
+ "IntTypeProperty": 9,
"PartitionKey": "somPartition",
- "RowKey": "10",
+ "RowKey": "09",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.4228995Z",
+ "Timestamp": "2020-07-17T19:35:04.4084744Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.4838408Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 10",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:11:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:11:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:11:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:11:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90010",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "10",
- "DoubleTypeProperty": 10.0,
- "IntTypeProperty": 10
+ "DoubleTypeProperty": 10,
+ "IntTypeProperty": 10,
+ "PartitionKey": "somPartition",
+ "RowKey": "10",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:04.4838408Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextPartitionKey=1%2116%21c29tUGFydGl0aW9u\u0026NextRowKey=1%214%21MTE-",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextPartitionKey=%7B%22token%22%3A%22b1w3API6v%2BIKAAAAAAAAAA%3D%3D%22%2C%22range%22%3A%7B%22min%22%3A%22%22%2C%22max%22%3A%22FF%22%7D%7D\u0026NextRowKey=NA",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ebe225cd25a131bd55c0d73bbf6aac36",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:11 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:04 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ebe225cd25a131bd55c0d73bbf6aac36",
- "x-ms-continuation-NextPartitionKey": "1!16!c29tUGFydGl0aW9u",
- "x-ms-continuation-NextRowKey": "1!4!MTY-",
- "x-ms-request-id": "207502fe-b002-001b-0d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-continuation-NextPartitionKey": "{\u0022token\u0022:\u0022b1w3API6v\u002BIPAAAAAAAAAA==\u0022,\u0022range\u0022:{\u0022min\u0022:\u0022\u0022,\u0022max\u0022:\u0022FF\u0022}}",
+ "x-ms-continuation-NextRowKey": "NA",
+ "x-ms-request-id": "ebe225cd-25a1-31bd-55c0-d73bbf6aac36"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableufnwhdzj",
"value": [
{
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.4669357Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "11",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.4669357Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.5575688Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 11",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:12:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:12:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:12:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:12:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90011",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "11",
- "DoubleTypeProperty": 11.0,
- "IntTypeProperty": 11
- },
- {
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.5089709Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
+ "DoubleTypeProperty": 11,
+ "IntTypeProperty": 11,
"PartitionKey": "somPartition",
- "RowKey": "12",
+ "RowKey": "11",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.5089709Z",
+ "Timestamp": "2020-07-17T19:35:04.5575688Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.6316040Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 12",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:13:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:13:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:13:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:13:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90012",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "12",
- "DoubleTypeProperty": 12.0,
- "IntTypeProperty": 12
- },
- {
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.554009Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
+ "DoubleTypeProperty": 12,
+ "IntTypeProperty": 12,
"PartitionKey": "somPartition",
- "RowKey": "13",
+ "RowKey": "12",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.554009Z",
+ "Timestamp": "2020-07-17T19:35:04.6316040Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.7046152Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 13",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:14:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:14:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:14:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:14:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90013",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "13",
- "DoubleTypeProperty": 13.0,
- "IntTypeProperty": 13
- },
- {
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.5960441Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
+ "DoubleTypeProperty": 13,
+ "IntTypeProperty": 13,
"PartitionKey": "somPartition",
- "RowKey": "14",
+ "RowKey": "13",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.5960441Z",
+ "Timestamp": "2020-07-17T19:35:04.7046152Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.7805960Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 14",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:15:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:15:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:15:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:15:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90014",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "14",
- "DoubleTypeProperty": 14.0,
- "IntTypeProperty": 14
- },
- {
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.6400809Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
+ "DoubleTypeProperty": 14,
+ "IntTypeProperty": 14,
"PartitionKey": "somPartition",
- "RowKey": "15",
+ "RowKey": "14",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.6400809Z",
+ "Timestamp": "2020-07-17T19:35:04.7805960Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.8562696Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 15",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:16:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:16:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:16:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:16:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90015",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "15",
- "DoubleTypeProperty": 15.0,
- "IntTypeProperty": 15
+ "DoubleTypeProperty": 15,
+ "IntTypeProperty": 15,
+ "PartitionKey": "somPartition",
+ "RowKey": "15",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:04.8562696Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextPartitionKey=1%2116%21c29tUGFydGl0aW9u\u0026NextRowKey=1%214%21MTY-",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableufnwhdzj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextPartitionKey=%7B%22token%22%3A%22b1w3API6v%2BIPAAAAAAAAAA%3D%3D%22%2C%22range%22%3A%7B%22min%22%3A%22%22%2C%22max%22%3A%22FF%22%7D%7D\u0026NextRowKey=NA",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d9f99dba0e7386302e456cfa7486e8c6",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:11 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:04 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "d9f99dba0e7386302e456cfa7486e8c6",
- "x-ms-request-id": "20750315-b002-001b-2121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "d9f99dba-0e73-8630-2e45-6cfa7486e8c6"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableufnwhdzj",
"value": [
{
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.6911232Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "16",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.6911232Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A04.9327624Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 16",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:17:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:17:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:17:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:17:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90016",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "16",
- "DoubleTypeProperty": 16.0,
- "IntTypeProperty": 16
- },
- {
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.7341596Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
+ "DoubleTypeProperty": 16,
+ "IntTypeProperty": 16,
"PartitionKey": "somPartition",
- "RowKey": "17",
+ "RowKey": "16",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.7341596Z",
+ "Timestamp": "2020-07-17T19:35:04.9327624Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A05.0104840Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 17",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:18:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:18:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:18:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:18:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90017",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "17",
- "DoubleTypeProperty": 17.0,
- "IntTypeProperty": 17
- },
- {
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.7781964Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
+ "DoubleTypeProperty": 17,
+ "IntTypeProperty": 17,
"PartitionKey": "somPartition",
- "RowKey": "18",
+ "RowKey": "17",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.7781964Z",
+ "Timestamp": "2020-07-17T19:35:05.0104840Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A05.0867720Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 18",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:19:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:19:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:19:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:19:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90018",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "18",
- "DoubleTypeProperty": 18.0,
- "IntTypeProperty": 18
- },
- {
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.8232341Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
+ "DoubleTypeProperty": 18,
+ "IntTypeProperty": 18,
"PartitionKey": "somPartition",
- "RowKey": "19",
+ "RowKey": "18",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.8232341Z",
+ "Timestamp": "2020-07-17T19:35:05.0867720Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A05.1669512Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 19",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:20:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:20:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:20:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:20:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90019",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "19",
- "DoubleTypeProperty": 19.0,
- "IntTypeProperty": 19
- },
- {
- "odata.type": "chrissscratch.testtableufnwhdzj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A11.8732768Z\u0027\u0022",
- "odata.editLink": "testtableufnwhdzj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
+ "DoubleTypeProperty": 19,
+ "IntTypeProperty": 19,
"PartitionKey": "somPartition",
- "RowKey": "20",
+ "RowKey": "19",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:11.8732768Z",
+ "Timestamp": "2020-07-17T19:35:05.1669512Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A05.2441608Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 20",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:21:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:21:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:21:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:21:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90020",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "20",
- "DoubleTypeProperty": 20.0,
- "IntTypeProperty": 20
+ "DoubleTypeProperty": 20,
+ "IntTypeProperty": 20,
+ "PartitionKey": "somPartition",
+ "RowKey": "20",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:05.2441608Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableufnwhdzj\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableufnwhdzj\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-467c0af95f4ee94e8b40d7ae80adfab1-31055c14715cb94b-00",
+ "traceparent": "00-0863dadae909ce4fbb9d0ca420054ba8-bc25a850730cd648-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4f57ac299511285da186e3e0084c2b27",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:12 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "4f57ac299511285da186e3e0084c2b27",
- "x-ms-request-id": "20750325-b002-001b-3121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:35:05 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "4f57ac29-9511-285d-a186-e3e0084c2b27"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "650593977",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedCustomEntitiesCanBeQueriedWithAndWithoutPagination(5)Async.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedCustomEntitiesCanBeQueriedWithAndWithoutPagination(5)Async.json
index 6d7747cf9fed..b6603bf61413 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedCustomEntitiesCanBeQueriedWithAndWithoutPagination(5)Async.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedCustomEntitiesCanBeQueriedWithAndWithoutPagination(5)Async.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-cc9b630399a7964794adb6ffc12828fd-de92c9094edfda47-00",
+ "traceparent": "00-3e48c1e0637bb6448a0da929bd08f66b-94ddf3e71f441a4f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6748b7ac0c0a42ede71648b5766b7afd",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:34 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:36 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:34 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablev67j1807\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:35 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A35.6851720Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablev67j1807\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "6748b7ac0c0a42ede71648b5766b7afd",
- "x-ms-request-id": "20751916-b002-001b-7921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "6748b7ac-0c0a-42ed-e716-48b5766b7afd"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablev67j1807\u0027)",
- "odata.editLink": "Tables(\u0027testtablev67j1807\u0027)",
- "TableName": "testtablev67j1807"
+ "TableName": "testtablev67j1807",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-0548fb149d53c94e8017f4013e771133-deb2b2bf6a524946-00",
+ "traceparent": "00-b9deff9519f46041b970b9e0f8650625-80d21f1e1230c343-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "335f62023a2591301686b3a0cd7b7fec",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:34 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:36 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -86,61 +79,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:34 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.5261501Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:35 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A36.3355144Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "335f62023a2591301686b3a0cd7b7fec",
- "x-ms-request-id": "20751921-b002-001b-0321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "335f6202-3a25-9130-1686-b3a0cd7b7fec"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablev67j1807/@Element",
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.5261501Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:34.5261501Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807/$metadata#testtablev67j1807/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A36.3355144Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:02:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "1",
- "DoubleTypeProperty": 1.0,
- "IntTypeProperty": 1
+ "DoubleTypeProperty": 1,
+ "IntTypeProperty": 1,
+ "PartitionKey": "somPartition",
+ "RowKey": "01",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:36.3355144Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a8fe09c35c4aa74697d219d75d98e9a7-53408cbc2d731840-00",
+ "traceparent": "00-c3f60c2703167945b86c783bb1f011a3-666af5d130315e4d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "bb4af69d00cadb36c7275a7076b5becc",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:34 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:36 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -167,61 +151,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:34 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.5711874Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:35 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A36.4115976Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "bb4af69d00cadb36c7275a7076b5becc",
- "x-ms-request-id": "20751930-b002-001b-1121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "bb4af69d-00ca-db36-c727-5a7076b5becc"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablev67j1807/@Element",
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.5711874Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "02",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:34.5711874Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807/$metadata#testtablev67j1807/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A36.4115976Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 02",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:03:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:03:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:03:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:03:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "2",
- "DoubleTypeProperty": 2.0,
- "IntTypeProperty": 2
+ "DoubleTypeProperty": 2,
+ "IntTypeProperty": 2,
+ "PartitionKey": "somPartition",
+ "RowKey": "02",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:36.4115976Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8ea7a8f1ced65547a8cd27451f9fff8b-e6dd13ce6fb0764d-00",
+ "traceparent": "00-e29d1367595b834aa1acce39825d3ad4-b2a48373078d6042-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "fd7b78150b6572f287b65183584c756c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:34 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:36 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -248,61 +223,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:34 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.6162244Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:35 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A36.4898312Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "fd7b78150b6572f287b65183584c756c",
- "x-ms-request-id": "20751936-b002-001b-1721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "fd7b7815-0b65-72f2-87b6-5183584c756c"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablev67j1807/@Element",
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.6162244Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "03",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:34.6162244Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807/$metadata#testtablev67j1807/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A36.4898312Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 03",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:04:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:04:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:04:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:04:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "3",
- "DoubleTypeProperty": 3.0,
- "IntTypeProperty": 3
+ "DoubleTypeProperty": 3,
+ "IntTypeProperty": 3,
+ "PartitionKey": "somPartition",
+ "RowKey": "03",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:36.4898312Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f0d4071677f35b41a5384c8b65120f17-3359491011993545-00",
+ "traceparent": "00-f0000563a8193f4ea733b2f55294ce92-f72e5a883fdb2b48-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "80185c97be2001322c846bfedfbf1b60",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:34 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:36 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -329,61 +295,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:34 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.6612622Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:35 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A36.5648904Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "80185c97be2001322c846bfedfbf1b60",
- "x-ms-request-id": "2075193e-b002-001b-1f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "80185c97-be20-0132-2c84-6bfedfbf1b60"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablev67j1807/@Element",
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.6612622Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "04",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:34.6612622Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807/$metadata#testtablev67j1807/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A36.5648904Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 04",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:05:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:05:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:05:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:05:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "4",
- "DoubleTypeProperty": 4.0,
- "IntTypeProperty": 4
+ "DoubleTypeProperty": 4,
+ "IntTypeProperty": 4,
+ "PartitionKey": "somPartition",
+ "RowKey": "04",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:36.5648904Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-770e364d27a7054f81b0d55515977d8a-bc0394ac02c06249-00",
+ "traceparent": "00-7a0798b5e3147e40b0f0136d4ddc85e3-34fb250058a8914b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "548be7c78100928704d83413afb2827a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:34 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -410,61 +367,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:34 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.7032967Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:35 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A36.6388232Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "548be7c78100928704d83413afb2827a",
- "x-ms-request-id": "2075194b-b002-001b-2c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "548be7c7-8100-9287-04d8-3413afb2827a"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablev67j1807/@Element",
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.7032967Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "05",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:34.7032967Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807/$metadata#testtablev67j1807/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A36.6388232Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 05",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:06:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:06:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:06:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:06:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90005",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "5",
- "DoubleTypeProperty": 5.0,
- "IntTypeProperty": 5
+ "DoubleTypeProperty": 5,
+ "IntTypeProperty": 5,
+ "PartitionKey": "somPartition",
+ "RowKey": "05",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:36.6388232Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d33d39857114784e818fb12a20a0606d-26e20670d29ef34c-00",
+ "traceparent": "00-75707ca86201a149bce5df312e60834d-f80a88532817434d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "19d9eeb13e9d57ab4579d1e09ff493c8",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:35 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -491,61 +439,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:34 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.7483345Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:35 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A36.7137800Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "19d9eeb13e9d57ab4579d1e09ff493c8",
- "x-ms-request-id": "2075195a-b002-001b-3b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "19d9eeb1-3e9d-57ab-4579-d1e09ff493c8"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablev67j1807/@Element",
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.7483345Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "06",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:34.7483345Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807/$metadata#testtablev67j1807/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A36.7137800Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 06",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:07:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:07:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:07:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:07:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90006",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "6",
- "DoubleTypeProperty": 6.0,
- "IntTypeProperty": 6
+ "DoubleTypeProperty": 6,
+ "IntTypeProperty": 6,
+ "PartitionKey": "somPartition",
+ "RowKey": "06",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:36.7137800Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c2ffcf303431194fa919501c571f93dc-f2ca163a94766a4f-00",
+ "traceparent": "00-2c33a919cbbd9444b0e0ca4b991135a7-44ddf2d68c0a2747-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "71bcf09b20c1156bd4867c488a1e5179",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:35 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -572,61 +511,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:34 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.8103864Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:35 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A36.7899656Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "71bcf09b20c1156bd4867c488a1e5179",
- "x-ms-request-id": "20751971-b002-001b-5021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "71bcf09b-20c1-156b-d486-7c488a1e5179"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablev67j1807/@Element",
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.8103864Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "07",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:34.8103864Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807/$metadata#testtablev67j1807/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A36.7899656Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 07",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:08:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:08:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:08:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:08:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90007",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "7",
- "DoubleTypeProperty": 7.0,
- "IntTypeProperty": 7
+ "DoubleTypeProperty": 7,
+ "IntTypeProperty": 7,
+ "PartitionKey": "somPartition",
+ "RowKey": "07",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:36.7899656Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-852303afe185694d8c9072889bcd8f61-23dd8c898b161541-00",
+ "traceparent": "00-a95dd4cf32b2bb4b99fe0041299ad636-d40dce011bbd954d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f04cf00101e589c33c340e86b0a6f20f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:35 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -653,61 +583,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:34 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.8554238Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:35 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A36.8634888Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "f04cf00101e589c33c340e86b0a6f20f",
- "x-ms-request-id": "20751986-b002-001b-6521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "f04cf001-01e5-89c3-3c34-0e86b0a6f20f"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablev67j1807/@Element",
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.8554238Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "08",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:34.8554238Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807/$metadata#testtablev67j1807/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A36.8634888Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 08",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:09:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:09:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:09:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:09:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90008",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "8",
- "DoubleTypeProperty": 8.0,
- "IntTypeProperty": 8
+ "DoubleTypeProperty": 8,
+ "IntTypeProperty": 8,
+ "PartitionKey": "somPartition",
+ "RowKey": "08",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:36.8634888Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c56b26d9a788e34ba2825fe5cae3f3fc-024108efa9f0674e-00",
+ "traceparent": "00-4dd0890c79f2724eb8c0275cabd8aefe-b28ba03d6f02d545-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "be786c4511f691b982c44516c263cc26",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:35 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -734,61 +655,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:34 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.8954562Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:36 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A36.9382408Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "be786c4511f691b982c44516c263cc26",
- "x-ms-request-id": "20751994-b002-001b-7121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "be786c45-11f6-91b9-82c4-4516c263cc26"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablev67j1807/@Element",
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.8954562Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "09",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:34.8954562Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807/$metadata#testtablev67j1807/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A36.9382408Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 09",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:10:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:10:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:10:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:10:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90009",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "9",
- "DoubleTypeProperty": 9.0,
- "IntTypeProperty": 9
+ "DoubleTypeProperty": 9,
+ "IntTypeProperty": 9,
+ "PartitionKey": "somPartition",
+ "RowKey": "09",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:36.9382408Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-061ba8bbee7f4143992c741928f30664-ed4c4ef245415e4b-00",
+ "traceparent": "00-d534887c1e310646b57b2268ae785439-d372c473ec7ee548-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "aedf5728a2a79ae22c33348d11e5652e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:35 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -815,61 +727,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:34 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.9414957Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:36 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A37.0117640Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "aedf5728a2a79ae22c33348d11e5652e",
- "x-ms-request-id": "207519a4-b002-001b-0121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "aedf5728-a2a7-9ae2-2c33-348d11e5652e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablev67j1807/@Element",
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.9414957Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "10",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:34.9414957Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807/$metadata#testtablev67j1807/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A37.0117640Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 10",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:11:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:11:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:11:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:11:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90010",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "10",
- "DoubleTypeProperty": 10.0,
- "IntTypeProperty": 10
+ "DoubleTypeProperty": 10,
+ "IntTypeProperty": 10,
+ "PartitionKey": "somPartition",
+ "RowKey": "10",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:37.0117640Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f641e5118a7ce04c8a6af838c041a3cf-53cf06f2b28e6647-00",
+ "traceparent": "00-b5c8ac6f83d1c44a96ffe8db51feb51d-9557231028969746-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1d036c9492a6f08337bb6e21bcacc6d9",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:35 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -896,61 +799,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:34 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.9825285Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:36 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A37.0865160Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "1d036c9492a6f08337bb6e21bcacc6d9",
- "x-ms-request-id": "207519ab-b002-001b-0821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "1d036c94-92a6-f083-37bb-6e21bcacc6d9"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablev67j1807/@Element",
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.9825285Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "11",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:34.9825285Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807/$metadata#testtablev67j1807/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A37.0865160Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 11",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:12:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:12:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:12:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:12:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90011",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "11",
- "DoubleTypeProperty": 11.0,
- "IntTypeProperty": 11
+ "DoubleTypeProperty": 11,
+ "IntTypeProperty": 11,
+ "PartitionKey": "somPartition",
+ "RowKey": "11",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:37.0865160Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-5bd39e91005bfa47bc8171a09c34c2a6-d7f2637bfda8dc4d-00",
+ "traceparent": "00-5a75d404d09acb498e7dac21236c901b-2790628f0c7cdb40-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "585ee76743c7a2688ade92c3dc2b7f9c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:35 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -977,61 +871,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:34 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A35.0365742Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:36 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A37.1622920Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "585ee76743c7a2688ade92c3dc2b7f9c",
- "x-ms-request-id": "207519b7-b002-001b-1421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "585ee767-43c7-a268-8ade-92c3dc2b7f9c"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablev67j1807/@Element",
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A35.0365742Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "12",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:35.0365742Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807/$metadata#testtablev67j1807/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A37.1622920Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 12",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:13:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:13:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:13:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:13:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90012",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "12",
- "DoubleTypeProperty": 12.0,
- "IntTypeProperty": 12
+ "DoubleTypeProperty": 12,
+ "IntTypeProperty": 12,
+ "PartitionKey": "somPartition",
+ "RowKey": "12",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:37.1622920Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-2b8650685d976244bfa80e5be278c671-b789fc4128cf9449-00",
+ "traceparent": "00-294f4df21e89e349a7ec09fcb3da8c2c-76a6efc08c596047-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5582165faf5f9580d4ee77ec33c0dd80",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:35 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1058,61 +943,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:34 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A35.082612Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:36 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A37.2391944Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "5582165faf5f9580d4ee77ec33c0dd80",
- "x-ms-request-id": "207519d1-b002-001b-2a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "5582165f-af5f-9580-d4ee-77ec33c0dd80"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablev67j1807/@Element",
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A35.082612Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "13",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:35.082612Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807/$metadata#testtablev67j1807/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A37.2391944Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 13",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:14:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:14:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:14:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:14:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90013",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "13",
- "DoubleTypeProperty": 13.0,
- "IntTypeProperty": 13
+ "DoubleTypeProperty": 13,
+ "IntTypeProperty": 13,
+ "PartitionKey": "somPartition",
+ "RowKey": "13",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:37.2391944Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-836786f9c9d0b5499ffdbb1bf47c9bbe-3a369868acccf44d-00",
+ "traceparent": "00-d3fb5ce537998048b9d7740409f4a13e-204700590b119c4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2a255b6c0c875067046093c800c0130b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:35 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1139,61 +1015,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:34 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A35.1256473Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:36 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A37.3148680Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "2a255b6c0c875067046093c800c0130b",
- "x-ms-request-id": "207519e4-b002-001b-3c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "2a255b6c-0c87-5067-0460-93c800c0130b"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablev67j1807/@Element",
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A35.1256473Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "14",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:35.1256473Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807/$metadata#testtablev67j1807/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A37.3148680Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 14",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:15:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:15:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:15:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:15:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90014",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "14",
- "DoubleTypeProperty": 14.0,
- "IntTypeProperty": 14
+ "DoubleTypeProperty": 14,
+ "IntTypeProperty": 14,
+ "PartitionKey": "somPartition",
+ "RowKey": "14",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:37.3148680Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-aa897e53a34f314eb6820fd878bebec2-69c497deaa479342-00",
+ "traceparent": "00-9cd19bc6a6faaf42a82a516edd88362c-17c0a18feb8e514b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a5c2d13c712ab87967c883d8cc7c6fc9",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:35 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1220,61 +1087,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:34 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A35.168683Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:36 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A37.3905416Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a5c2d13c712ab87967c883d8cc7c6fc9",
- "x-ms-request-id": "207519f3-b002-001b-4921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "a5c2d13c-712a-b879-67c8-83d8cc7c6fc9"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablev67j1807/@Element",
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A35.168683Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "15",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:35.168683Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807/$metadata#testtablev67j1807/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A37.3905416Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 15",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:16:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:16:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:16:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:16:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90015",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "15",
- "DoubleTypeProperty": 15.0,
- "IntTypeProperty": 15
+ "DoubleTypeProperty": 15,
+ "IntTypeProperty": 15,
+ "PartitionKey": "somPartition",
+ "RowKey": "15",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:37.3905416Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-cfe80170996b2144bc0ce1aea5f91bb7-4318806db90af344-00",
+ "traceparent": "00-3569b6040954204286ac1fca4d604df8-8158390de5c00040-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8157120054055215af3151fe1bb79414",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:35 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1301,61 +1159,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:34 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A35.2207271Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:36 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A37.4666248Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "8157120054055215af3151fe1bb79414",
- "x-ms-request-id": "207519f9-b002-001b-4f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "81571200-5405-5215-af31-51fe1bb79414"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablev67j1807/@Element",
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A35.2207271Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "16",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:35.2207271Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807/$metadata#testtablev67j1807/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A37.4666248Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 16",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:17:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:17:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:17:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:17:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90016",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "16",
- "DoubleTypeProperty": 16.0,
- "IntTypeProperty": 16
+ "DoubleTypeProperty": 16,
+ "IntTypeProperty": 16,
+ "PartitionKey": "somPartition",
+ "RowKey": "16",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:37.4666248Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-38bd51f444c64e40960521fd645468d9-bcaa82fc344e0447-00",
+ "traceparent": "00-c45a0e1ebcd4cf44b2a60c27ecb2ca69-c522127007b58d41-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "62af6bda37fefa55e16dc2be888e8488",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:35 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1382,61 +1231,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:35 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A35.2667653Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:36 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A37.5439368Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "62af6bda37fefa55e16dc2be888e8488",
- "x-ms-request-id": "207519ff-b002-001b-5421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "62af6bda-37fe-fa55-e16d-c2be888e8488"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablev67j1807/@Element",
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A35.2667653Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "17",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:35.2667653Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807/$metadata#testtablev67j1807/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A37.5439368Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 17",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:18:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:18:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:18:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:18:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90017",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "17",
- "DoubleTypeProperty": 17.0,
- "IntTypeProperty": 17
+ "DoubleTypeProperty": 17,
+ "IntTypeProperty": 17,
+ "PartitionKey": "somPartition",
+ "RowKey": "17",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:37.5439368Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-51b9a9d57916264ebb4cfa8132a832c7-6ac25e7e091ef646-00",
+ "traceparent": "00-538d501b8293a347987f13dfc842a011-a86a577adafc5f43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "eec7caf19268e705bc6ff6f81f7a9caf",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:35 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:38 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1463,61 +1303,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:35 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A35.3168064Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:36 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A37.6176648Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "eec7caf19268e705bc6ff6f81f7a9caf",
- "x-ms-request-id": "20751a0e-b002-001b-5d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "eec7caf1-9268-e705-bc6f-f6f81f7a9caf"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablev67j1807/@Element",
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A35.3168064Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "18",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:35.3168064Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807/$metadata#testtablev67j1807/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A37.6176648Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 18",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:19:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:19:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:19:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:19:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90018",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "18",
- "DoubleTypeProperty": 18.0,
- "IntTypeProperty": 18
+ "DoubleTypeProperty": 18,
+ "IntTypeProperty": 18,
+ "PartitionKey": "somPartition",
+ "RowKey": "18",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:37.6176648Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-16a4c17ab8fda84a8a19bccbc5c91585-2ec5aa6d9c56aa44-00",
+ "traceparent": "00-bda2f99f3d467843af86075a31f0b83a-1ed216e2bea6d64f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "60fd6f330dccc8cabc5c9f989256c920",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:35 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:38 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1544,61 +1375,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:35 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A35.3608425Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:36 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A37.6922120Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "60fd6f330dccc8cabc5c9f989256c920",
- "x-ms-request-id": "20751a16-b002-001b-6321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "60fd6f33-0dcc-c8ca-bc5c-9f989256c920"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablev67j1807/@Element",
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A35.3608425Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "19",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:35.3608425Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807/$metadata#testtablev67j1807/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A37.6922120Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 19",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:20:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:20:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:20:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:20:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90019",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "19",
- "DoubleTypeProperty": 19.0,
- "IntTypeProperty": 19
+ "DoubleTypeProperty": 19,
+ "IntTypeProperty": 19,
+ "PartitionKey": "somPartition",
+ "RowKey": "19",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:37.6922120Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c0af0aab92774d49865a60b2591350f5-52fb795e23a23c46-00",
+ "traceparent": "00-d726627b41f2264485857474d67576ad-cfc54ee5f9e4ea45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "510dc9ada6ef48ab65c8a58f415dda67",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:35 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:38 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1625,697 +1447,592 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:35 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A35.4048795Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:36 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A37.7670664Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "510dc9ada6ef48ab65c8a58f415dda67",
- "x-ms-request-id": "20751a24-b002-001b-6d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "510dc9ad-a6ef-48ab-65c8-a58f415dda67"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablev67j1807/@Element",
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A35.4048795Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "20",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:35.4048795Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807/$metadata#testtablev67j1807/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A37.7670664Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 20",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:21:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:21:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:21:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:21:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90020",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "20",
- "DoubleTypeProperty": 20.0,
- "IntTypeProperty": 20
+ "DoubleTypeProperty": 20,
+ "IntTypeProperty": 20,
+ "PartitionKey": "somPartition",
+ "RowKey": "20",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:37.7670664Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablev67j1807()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "198b12d12490e4bb00ff320cf36d5465",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:35 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:38 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:35 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:36 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "198b12d12490e4bb00ff320cf36d5465",
- "x-ms-continuation-NextPartitionKey": "1!16!c29tUGFydGl0aW9u",
- "x-ms-continuation-NextRowKey": "1!4!MDY-",
- "x-ms-request-id": "20751a2e-b002-001b-7721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-continuation-NextPartitionKey": "{\u0022token\u0022:\u0022b1w3ALlalDcFAAAAAAAAAA==\u0022,\u0022range\u0022:{\u0022min\u0022:\u0022\u0022,\u0022max\u0022:\u0022FF\u0022}}",
+ "x-ms-continuation-NextRowKey": "NA",
+ "x-ms-request-id": "198b12d1-2490-e4bb-00ff-320cf36d5465"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablev67j1807",
"value": [
{
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.5261501Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:34.5261501Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A36.3355144Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:02:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "1",
- "DoubleTypeProperty": 1.0,
- "IntTypeProperty": 1
- },
- {
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.5711874Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
+ "DoubleTypeProperty": 1,
+ "IntTypeProperty": 1,
"PartitionKey": "somPartition",
- "RowKey": "02",
+ "RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:34.5711874Z",
+ "Timestamp": "2020-07-17T19:36:36.3355144Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A36.4115976Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 02",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:03:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:03:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:03:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:03:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "2",
- "DoubleTypeProperty": 2.0,
- "IntTypeProperty": 2
- },
- {
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.6162244Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
+ "DoubleTypeProperty": 2,
+ "IntTypeProperty": 2,
"PartitionKey": "somPartition",
- "RowKey": "03",
+ "RowKey": "02",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:34.6162244Z",
+ "Timestamp": "2020-07-17T19:36:36.4115976Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A36.4898312Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 03",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:04:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:04:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:04:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:04:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "3",
- "DoubleTypeProperty": 3.0,
- "IntTypeProperty": 3
- },
- {
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.6612622Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
+ "DoubleTypeProperty": 3,
+ "IntTypeProperty": 3,
"PartitionKey": "somPartition",
- "RowKey": "04",
+ "RowKey": "03",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:34.6612622Z",
+ "Timestamp": "2020-07-17T19:36:36.4898312Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A36.5648904Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 04",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:05:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:05:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:05:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:05:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "4",
- "DoubleTypeProperty": 4.0,
- "IntTypeProperty": 4
- },
- {
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.7032967Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
+ "DoubleTypeProperty": 4,
+ "IntTypeProperty": 4,
"PartitionKey": "somPartition",
- "RowKey": "05",
+ "RowKey": "04",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:34.7032967Z",
+ "Timestamp": "2020-07-17T19:36:36.5648904Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A36.6388232Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 05",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:06:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:06:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:06:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:06:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90005",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "5",
- "DoubleTypeProperty": 5.0,
- "IntTypeProperty": 5
+ "DoubleTypeProperty": 5,
+ "IntTypeProperty": 5,
+ "PartitionKey": "somPartition",
+ "RowKey": "05",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:36.6388232Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablev67j1807()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextPartitionKey=1%2116%21c29tUGFydGl0aW9u\u0026NextRowKey=1%214%21MDY-",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextPartitionKey=%7B%22token%22%3A%22b1w3ALlalDcFAAAAAAAAAA%3D%3D%22%2C%22range%22%3A%7B%22min%22%3A%22%22%2C%22max%22%3A%22FF%22%7D%7D\u0026NextRowKey=NA",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "564bd5a54b6d8dbfc3b5fb03673a875e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:35 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:38 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:35 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:36 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "564bd5a54b6d8dbfc3b5fb03673a875e",
- "x-ms-continuation-NextPartitionKey": "1!16!c29tUGFydGl0aW9u",
- "x-ms-continuation-NextRowKey": "1!4!MTE-",
- "x-ms-request-id": "20751a48-b002-001b-0d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-continuation-NextPartitionKey": "{\u0022token\u0022:\u0022b1w3ALlalDcKAAAAAAAAAA==\u0022,\u0022range\u0022:{\u0022min\u0022:\u0022\u0022,\u0022max\u0022:\u0022FF\u0022}}",
+ "x-ms-continuation-NextRowKey": "NA",
+ "x-ms-request-id": "564bd5a5-4b6d-8dbf-c3b5-fb03673a875e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablev67j1807",
"value": [
{
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.7483345Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "06",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:34.7483345Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A36.7137800Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 06",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:07:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:07:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:07:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:07:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90006",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "6",
- "DoubleTypeProperty": 6.0,
- "IntTypeProperty": 6
- },
- {
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.8103864Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
+ "DoubleTypeProperty": 6,
+ "IntTypeProperty": 6,
"PartitionKey": "somPartition",
- "RowKey": "07",
+ "RowKey": "06",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:34.8103864Z",
+ "Timestamp": "2020-07-17T19:36:36.7137800Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A36.7899656Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 07",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:08:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:08:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:08:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:08:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90007",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "7",
- "DoubleTypeProperty": 7.0,
- "IntTypeProperty": 7
- },
- {
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.8554238Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
+ "DoubleTypeProperty": 7,
+ "IntTypeProperty": 7,
"PartitionKey": "somPartition",
- "RowKey": "08",
+ "RowKey": "07",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:34.8554238Z",
+ "Timestamp": "2020-07-17T19:36:36.7899656Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A36.8634888Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 08",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:09:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:09:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:09:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:09:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90008",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "8",
- "DoubleTypeProperty": 8.0,
- "IntTypeProperty": 8
- },
- {
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.8954562Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
+ "DoubleTypeProperty": 8,
+ "IntTypeProperty": 8,
"PartitionKey": "somPartition",
- "RowKey": "09",
+ "RowKey": "08",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:34.8954562Z",
+ "Timestamp": "2020-07-17T19:36:36.8634888Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A36.9382408Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 09",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:10:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:10:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:10:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:10:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90009",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "9",
- "DoubleTypeProperty": 9.0,
- "IntTypeProperty": 9
- },
- {
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.9414957Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
+ "DoubleTypeProperty": 9,
+ "IntTypeProperty": 9,
"PartitionKey": "somPartition",
- "RowKey": "10",
+ "RowKey": "09",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:34.9414957Z",
+ "Timestamp": "2020-07-17T19:36:36.9382408Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A37.0117640Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 10",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:11:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:11:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:11:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:11:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90010",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "10",
- "DoubleTypeProperty": 10.0,
- "IntTypeProperty": 10
+ "DoubleTypeProperty": 10,
+ "IntTypeProperty": 10,
+ "PartitionKey": "somPartition",
+ "RowKey": "10",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:37.0117640Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablev67j1807()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextPartitionKey=1%2116%21c29tUGFydGl0aW9u\u0026NextRowKey=1%214%21MTE-",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextPartitionKey=%7B%22token%22%3A%22b1w3ALlalDcKAAAAAAAAAA%3D%3D%22%2C%22range%22%3A%7B%22min%22%3A%22%22%2C%22max%22%3A%22FF%22%7D%7D\u0026NextRowKey=NA",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7fc63881b0cb888f0d2850f0749f55f7",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:35 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:38 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:35 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:38 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "7fc63881b0cb888f0d2850f0749f55f7",
- "x-ms-continuation-NextPartitionKey": "1!16!c29tUGFydGl0aW9u",
- "x-ms-continuation-NextRowKey": "1!4!MTY-",
- "x-ms-request-id": "20751a6e-b002-001b-3021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-continuation-NextPartitionKey": "{\u0022token\u0022:\u0022b1w3ALlalDcPAAAAAAAAAA==\u0022,\u0022range\u0022:{\u0022min\u0022:\u0022\u0022,\u0022max\u0022:\u0022FF\u0022}}",
+ "x-ms-continuation-NextRowKey": "NA",
+ "x-ms-request-id": "7fc63881-b0cb-888f-0d28-50f0749f55f7"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablev67j1807",
"value": [
{
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.9825285Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "11",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:34.9825285Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A37.0865160Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 11",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:12:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:12:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:12:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:12:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90011",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "11",
- "DoubleTypeProperty": 11.0,
- "IntTypeProperty": 11
- },
- {
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A35.0365742Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
+ "DoubleTypeProperty": 11,
+ "IntTypeProperty": 11,
"PartitionKey": "somPartition",
- "RowKey": "12",
+ "RowKey": "11",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:35.0365742Z",
+ "Timestamp": "2020-07-17T19:36:37.0865160Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A37.1622920Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 12",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:13:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:13:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:13:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:13:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90012",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "12",
- "DoubleTypeProperty": 12.0,
- "IntTypeProperty": 12
- },
- {
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A35.082612Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
+ "DoubleTypeProperty": 12,
+ "IntTypeProperty": 12,
"PartitionKey": "somPartition",
- "RowKey": "13",
+ "RowKey": "12",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:35.082612Z",
+ "Timestamp": "2020-07-17T19:36:37.1622920Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A37.2391944Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 13",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:14:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:14:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:14:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:14:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90013",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "13",
- "DoubleTypeProperty": 13.0,
- "IntTypeProperty": 13
- },
- {
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A35.1256473Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
+ "DoubleTypeProperty": 13,
+ "IntTypeProperty": 13,
"PartitionKey": "somPartition",
- "RowKey": "14",
+ "RowKey": "13",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:35.1256473Z",
+ "Timestamp": "2020-07-17T19:36:37.2391944Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A37.3148680Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 14",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:15:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:15:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:15:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:15:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90014",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "14",
- "DoubleTypeProperty": 14.0,
- "IntTypeProperty": 14
- },
- {
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A35.168683Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
+ "DoubleTypeProperty": 14,
+ "IntTypeProperty": 14,
"PartitionKey": "somPartition",
- "RowKey": "15",
+ "RowKey": "14",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:35.168683Z",
+ "Timestamp": "2020-07-17T19:36:37.3148680Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A37.3905416Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 15",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:16:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:16:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:16:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:16:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90015",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "15",
- "DoubleTypeProperty": 15.0,
- "IntTypeProperty": 15
+ "DoubleTypeProperty": 15,
+ "IntTypeProperty": 15,
+ "PartitionKey": "somPartition",
+ "RowKey": "15",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:37.3905416Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablev67j1807()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextPartitionKey=1%2116%21c29tUGFydGl0aW9u\u0026NextRowKey=1%214%21MTY-",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablev67j1807()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextPartitionKey=%7B%22token%22%3A%22b1w3ALlalDcPAAAAAAAAAA%3D%3D%22%2C%22range%22%3A%7B%22min%22%3A%22%22%2C%22max%22%3A%22FF%22%7D%7D\u0026NextRowKey=NA",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6be94073841286f952fd55db28b87dc5",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:35 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:38 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:35 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:38 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "6be94073841286f952fd55db28b87dc5",
- "x-ms-request-id": "20751a85-b002-001b-4421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "6be94073-8412-86f9-52fd-55db28b87dc5"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablev67j1807",
"value": [
{
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A35.2207271Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "16",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:35.2207271Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A37.4666248Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 16",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:17:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:17:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:17:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:17:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90016",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "16",
- "DoubleTypeProperty": 16.0,
- "IntTypeProperty": 16
- },
- {
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A35.2667653Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
+ "DoubleTypeProperty": 16,
+ "IntTypeProperty": 16,
"PartitionKey": "somPartition",
- "RowKey": "17",
+ "RowKey": "16",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:35.2667653Z",
+ "Timestamp": "2020-07-17T19:36:37.4666248Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A37.5439368Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 17",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:18:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:18:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:18:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:18:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90017",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "17",
- "DoubleTypeProperty": 17.0,
- "IntTypeProperty": 17
- },
- {
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A35.3168064Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
+ "DoubleTypeProperty": 17,
+ "IntTypeProperty": 17,
"PartitionKey": "somPartition",
- "RowKey": "18",
+ "RowKey": "17",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:35.3168064Z",
+ "Timestamp": "2020-07-17T19:36:37.5439368Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A37.6176648Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 18",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:19:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:19:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:19:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:19:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90018",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "18",
- "DoubleTypeProperty": 18.0,
- "IntTypeProperty": 18
- },
- {
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A35.3608425Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
+ "DoubleTypeProperty": 18,
+ "IntTypeProperty": 18,
"PartitionKey": "somPartition",
- "RowKey": "19",
+ "RowKey": "18",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:35.3608425Z",
+ "Timestamp": "2020-07-17T19:36:37.6176648Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A37.6922120Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 19",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:20:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:20:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:20:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:20:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90019",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "19",
- "DoubleTypeProperty": 19.0,
- "IntTypeProperty": 19
- },
- {
- "odata.type": "chrissscratch.testtablev67j1807",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A35.4048795Z\u0027\u0022",
- "odata.editLink": "testtablev67j1807(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
+ "DoubleTypeProperty": 19,
+ "IntTypeProperty": 19,
"PartitionKey": "somPartition",
- "RowKey": "20",
+ "RowKey": "19",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:35.4048795Z",
+ "Timestamp": "2020-07-17T19:36:37.6922120Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A37.7670664Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 20",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:21:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:21:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:21:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:21:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90020",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "20",
- "DoubleTypeProperty": 20.0,
- "IntTypeProperty": 20
+ "DoubleTypeProperty": 20,
+ "IntTypeProperty": 20,
+ "PartitionKey": "somPartition",
+ "RowKey": "20",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:37.7670664Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablev67j1807\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablev67j1807\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-753097128f8cd64db751295fe3dc7d7f-e36c29de6c325745-00",
+ "traceparent": "00-73b6948505d224468986756aea4535de-77247a0232c33646-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "bb8ad378d4a7f59a46c24944facf1924",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:36 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:38 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:35 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "bb8ad378d4a7f59a46c24944facf1924",
- "x-ms-request-id": "20751aab-b002-001b-6921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:36:38 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "bb8ad378-d4a7-f59a-46c2-4944facf1924"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "9906478",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedCustomEntitiesCanBeQueriedWithAndWithoutPagination(null).json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedCustomEntitiesCanBeQueriedWithAndWithoutPagination(null).json
index 9b73331dba1b..7d6194c2a97e 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedCustomEntitiesCanBeQueriedWithAndWithoutPagination(null).json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedCustomEntitiesCanBeQueriedWithAndWithoutPagination(null).json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c926e3cc0bf7dc4496a48aa267b99aca-4d81faf6594f9243-00",
+ "traceparent": "00-419d6f8bb9a4464dbdba48e8b2b0d11e-9d3e8c0501f4e645-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "35121de5d088ad9a6f6477acd29727e9",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:09 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableye1cvobn\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:01 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A00.5350920Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableye1cvobn\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "35121de5d088ad9a6f6477acd29727e9",
- "x-ms-request-id": "207500b7-b002-001b-7021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "35121de5-d088-ad9a-6f64-77acd29727e9"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableye1cvobn\u0027)",
- "odata.editLink": "Tables(\u0027testtableye1cvobn\u0027)",
- "TableName": "testtableye1cvobn"
+ "TableName": "testtableye1cvobn",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-eb461b17ddef80419e00e03b1a63ebf4-77b2b6a0f963864a-00",
+ "traceparent": "00-dff9b9ab7716de458a144212ecbc89b1-407f649b7f05ec47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "dc7bc1d368b9c0e6e7184f90bb4c93c4",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -86,61 +79,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:09 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A09.9226509Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:01 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A01.1880968Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "dc7bc1d368b9c0e6e7184f90bb4c93c4",
- "x-ms-request-id": "207500c4-b002-001b-7a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "dc7bc1d3-68b9-c0e6-e718-4f90bb4c93c4"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableye1cvobn/@Element",
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A09.9226509Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:09.9226509Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn/$metadata#testtableye1cvobn/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A01.1880968Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:02:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "1",
- "DoubleTypeProperty": 1.0,
- "IntTypeProperty": 1
+ "DoubleTypeProperty": 1,
+ "IntTypeProperty": 1,
+ "PartitionKey": "somPartition",
+ "RowKey": "01",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:01.1880968Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-691f67f5be2c4545b2cf1de15e1db0f8-8ba7a708a9dcea4d-00",
+ "traceparent": "00-4df2ac8666d97e4d83ca3467df49b3b3-a5cb333c4a710041-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f8b8a77ad866a6b1c5ef684737d515d8",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -167,61 +151,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:09 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A09.9626844Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:01 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A01.2611080Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "f8b8a77ad866a6b1c5ef684737d515d8",
- "x-ms-request-id": "207500c9-b002-001b-7f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "f8b8a77a-d866-a6b1-c5ef-684737d515d8"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableye1cvobn/@Element",
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A09.9626844Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "02",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:09.9626844Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn/$metadata#testtableye1cvobn/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A01.2611080Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 02",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:03:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:03:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:03:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:03:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "2",
- "DoubleTypeProperty": 2.0,
- "IntTypeProperty": 2
+ "DoubleTypeProperty": 2,
+ "IntTypeProperty": 2,
+ "PartitionKey": "somPartition",
+ "RowKey": "02",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:01.2611080Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-301035b30a5fc3459faaa668d675376f-76d9a4955a5c304a-00",
+ "traceparent": "00-d57fcaf1a74fa74cb39c226a88be3efc-4826baca48c0c14a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "dd682509978d7c7437524e6f810af223",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -248,61 +223,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:09 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.0057213Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:01 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A01.3359624Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "dd682509978d7c7437524e6f810af223",
- "x-ms-request-id": "207500cf-b002-001b-0421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "dd682509-978d-7c74-3752-4e6f810af223"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableye1cvobn/@Element",
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.0057213Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "03",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:10.0057213Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn/$metadata#testtableye1cvobn/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A01.3359624Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 03",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:04:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:04:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:04:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:04:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "3",
- "DoubleTypeProperty": 3.0,
- "IntTypeProperty": 3
+ "DoubleTypeProperty": 3,
+ "IntTypeProperty": 3,
+ "PartitionKey": "somPartition",
+ "RowKey": "03",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:01.3359624Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e5a7d34d4ebc5f45a6b8246c5592c973-dc7f33a2912f3148-00",
+ "traceparent": "00-5c018fa4fbeca543b0195b6223f701b4-682ab9d5894d1249-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2b32b2d12fdefa8210d516c9ff9e8812",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -329,61 +295,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:09 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.0527597Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:01 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A01.4117384Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "2b32b2d12fdefa8210d516c9ff9e8812",
- "x-ms-request-id": "207500d6-b002-001b-0b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "2b32b2d1-2fde-fa82-10d5-16c9ff9e8812"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableye1cvobn/@Element",
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.0527597Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "04",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:10.0527597Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn/$metadata#testtableye1cvobn/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A01.4117384Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 04",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:05:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:05:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:05:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:05:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "4",
- "DoubleTypeProperty": 4.0,
- "IntTypeProperty": 4
+ "DoubleTypeProperty": 4,
+ "IntTypeProperty": 4,
+ "PartitionKey": "somPartition",
+ "RowKey": "04",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:01.4117384Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-3d6ea9f3228099478e230e23aab0ee5a-4ce417a459f4ca47-00",
+ "traceparent": "00-4a3e2123611ad14b9ae685c05082d112-bf631047e714db47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "95867702b5e4e237323cc1138a4125bb",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -410,61 +367,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:09 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.1058037Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:01 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A01.4877192Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "95867702b5e4e237323cc1138a4125bb",
- "x-ms-request-id": "207500ea-b002-001b-1a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "95867702-b5e4-e237-323c-c1138a4125bb"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableye1cvobn/@Element",
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.1058037Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "05",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:10.1058037Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn/$metadata#testtableye1cvobn/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A01.4877192Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 05",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:06:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:06:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:06:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:06:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90005",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "5",
- "DoubleTypeProperty": 5.0,
- "IntTypeProperty": 5
+ "DoubleTypeProperty": 5,
+ "IntTypeProperty": 5,
+ "PartitionKey": "somPartition",
+ "RowKey": "05",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:01.4877192Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-13de83491e494246b9d1de501ddfaa22-ed296e3e11875440-00",
+ "traceparent": "00-010a272cc1c5234e8321919356b7c233-5a597463363b9340-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "847545fdeaa2dafaa26dcdb780ab7c99",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -491,61 +439,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:09 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.1488401Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:01 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A01.5711752Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "847545fdeaa2dafaa26dcdb780ab7c99",
- "x-ms-request-id": "207500f3-b002-001b-2221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "847545fd-eaa2-dafa-a26d-cdb780ab7c99"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableye1cvobn/@Element",
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.1488401Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "06",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:10.1488401Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn/$metadata#testtableye1cvobn/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A01.5711752Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 06",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:07:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:07:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:07:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:07:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90006",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "6",
- "DoubleTypeProperty": 6.0,
- "IntTypeProperty": 6
+ "DoubleTypeProperty": 6,
+ "IntTypeProperty": 6,
+ "PartitionKey": "somPartition",
+ "RowKey": "06",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:01.5711752Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ee45cb02c20c864da03b73e8d4a49c11-38179810a1167744-00",
+ "traceparent": "00-bc4b68e62ca28c489d169d0388bcfea5-f4490d4975335f41-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "096d3cc95c831c3f7b4ff8a26e6f70ce",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -572,61 +511,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:10 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.201884Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:01 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A01.6464392Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "096d3cc95c831c3f7b4ff8a26e6f70ce",
- "x-ms-request-id": "20750101-b002-001b-3021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "096d3cc9-5c83-1c3f-7b4f-f8a26e6f70ce"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableye1cvobn/@Element",
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.201884Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "07",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:10.201884Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn/$metadata#testtableye1cvobn/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A01.6464392Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 07",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:08:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:08:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:08:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:08:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90007",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "7",
- "DoubleTypeProperty": 7.0,
- "IntTypeProperty": 7
+ "DoubleTypeProperty": 7,
+ "IntTypeProperty": 7,
+ "PartitionKey": "somPartition",
+ "RowKey": "07",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:01.6464392Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d8f6f925d3bc5845bf5f76190c953ef2-ef0de513e4d7d04a-00",
+ "traceparent": "00-396dde0430fe5a478bda8536a89c066c-2abac12cde097840-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "bacb5bb00428186f7dacf376e77f6187",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -653,61 +583,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:10 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.2459212Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:01 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A01.7219080Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "bacb5bb00428186f7dacf376e77f6187",
- "x-ms-request-id": "20750108-b002-001b-3621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "bacb5bb0-0428-186f-7dac-f376e77f6187"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableye1cvobn/@Element",
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.2459212Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "08",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:10.2459212Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn/$metadata#testtableye1cvobn/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A01.7219080Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 08",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:09:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:09:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:09:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:09:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90008",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "8",
- "DoubleTypeProperty": 8.0,
- "IntTypeProperty": 8
+ "DoubleTypeProperty": 8,
+ "IntTypeProperty": 8,
+ "PartitionKey": "somPartition",
+ "RowKey": "08",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:01.7219080Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-4fcc221123360345bf72eb6a1088baab-d72caca9027e2e4f-00",
+ "traceparent": "00-e00f53915c4ee3478d679085ca0fc0c4-aa8da5e87f166046-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4e4927bf1bd4a13706590852f1576c33",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -734,61 +655,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:10 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.2899581Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:01 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A01.8009608Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "4e4927bf1bd4a13706590852f1576c33",
- "x-ms-request-id": "20750116-b002-001b-4221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "4e4927bf-1bd4-a137-0659-0852f1576c33"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableye1cvobn/@Element",
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.2899581Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "09",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:10.2899581Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn/$metadata#testtableye1cvobn/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A01.8009608Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 09",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:10:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:10:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:10:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:10:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90009",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "9",
- "DoubleTypeProperty": 9.0,
- "IntTypeProperty": 9
+ "DoubleTypeProperty": 9,
+ "IntTypeProperty": 9,
+ "PartitionKey": "somPartition",
+ "RowKey": "09",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:01.8009608Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e607090dbf340444b3d09209e62d5caf-326424fe37636048-00",
+ "traceparent": "00-aa12c17280bd5e418700d601faaf52cb-0ea64798ac8a7f49-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2407fffdc1dfc571cc548cd669c835fc",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -815,61 +727,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:10 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.3339944Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:01 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A01.8756104Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "2407fffdc1dfc571cc548cd669c835fc",
- "x-ms-request-id": "2075011f-b002-001b-4a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "2407fffd-c1df-c571-cc54-8cd669c835fc"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableye1cvobn/@Element",
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.3339944Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "10",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:10.3339944Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn/$metadata#testtableye1cvobn/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A01.8756104Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 10",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:11:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:11:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:11:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:11:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90010",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "10",
- "DoubleTypeProperty": 10.0,
- "IntTypeProperty": 10
+ "DoubleTypeProperty": 10,
+ "IntTypeProperty": 10,
+ "PartitionKey": "somPartition",
+ "RowKey": "10",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:01.8756104Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-0609befd9d39a3429f12f8e6761e0b89-31133bf0ca7e3948-00",
+ "traceparent": "00-326faede8644cc45bc9147390a66773f-340dad148588bc41-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "46e271ee212595fa232ab4cefb1c2625",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -896,61 +799,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:10 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.3740279Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:01 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A01.9477000Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "46e271ee212595fa232ab4cefb1c2625",
- "x-ms-request-id": "20750123-b002-001b-4e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "46e271ee-2125-95fa-232a-b4cefb1c2625"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableye1cvobn/@Element",
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.3740279Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "11",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:10.3740279Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn/$metadata#testtableye1cvobn/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A01.9477000Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 11",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:12:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:12:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:12:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:12:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90011",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "11",
- "DoubleTypeProperty": 11.0,
- "IntTypeProperty": 11
+ "DoubleTypeProperty": 11,
+ "IntTypeProperty": 11,
+ "PartitionKey": "somPartition",
+ "RowKey": "11",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:01.9477000Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ededde7bfd4053429b8333d588dd6e5c-1b34cc1666500844-00",
+ "traceparent": "00-7414dab5ec3636458ba32af5867de12c-147f808f8ac51c40-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e779bf403c78fda7b684817f8e61383e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -977,61 +871,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:10 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.4180647Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:01 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A02.0231688Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "e779bf403c78fda7b684817f8e61383e",
- "x-ms-request-id": "20750129-b002-001b-5321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "e779bf40-3c78-fda7-b684-817f8e61383e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableye1cvobn/@Element",
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.4180647Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "12",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:10.4180647Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn/$metadata#testtableye1cvobn/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A02.0231688Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 12",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:13:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:13:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:13:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:13:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90012",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "12",
- "DoubleTypeProperty": 12.0,
- "IntTypeProperty": 12
+ "DoubleTypeProperty": 12,
+ "IntTypeProperty": 12,
+ "PartitionKey": "somPartition",
+ "RowKey": "12",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:02.0231688Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-3933235f62f8f04db977ae8cf989d65a-356e79e7813b1347-00",
+ "traceparent": "00-2a012d35a097934ca6f213a0dedc1b9b-f345c1f21c9cbd44-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "80640c232575db0e057100b40da2c9b0",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1058,61 +943,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:10 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.4601003Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:02 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A02.0990472Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "80640c232575db0e057100b40da2c9b0",
- "x-ms-request-id": "2075012e-b002-001b-5721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "80640c23-2575-db0e-0571-00b40da2c9b0"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableye1cvobn/@Element",
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.4601003Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "13",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:10.4601003Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn/$metadata#testtableye1cvobn/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A02.0990472Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 13",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:14:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:14:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:14:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:14:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90013",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "13",
- "DoubleTypeProperty": 13.0,
- "IntTypeProperty": 13
+ "DoubleTypeProperty": 13,
+ "IntTypeProperty": 13,
+ "PartitionKey": "somPartition",
+ "RowKey": "13",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:02.0990472Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-5318eefdd202544a8b8430ccdecf8d05-03f1ea8dac61ca41-00",
+ "traceparent": "00-5ad249ca210bd54fb0c3177a84f68e00-984a4184498eff4f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a996672e4d4eb184c9e490a0a07a06c2",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1139,61 +1015,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:10 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.5031369Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:02 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A02.1742088Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a996672e4d4eb184c9e490a0a07a06c2",
- "x-ms-request-id": "20750137-b002-001b-6021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "a996672e-4d4e-b184-c9e4-90a0a07a06c2"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableye1cvobn/@Element",
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.5031369Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "14",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:10.5031369Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn/$metadata#testtableye1cvobn/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A02.1742088Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 14",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:15:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:15:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:15:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:15:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90014",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "14",
- "DoubleTypeProperty": 14.0,
- "IntTypeProperty": 14
+ "DoubleTypeProperty": 14,
+ "IntTypeProperty": 14,
+ "PartitionKey": "somPartition",
+ "RowKey": "14",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:02.1742088Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f2916c27a58dca4c840a387c8df77506-75798a6bff77cc4f-00",
+ "traceparent": "00-e138cee1a5c287438897332924c6a266-37eed69b95f04242-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "eeab75f2a6b71ab0b19ee2063bf3ef13",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1220,61 +1087,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:10 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.5481734Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:02 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A02.2507016Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "eeab75f2a6b71ab0b19ee2063bf3ef13",
- "x-ms-request-id": "2075013f-b002-001b-6721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "eeab75f2-a6b7-1ab0-b19e-e2063bf3ef13"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableye1cvobn/@Element",
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.5481734Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "15",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:10.5481734Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn/$metadata#testtableye1cvobn/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A02.2507016Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 15",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:16:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:16:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:16:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:16:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90015",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "15",
- "DoubleTypeProperty": 15.0,
- "IntTypeProperty": 15
+ "DoubleTypeProperty": 15,
+ "IntTypeProperty": 15,
+ "PartitionKey": "somPartition",
+ "RowKey": "15",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:02.2507016Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-63641e7806cc19499aea6441e6cbe749-496a090de586ae40-00",
+ "traceparent": "00-ce9fd4989740e0469fb657569347daa0-5b593d50503e7448-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2751d1ba8ecbd5ef88b3b690956d3a8a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1301,61 +1159,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:10 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.5932108Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:02 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A02.3245320Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "2751d1ba8ecbd5ef88b3b690956d3a8a",
- "x-ms-request-id": "2075014a-b002-001b-7221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "2751d1ba-8ecb-d5ef-88b3-b690956d3a8a"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableye1cvobn/@Element",
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.5932108Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "16",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:10.5932108Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn/$metadata#testtableye1cvobn/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A02.3245320Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 16",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:17:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:17:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:17:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:17:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90016",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "16",
- "DoubleTypeProperty": 16.0,
- "IntTypeProperty": 16
+ "DoubleTypeProperty": 16,
+ "IntTypeProperty": 16,
+ "PartitionKey": "somPartition",
+ "RowKey": "16",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:02.3245320Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-0e1bba7c33b9f746b2ca9d26afed72b2-909e5676fe63b24a-00",
+ "traceparent": "00-df64d0ce3120ac4b97dbe9f2eed779e4-8ad8e445ebdafb46-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "98c23e6bdbf788f8b77bf7b06b7d75d6",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1382,61 +1231,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:10 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.6362465Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:02 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A02.3997960Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "98c23e6bdbf788f8b77bf7b06b7d75d6",
- "x-ms-request-id": "20750161-b002-001b-0821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "98c23e6b-dbf7-88f8-b77b-f7b06b7d75d6"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableye1cvobn/@Element",
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.6362465Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "17",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:10.6362465Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn/$metadata#testtableye1cvobn/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A02.3997960Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 17",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:18:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:18:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:18:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:18:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90017",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "17",
- "DoubleTypeProperty": 17.0,
- "IntTypeProperty": 17
+ "DoubleTypeProperty": 17,
+ "IntTypeProperty": 17,
+ "PartitionKey": "somPartition",
+ "RowKey": "17",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:02.3997960Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-40ac643cc234d04d9a15bee53f5ecc76-e342dd1083387340-00",
+ "traceparent": "00-81bab05f35f10641acfbe728ab9f8601-4df38023f4e82542-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "cfe67cf4df2963f786d56603ef1f8544",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1463,61 +1303,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:10 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.684286Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:02 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A02.4770056Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "cfe67cf4df2963f786d56603ef1f8544",
- "x-ms-request-id": "20750170-b002-001b-1721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "cfe67cf4-df29-63f7-86d5-6603ef1f8544"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableye1cvobn/@Element",
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.684286Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "18",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:10.684286Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn/$metadata#testtableye1cvobn/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A02.4770056Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 18",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:19:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:19:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:19:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:19:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90018",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "18",
- "DoubleTypeProperty": 18.0,
- "IntTypeProperty": 18
+ "DoubleTypeProperty": 18,
+ "IntTypeProperty": 18,
+ "PartitionKey": "somPartition",
+ "RowKey": "18",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:02.4770056Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-de3596787d8599419cbd5c5dc84996bf-f708868fe4c3024e-00",
+ "traceparent": "00-bbfefbd30de71d4fa9e067afefe04652-91631dc924a41844-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "fd9b57635730df1cd8c9704f973e6a0a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1544,61 +1375,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:10 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.7303242Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:02 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A02.5515528Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "fd9b57635730df1cd8c9704f973e6a0a",
- "x-ms-request-id": "20750184-b002-001b-2b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "fd9b5763-5730-df1c-d8c9-704f973e6a0a"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableye1cvobn/@Element",
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.7303242Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "19",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:10.7303242Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn/$metadata#testtableye1cvobn/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A02.5515528Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 19",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:20:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:20:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:20:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:20:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90019",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "19",
- "DoubleTypeProperty": 19.0,
- "IntTypeProperty": 19
+ "DoubleTypeProperty": 19,
+ "IntTypeProperty": 19,
+ "PartitionKey": "somPartition",
+ "RowKey": "19",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:02.5515528Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6d33121c221af34ea5f0663fe71c62de-b6be4fa33743b744-00",
+ "traceparent": "00-0b467b264b5bad4584da5774be73c8a1-41c5d6dbfc6ae54a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "189be03e6b878b61465f112174f49897",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1625,580 +1447,496 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:10 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.7783645Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:02 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A02.6255880Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "189be03e6b878b61465f112174f49897",
- "x-ms-request-id": "2075018f-b002-001b-3621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "189be03e-6b87-8b61-465f-112174f49897"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableye1cvobn/@Element",
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.7783645Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "20",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:10.7783645Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn/$metadata#testtableye1cvobn/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A02.6255880Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 20",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:21:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:21:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:21:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:21:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90020",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "20",
- "DoubleTypeProperty": 20.0,
- "IntTypeProperty": 20
+ "DoubleTypeProperty": 20,
+ "IntTypeProperty": 20,
+ "PartitionKey": "somPartition",
+ "RowKey": "20",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:02.6255880Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableye1cvobn()?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableye1cvobn()?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "134db3f577e29da65f06f6606fa7cc47",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:10 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:02 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "134db3f577e29da65f06f6606fa7cc47",
- "x-ms-request-id": "207501a3-b002-001b-4921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "134db3f5-77e2-9da6-5f06-f6606fa7cc47"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableye1cvobn",
"value": [
{
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A09.9226509Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:09.9226509Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A01.1880968Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:02:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "1",
- "DoubleTypeProperty": 1.0,
- "IntTypeProperty": 1
- },
- {
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A09.9626844Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
+ "DoubleTypeProperty": 1,
+ "IntTypeProperty": 1,
"PartitionKey": "somPartition",
- "RowKey": "02",
+ "RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:09.9626844Z",
+ "Timestamp": "2020-07-17T19:35:01.1880968Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A01.2611080Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 02",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:03:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:03:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:03:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:03:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "2",
- "DoubleTypeProperty": 2.0,
- "IntTypeProperty": 2
- },
- {
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.0057213Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
+ "DoubleTypeProperty": 2,
+ "IntTypeProperty": 2,
"PartitionKey": "somPartition",
- "RowKey": "03",
+ "RowKey": "02",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:10.0057213Z",
+ "Timestamp": "2020-07-17T19:35:01.2611080Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A01.3359624Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 03",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:04:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:04:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:04:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:04:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "3",
- "DoubleTypeProperty": 3.0,
- "IntTypeProperty": 3
- },
- {
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.0527597Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
+ "DoubleTypeProperty": 3,
+ "IntTypeProperty": 3,
"PartitionKey": "somPartition",
- "RowKey": "04",
+ "RowKey": "03",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:10.0527597Z",
+ "Timestamp": "2020-07-17T19:35:01.3359624Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A01.4117384Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 04",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:05:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:05:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:05:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:05:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "4",
- "DoubleTypeProperty": 4.0,
- "IntTypeProperty": 4
- },
- {
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.1058037Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
+ "DoubleTypeProperty": 4,
+ "IntTypeProperty": 4,
"PartitionKey": "somPartition",
- "RowKey": "05",
+ "RowKey": "04",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:10.1058037Z",
+ "Timestamp": "2020-07-17T19:35:01.4117384Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A01.4877192Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 05",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:06:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:06:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:06:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:06:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90005",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "5",
- "DoubleTypeProperty": 5.0,
- "IntTypeProperty": 5
- },
- {
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.1488401Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
+ "DoubleTypeProperty": 5,
+ "IntTypeProperty": 5,
"PartitionKey": "somPartition",
- "RowKey": "06",
+ "RowKey": "05",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:10.1488401Z",
+ "Timestamp": "2020-07-17T19:35:01.4877192Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A01.5711752Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 06",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:07:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:07:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:07:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:07:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90006",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "6",
- "DoubleTypeProperty": 6.0,
- "IntTypeProperty": 6
- },
- {
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.201884Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
+ "DoubleTypeProperty": 6,
+ "IntTypeProperty": 6,
"PartitionKey": "somPartition",
- "RowKey": "07",
+ "RowKey": "06",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:10.201884Z",
+ "Timestamp": "2020-07-17T19:35:01.5711752Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A01.6464392Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 07",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:08:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:08:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:08:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:08:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90007",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "7",
- "DoubleTypeProperty": 7.0,
- "IntTypeProperty": 7
- },
- {
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.2459212Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
+ "DoubleTypeProperty": 7,
+ "IntTypeProperty": 7,
"PartitionKey": "somPartition",
- "RowKey": "08",
+ "RowKey": "07",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:10.2459212Z",
+ "Timestamp": "2020-07-17T19:35:01.6464392Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A01.7219080Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 08",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:09:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:09:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:09:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:09:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90008",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "8",
- "DoubleTypeProperty": 8.0,
- "IntTypeProperty": 8
- },
- {
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.2899581Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
+ "DoubleTypeProperty": 8,
+ "IntTypeProperty": 8,
"PartitionKey": "somPartition",
- "RowKey": "09",
+ "RowKey": "08",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:10.2899581Z",
+ "Timestamp": "2020-07-17T19:35:01.7219080Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A01.8009608Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 09",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:10:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:10:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:10:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:10:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90009",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "9",
- "DoubleTypeProperty": 9.0,
- "IntTypeProperty": 9
- },
- {
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.3339944Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
+ "DoubleTypeProperty": 9,
+ "IntTypeProperty": 9,
"PartitionKey": "somPartition",
- "RowKey": "10",
+ "RowKey": "09",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:10.3339944Z",
+ "Timestamp": "2020-07-17T19:35:01.8009608Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A01.8756104Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 10",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:11:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:11:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:11:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:11:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90010",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "10",
- "DoubleTypeProperty": 10.0,
- "IntTypeProperty": 10
- },
- {
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.3740279Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
+ "DoubleTypeProperty": 10,
+ "IntTypeProperty": 10,
"PartitionKey": "somPartition",
- "RowKey": "11",
+ "RowKey": "10",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:10.3740279Z",
+ "Timestamp": "2020-07-17T19:35:01.8756104Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A01.9477000Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 11",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:12:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:12:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:12:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:12:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90011",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "11",
- "DoubleTypeProperty": 11.0,
- "IntTypeProperty": 11
- },
- {
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.4180647Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
+ "DoubleTypeProperty": 11,
+ "IntTypeProperty": 11,
"PartitionKey": "somPartition",
- "RowKey": "12",
+ "RowKey": "11",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:10.4180647Z",
+ "Timestamp": "2020-07-17T19:35:01.9477000Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A02.0231688Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 12",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:13:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:13:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:13:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:13:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90012",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "12",
- "DoubleTypeProperty": 12.0,
- "IntTypeProperty": 12
- },
- {
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.4601003Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
+ "DoubleTypeProperty": 12,
+ "IntTypeProperty": 12,
"PartitionKey": "somPartition",
- "RowKey": "13",
+ "RowKey": "12",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:10.4601003Z",
+ "Timestamp": "2020-07-17T19:35:02.0231688Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A02.0990472Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 13",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:14:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:14:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:14:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:14:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90013",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "13",
- "DoubleTypeProperty": 13.0,
- "IntTypeProperty": 13
- },
- {
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.5031369Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
+ "DoubleTypeProperty": 13,
+ "IntTypeProperty": 13,
"PartitionKey": "somPartition",
- "RowKey": "14",
+ "RowKey": "13",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:10.5031369Z",
+ "Timestamp": "2020-07-17T19:35:02.0990472Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A02.1742088Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 14",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:15:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:15:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:15:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:15:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90014",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "14",
- "DoubleTypeProperty": 14.0,
- "IntTypeProperty": 14
- },
- {
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.5481734Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
+ "DoubleTypeProperty": 14,
+ "IntTypeProperty": 14,
"PartitionKey": "somPartition",
- "RowKey": "15",
+ "RowKey": "14",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:10.5481734Z",
+ "Timestamp": "2020-07-17T19:35:02.1742088Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A02.2507016Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 15",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:16:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:16:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:16:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:16:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90015",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "15",
- "DoubleTypeProperty": 15.0,
- "IntTypeProperty": 15
- },
- {
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.5932108Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
+ "DoubleTypeProperty": 15,
+ "IntTypeProperty": 15,
"PartitionKey": "somPartition",
- "RowKey": "16",
+ "RowKey": "15",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:10.5932108Z",
+ "Timestamp": "2020-07-17T19:35:02.2507016Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A02.3245320Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 16",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:17:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:17:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:17:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:17:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90016",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "16",
- "DoubleTypeProperty": 16.0,
- "IntTypeProperty": 16
- },
- {
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.6362465Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
+ "DoubleTypeProperty": 16,
+ "IntTypeProperty": 16,
"PartitionKey": "somPartition",
- "RowKey": "17",
+ "RowKey": "16",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:10.6362465Z",
+ "Timestamp": "2020-07-17T19:35:02.3245320Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A02.3997960Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 17",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:18:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:18:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:18:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:18:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90017",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "17",
- "DoubleTypeProperty": 17.0,
- "IntTypeProperty": 17
- },
- {
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.684286Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
+ "DoubleTypeProperty": 17,
+ "IntTypeProperty": 17,
"PartitionKey": "somPartition",
- "RowKey": "18",
+ "RowKey": "17",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:10.684286Z",
+ "Timestamp": "2020-07-17T19:35:02.3997960Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A02.4770056Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 18",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:19:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:19:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:19:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:19:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90018",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "18",
- "DoubleTypeProperty": 18.0,
- "IntTypeProperty": 18
- },
- {
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.7303242Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
+ "DoubleTypeProperty": 18,
+ "IntTypeProperty": 18,
"PartitionKey": "somPartition",
- "RowKey": "19",
+ "RowKey": "18",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:10.7303242Z",
+ "Timestamp": "2020-07-17T19:35:02.4770056Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A02.5515528Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 19",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:20:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:20:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:20:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:20:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90019",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "19",
- "DoubleTypeProperty": 19.0,
- "IntTypeProperty": 19
- },
- {
- "odata.type": "chrissscratch.testtableye1cvobn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A10.7783645Z\u0027\u0022",
- "odata.editLink": "testtableye1cvobn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
+ "DoubleTypeProperty": 19,
+ "IntTypeProperty": 19,
"PartitionKey": "somPartition",
- "RowKey": "20",
+ "RowKey": "19",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:10.7783645Z",
+ "Timestamp": "2020-07-17T19:35:02.5515528Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A02.6255880Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 20",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:21:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:21:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:21:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:21:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90020",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "20",
- "DoubleTypeProperty": 20.0,
- "IntTypeProperty": 20
+ "DoubleTypeProperty": 20,
+ "IntTypeProperty": 20,
+ "PartitionKey": "somPartition",
+ "RowKey": "20",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:02.6255880Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableye1cvobn\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableye1cvobn\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-1604b4acb5179048a14edfc48003edf8-7df87b291513b942-00",
+ "traceparent": "00-790f48f3e0e19a499bcf415fcfbfee26-4c9c1c909787734e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0fc55b6a6c84f7bcf60fb7d045fb6be3",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:10 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "0fc55b6a6c84f7bcf60fb7d045fb6be3",
- "x-ms-request-id": "207501be-b002-001b-6421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:35:02 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "0fc55b6a-6c84-f7bc-f60f-b7d045fb6be3"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "681702688",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedCustomEntitiesCanBeQueriedWithAndWithoutPagination(null)Async.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedCustomEntitiesCanBeQueriedWithAndWithoutPagination(null)Async.json
index 001aff69a427..72d6d73a553b 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedCustomEntitiesCanBeQueriedWithAndWithoutPagination(null)Async.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedCustomEntitiesCanBeQueriedWithAndWithoutPagination(null)Async.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-29de839995c1244894398efcb1a120f8-20d1fb14ebf5d24c-00",
+ "traceparent": "00-aef0f6209e60934aaa9ce77b1d6b8746-7285664fc70fdb4d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1352e3cf9406f10899620eb86574a4f1",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:33 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:12:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:33 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable89ykktyv\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 21:12:54 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A54.4589832Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable89ykktyv\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "1352e3cf9406f10899620eb86574a4f1",
- "x-ms-request-id": "207517e2-b002-001b-5021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "1352e3cf-9406-f108-9962-0eb86574a4f1"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable89ykktyv\u0027)",
- "odata.editLink": "Tables(\u0027testtable89ykktyv\u0027)",
- "TableName": "testtable89ykktyv"
+ "TableName": "testtable89ykktyv",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f6263de9969d9c4b912495d47df51bbd-a424d058f4f88849-00",
+ "traceparent": "00-11211867327d2a489213789bb7632483-43cbc73609257f4d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2421ff242bc4504c659f673fe586bcfd",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:33 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:12:55 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -86,61 +79,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:33 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.4172291Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 21:12:54 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.0327304Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "2421ff242bc4504c659f673fe586bcfd",
- "x-ms-request-id": "207517f0-b002-001b-5d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "2421ff24-2bc4-504c-659f-673fe586bcfd"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable89ykktyv/@Element",
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.4172291Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:33.4172291Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv/$metadata#testtable89ykktyv/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.0327304Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:02:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "1",
- "DoubleTypeProperty": 1.0,
- "IntTypeProperty": 1
+ "DoubleTypeProperty": 1,
+ "IntTypeProperty": 1,
+ "PartitionKey": "somPartition",
+ "RowKey": "01",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T21:12:55.0327304Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a4f6bd21a53ee34a96b3e0c6664ac281-fbd43c1746436c4b-00",
+ "traceparent": "00-cfd8c3a9c4d3074f999d63da55832141-8b059fcff51f9a40-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7a1f06afd6152a01518ec9bc7b88eb7b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:33 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:12:55 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -167,61 +151,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:33 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.4622669Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 21:12:54 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.1114760Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "7a1f06afd6152a01518ec9bc7b88eb7b",
- "x-ms-request-id": "20751801-b002-001b-6e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "7a1f06af-d615-2a01-518e-c9bc7b88eb7b"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable89ykktyv/@Element",
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.4622669Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "02",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:33.4622669Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv/$metadata#testtable89ykktyv/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.1114760Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 02",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:03:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:03:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:03:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:03:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "2",
- "DoubleTypeProperty": 2.0,
- "IntTypeProperty": 2
+ "DoubleTypeProperty": 2,
+ "IntTypeProperty": 2,
+ "PartitionKey": "somPartition",
+ "RowKey": "02",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T21:12:55.1114760Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e4be3dd7208c394d9859ae591e06b73e-9b7a99f1d2f37e45-00",
+ "traceparent": "00-274d034db5336b4382a3b129acf8df12-e82d222f23843a40-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5975b41520e2a46c9601ad662cc80c13",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:33 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:12:55 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -248,61 +223,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:33 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.506303Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 21:12:54 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.1885832Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "5975b41520e2a46c9601ad662cc80c13",
- "x-ms-request-id": "20751807-b002-001b-7421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "5975b415-20e2-a46c-9601-ad662cc80c13"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable89ykktyv/@Element",
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.506303Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "03",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:33.506303Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv/$metadata#testtable89ykktyv/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.1885832Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 03",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:04:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:04:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:04:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:04:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "3",
- "DoubleTypeProperty": 3.0,
- "IntTypeProperty": 3
+ "DoubleTypeProperty": 3,
+ "IntTypeProperty": 3,
+ "PartitionKey": "somPartition",
+ "RowKey": "03",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T21:12:55.1885832Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-b3859904add8674784b7f6f549081c72-b6c19121f7751b41-00",
+ "traceparent": "00-2f1a0a6b1672114ea69d3315c07ab5f1-5c2159a593ba564a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5f0810a629554ddbfdf6d2366290d5dd",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:33 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:12:55 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -329,61 +295,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:33 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.55034Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 21:12:54 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.2631304Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "5f0810a629554ddbfdf6d2366290d5dd",
- "x-ms-request-id": "20751810-b002-001b-7d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "5f0810a6-2955-4ddb-fdf6-d2366290d5dd"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable89ykktyv/@Element",
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.55034Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "04",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:33.55034Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv/$metadata#testtable89ykktyv/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.2631304Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 04",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:05:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:05:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:05:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:05:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "4",
- "DoubleTypeProperty": 4.0,
- "IntTypeProperty": 4
+ "DoubleTypeProperty": 4,
+ "IntTypeProperty": 4,
+ "PartitionKey": "somPartition",
+ "RowKey": "04",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T21:12:55.2631304Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-90c15c56172d8c43bc9cdb988eb7e242-3231c3ae798fea43-00",
+ "traceparent": "00-8e8bbfd56588214c9481c6057da485cb-6953dcdf183da642-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3029ecb363118e1b9a7be313289bfd88",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:33 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:12:55 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -410,61 +367,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:33 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.6043853Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 21:12:54 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.3387016Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "3029ecb363118e1b9a7be313289bfd88",
- "x-ms-request-id": "20751820-b002-001b-0c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "3029ecb3-6311-8e1b-9a7b-e313289bfd88"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable89ykktyv/@Element",
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.6043853Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "05",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:33.6043853Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv/$metadata#testtable89ykktyv/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.3387016Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 05",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:06:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:06:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:06:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:06:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90005",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "5",
- "DoubleTypeProperty": 5.0,
- "IntTypeProperty": 5
+ "DoubleTypeProperty": 5,
+ "IntTypeProperty": 5,
+ "PartitionKey": "somPartition",
+ "RowKey": "05",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T21:12:55.3387016Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a3440e4c9f4f6b449e76dcd9180aa70d-f43b11474b15e243-00",
+ "traceparent": "00-600b902d3c9ea0478caa9e437e68d172-4f4c200b25980043-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6a16b6818c7fec25d8285beb4d354206",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:33 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:12:55 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -491,61 +439,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:33 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.6644351Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 21:12:54 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.4136584Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "6a16b6818c7fec25d8285beb4d354206",
- "x-ms-request-id": "20751830-b002-001b-1b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "6a16b681-8c7f-ec25-d828-5beb4d354206"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable89ykktyv/@Element",
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.6644351Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "06",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:33.6644351Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv/$metadata#testtable89ykktyv/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.4136584Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 06",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:07:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:07:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:07:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:07:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90006",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "6",
- "DoubleTypeProperty": 6.0,
- "IntTypeProperty": 6
+ "DoubleTypeProperty": 6,
+ "IntTypeProperty": 6,
+ "PartitionKey": "somPartition",
+ "RowKey": "06",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T21:12:55.4136584Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-be6dd4d80b40634cbc5eebdad701532e-8b85f8ba62c00d45-00",
+ "traceparent": "00-bc59e7881e0f124592b15b4cc9596e44-cc73decfc8eb884c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "40b3d02bdc9e4202f579c5da45c72461",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:34 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:12:55 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -572,61 +511,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:33 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.7184796Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 21:12:54 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.4900488Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "40b3d02bdc9e4202f579c5da45c72461",
- "x-ms-request-id": "2075183c-b002-001b-2721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "40b3d02b-dc9e-4202-f579-c5da45c72461"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable89ykktyv/@Element",
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.7184796Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "07",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:33.7184796Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv/$metadata#testtable89ykktyv/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.4900488Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 07",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:08:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:08:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:08:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:08:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90007",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "7",
- "DoubleTypeProperty": 7.0,
- "IntTypeProperty": 7
+ "DoubleTypeProperty": 7,
+ "IntTypeProperty": 7,
+ "PartitionKey": "somPartition",
+ "RowKey": "07",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T21:12:55.4900488Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-10ffbf8e0afb374a9e961b0c1f28c42b-0c148dcd0d7af04c-00",
+ "traceparent": "00-6e854a2d942caf4b9a686f4490ade191-3a3c75f95624eb4d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "abb44af86a79265dc63d57e9072f4164",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:34 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:12:55 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -653,61 +583,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:33 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.7665195Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 21:12:54 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.5658248Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "abb44af86a79265dc63d57e9072f4164",
- "x-ms-request-id": "2075184e-b002-001b-3721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "abb44af8-6a79-265d-c63d-57e9072f4164"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable89ykktyv/@Element",
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.7665195Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "08",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:33.7665195Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv/$metadata#testtable89ykktyv/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.5658248Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 08",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:09:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:09:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:09:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:09:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90008",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "8",
- "DoubleTypeProperty": 8.0,
- "IntTypeProperty": 8
+ "DoubleTypeProperty": 8,
+ "IntTypeProperty": 8,
+ "PartitionKey": "somPartition",
+ "RowKey": "08",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T21:12:55.5658248Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-212218e260170b48b2a67459fab9304f-49bd25bbfa16f144-00",
+ "traceparent": "00-6639013975fc4c4ab974abac60d27c4e-c260242a55103d41-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "58e8dd39bde7a5e9b4d37505c74aa610",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:34 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:12:55 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -734,61 +655,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:33 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.8075535Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 21:12:54 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.6421128Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "58e8dd39bde7a5e9b4d37505c74aa610",
- "x-ms-request-id": "2075185b-b002-001b-4421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "58e8dd39-bde7-a5e9-b4d3-7505c74aa610"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable89ykktyv/@Element",
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.8075535Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "09",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:33.8075535Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv/$metadata#testtable89ykktyv/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.6421128Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 09",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:10:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:10:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:10:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:10:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90009",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "9",
- "DoubleTypeProperty": 9.0,
- "IntTypeProperty": 9
+ "DoubleTypeProperty": 9,
+ "IntTypeProperty": 9,
+ "PartitionKey": "somPartition",
+ "RowKey": "09",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T21:12:55.6421128Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-977abfba1926c44591cbc41b1721b4f1-5525bc7cbc5c0049-00",
+ "traceparent": "00-b930abd65087184c8408186416d60cf8-0bb8401a722f4e47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "03f2f9039680c08d728c796084183ac5",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:34 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:12:55 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -815,61 +727,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:33 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.8525909Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 21:12:54 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.7173768Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "03f2f9039680c08d728c796084183ac5",
- "x-ms-request-id": "2075186a-b002-001b-5221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "03f2f903-9680-c08d-728c-796084183ac5"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable89ykktyv/@Element",
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.8525909Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "10",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:33.8525909Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv/$metadata#testtable89ykktyv/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.7173768Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 10",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:11:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:11:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:11:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:11:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90010",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "10",
- "DoubleTypeProperty": 10.0,
- "IntTypeProperty": 10
+ "DoubleTypeProperty": 10,
+ "IntTypeProperty": 10,
+ "PartitionKey": "somPartition",
+ "RowKey": "10",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T21:12:55.7173768Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8df68c56a400d8429129f60ef6b65fb0-34e71f9e8b7f7a45-00",
+ "traceparent": "00-0d32f59b9c8494479ebe56f9b84d78c2-fdf446c60a928f40-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "68a16038ccdf3b7a600ff7a5f5585e7c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:34 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:12:55 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -896,61 +799,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:33 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.8976283Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 21:12:54 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.7912072Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "68a16038ccdf3b7a600ff7a5f5585e7c",
- "x-ms-request-id": "20751877-b002-001b-5f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "68a16038-ccdf-3b7a-600f-f7a5f5585e7c"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable89ykktyv/@Element",
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.8976283Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "11",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:33.8976283Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv/$metadata#testtable89ykktyv/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.7912072Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 11",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:12:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:12:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:12:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:12:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90011",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "11",
- "DoubleTypeProperty": 11.0,
- "IntTypeProperty": 11
+ "DoubleTypeProperty": 11,
+ "IntTypeProperty": 11,
+ "PartitionKey": "somPartition",
+ "RowKey": "11",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T21:12:55.7912072Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-32e08e592541cf45a2de4478d28f0e3a-bed14981b922dc46-00",
+ "traceparent": "00-2fceb21ef5785445a2925725f51a24bb-ec86ec1c487eba4f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0de546973d3da2e34f27e55b4388219b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:34 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:12:55 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -977,61 +871,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:33 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.9376615Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 21:12:55 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.8648328Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "0de546973d3da2e34f27e55b4388219b",
- "x-ms-request-id": "20751882-b002-001b-6a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "0de54697-3d3d-a2e3-4f27-e55b4388219b"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable89ykktyv/@Element",
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.9376615Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "12",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:33.9376615Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv/$metadata#testtable89ykktyv/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.8648328Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 12",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:13:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:13:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:13:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:13:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90012",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "12",
- "DoubleTypeProperty": 12.0,
- "IntTypeProperty": 12
+ "DoubleTypeProperty": 12,
+ "IntTypeProperty": 12,
+ "PartitionKey": "somPartition",
+ "RowKey": "12",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T21:12:55.8648328Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-2ad636c19bb7c64d971cd25f1eaeaaeb-2301a2497ec12f4e-00",
+ "traceparent": "00-582221ba93470f4ebb84363e5fcee108-f7a5c87c54b7054e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "67cdb0993da937317fb7a3719ee7cb1a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:34 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:12:55 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1058,61 +943,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:33 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.9806973Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 21:12:55 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.9409160Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "67cdb0993da937317fb7a3719ee7cb1a",
- "x-ms-request-id": "20751887-b002-001b-6f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "67cdb099-3da9-3731-7fb7-a3719ee7cb1a"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable89ykktyv/@Element",
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.9806973Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "13",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:33.9806973Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv/$metadata#testtable89ykktyv/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.9409160Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 13",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:14:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:14:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:14:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:14:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90013",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "13",
- "DoubleTypeProperty": 13.0,
- "IntTypeProperty": 13
+ "DoubleTypeProperty": 13,
+ "IntTypeProperty": 13,
+ "PartitionKey": "somPartition",
+ "RowKey": "13",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T21:12:55.9409160Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a482dda261a091409c7f8f8a6d1f4e0d-33ebb7e3ac89224e-00",
+ "traceparent": "00-dd9b108353e6fb458d58f23f235cffbf-d42b877fa290f244-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3dc9fd2d2c33fa877dfe18b8e61ef8d7",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:34 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:12:56 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1139,61 +1015,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:33 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.0227317Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 21:12:55 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A56.0181256Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "3dc9fd2d2c33fa877dfe18b8e61ef8d7",
- "x-ms-request-id": "20751890-b002-001b-7821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "3dc9fd2d-2c33-fa87-7dfe-18b8e61ef8d7"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable89ykktyv/@Element",
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.0227317Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "14",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:34.0227317Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv/$metadata#testtable89ykktyv/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A56.0181256Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 14",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:15:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:15:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:15:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:15:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90014",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "14",
- "DoubleTypeProperty": 14.0,
- "IntTypeProperty": 14
+ "DoubleTypeProperty": 14,
+ "IntTypeProperty": 14,
+ "PartitionKey": "somPartition",
+ "RowKey": "14",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T21:12:56.0181256Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-40af019ce4959d4c90f8b7baaf2ec5f5-13a6a03b3fc0f144-00",
+ "traceparent": "00-2fc75858742f8e41be0fe37448d170dc-50f4eedf8d1c2443-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "440c5cedf78a5ad215ad8e869a710468",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:34 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:12:56 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1220,61 +1087,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:33 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.0667683Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 21:12:55 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A56.0933896Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "440c5cedf78a5ad215ad8e869a710468",
- "x-ms-request-id": "2075189e-b002-001b-0621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "440c5ced-f78a-5ad2-15ad-8e869a710468"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable89ykktyv/@Element",
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.0667683Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "15",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:34.0667683Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv/$metadata#testtable89ykktyv/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A56.0933896Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 15",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:16:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:16:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:16:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:16:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90015",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "15",
- "DoubleTypeProperty": 15.0,
- "IntTypeProperty": 15
+ "DoubleTypeProperty": 15,
+ "IntTypeProperty": 15,
+ "PartitionKey": "somPartition",
+ "RowKey": "15",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T21:12:56.0933896Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-3419e5bd80da2449bb3fe09aab58403d-5cce01e5ff62534b-00",
+ "traceparent": "00-dc1d524f0e74e742a2650e5a263d1e5c-1bc3f0db5228f24c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "452dcb5be3bf6c6728d2e9aa24785161",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:34 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:12:56 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1301,61 +1159,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:33 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.1098044Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 21:12:55 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A56.1647624Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "452dcb5be3bf6c6728d2e9aa24785161",
- "x-ms-request-id": "207518b1-b002-001b-1821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "452dcb5b-e3bf-6c67-28d2-e9aa24785161"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable89ykktyv/@Element",
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.1098044Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "16",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:34.1098044Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv/$metadata#testtable89ykktyv/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A56.1647624Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 16",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:17:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:17:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:17:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:17:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90016",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "16",
- "DoubleTypeProperty": 16.0,
- "IntTypeProperty": 16
+ "DoubleTypeProperty": 16,
+ "IntTypeProperty": 16,
+ "PartitionKey": "somPartition",
+ "RowKey": "16",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T21:12:56.1647624Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8b09f08ab317a14dbe83b0471f15dce5-53d63f346cc7fd4e-00",
+ "traceparent": "00-392bfe31ce3ff24f95df9d3e9026c9f1-910d1abd64728943-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4283ccbf86da36902b6f27859e01600b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:34 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:12:56 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1382,61 +1231,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:33 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.1538414Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 21:12:55 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A56.2420744Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "4283ccbf86da36902b6f27859e01600b",
- "x-ms-request-id": "207518bb-b002-001b-2221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "4283ccbf-86da-3690-2b6f-27859e01600b"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable89ykktyv/@Element",
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.1538414Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "17",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:34.1538414Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv/$metadata#testtable89ykktyv/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A56.2420744Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 17",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:18:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:18:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:18:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:18:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90017",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "17",
- "DoubleTypeProperty": 17.0,
- "IntTypeProperty": 17
+ "DoubleTypeProperty": 17,
+ "IntTypeProperty": 17,
+ "PartitionKey": "somPartition",
+ "RowKey": "17",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T21:12:56.2420744Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-3f2987e196bb89409278b0d50366804f-7736336b807f3844-00",
+ "traceparent": "00-9bda0bf8217f6548b844cf1bf507dc76-6006c5ad140e6f44-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1b5cb0fab2f10a17f4a01bb70d28359c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:34 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:12:56 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1463,61 +1303,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:33 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.1968763Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 21:12:55 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A56.3165192Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "1b5cb0fab2f10a17f4a01bb70d28359c",
- "x-ms-request-id": "207518c3-b002-001b-2a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "1b5cb0fa-b2f1-0a17-f4a0-1bb70d28359c"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable89ykktyv/@Element",
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.1968763Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "18",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:34.1968763Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv/$metadata#testtable89ykktyv/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A56.3165192Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 18",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:19:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:19:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:19:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:19:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90018",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "18",
- "DoubleTypeProperty": 18.0,
- "IntTypeProperty": 18
+ "DoubleTypeProperty": 18,
+ "IntTypeProperty": 18,
+ "PartitionKey": "somPartition",
+ "RowKey": "18",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T21:12:56.3165192Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-45d47867d83e6f46a42531f97b8d65f5-715dd77534852e42-00",
+ "traceparent": "00-2bd87e61bdd92e49bc1a089529a97de8-fb8de963e33a204b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "cdc62d5cc2eed48d3bf71a50bbe2cd26",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:34 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:12:56 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1544,61 +1375,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:34 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.2579274Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 21:12:55 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A56.3910664Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "cdc62d5cc2eed48d3bf71a50bbe2cd26",
- "x-ms-request-id": "207518d2-b002-001b-3821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "cdc62d5c-c2ee-d48d-3bf7-1a50bbe2cd26"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable89ykktyv/@Element",
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.2579274Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "19",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:34.2579274Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv/$metadata#testtable89ykktyv/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A56.3910664Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 19",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:20:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:20:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:20:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:20:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90019",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "19",
- "DoubleTypeProperty": 19.0,
- "IntTypeProperty": 19
+ "DoubleTypeProperty": 19,
+ "IntTypeProperty": 19,
+ "PartitionKey": "somPartition",
+ "RowKey": "19",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T21:12:56.3910664Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-fe657a22a3a77849ac5d401a9f5ac8e3-33d661c537eefd49-00",
+ "traceparent": "00-9fe94b3bfca7234d8e3259f002f46838-8314e419a90a754d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "74b0de72351c0c6fb5794d3a6ad82802",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:34 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:12:56 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1625,580 +1447,496 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:34 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.3039648Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 21:12:55 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A56.4718600Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "74b0de72351c0c6fb5794d3a6ad82802",
- "x-ms-request-id": "207518d9-b002-001b-3f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "74b0de72-351c-0c6f-b579-4d3a6ad82802"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable89ykktyv/@Element",
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.3039648Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "20",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:34.3039648Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv/$metadata#testtable89ykktyv/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A56.4718600Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 20",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:21:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:21:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:21:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:21:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90020",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "20",
- "DoubleTypeProperty": 20.0,
- "IntTypeProperty": 20
+ "DoubleTypeProperty": 20,
+ "IntTypeProperty": 20,
+ "PartitionKey": "somPartition",
+ "RowKey": "20",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T21:12:56.4718600Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable89ykktyv()?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable89ykktyv()?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "71288b39923a381d2287e0fa97c64e12",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:34 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:12:56 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:34 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 21:12:55 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "71288b39923a381d2287e0fa97c64e12",
- "x-ms-request-id": "207518e1-b002-001b-4721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "71288b39-923a-381d-2287-e0fa97c64e12"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable89ykktyv",
"value": [
{
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.4172291Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:33.4172291Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.0327304Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:02:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "1",
- "DoubleTypeProperty": 1.0,
- "IntTypeProperty": 1
- },
- {
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.4622669Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
+ "DoubleTypeProperty": 1,
+ "IntTypeProperty": 1,
"PartitionKey": "somPartition",
- "RowKey": "02",
+ "RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:33.4622669Z",
+ "Timestamp": "2020-07-17T21:12:55.0327304Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.1114760Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 02",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:03:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:03:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:03:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:03:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "2",
- "DoubleTypeProperty": 2.0,
- "IntTypeProperty": 2
- },
- {
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.506303Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
+ "DoubleTypeProperty": 2,
+ "IntTypeProperty": 2,
"PartitionKey": "somPartition",
- "RowKey": "03",
+ "RowKey": "02",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:33.506303Z",
+ "Timestamp": "2020-07-17T21:12:55.1114760Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.1885832Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 03",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:04:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:04:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:04:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:04:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "3",
- "DoubleTypeProperty": 3.0,
- "IntTypeProperty": 3
- },
- {
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.55034Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
+ "DoubleTypeProperty": 3,
+ "IntTypeProperty": 3,
"PartitionKey": "somPartition",
- "RowKey": "04",
+ "RowKey": "03",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:33.55034Z",
+ "Timestamp": "2020-07-17T21:12:55.1885832Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.2631304Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 04",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:05:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:05:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:05:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:05:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "4",
- "DoubleTypeProperty": 4.0,
- "IntTypeProperty": 4
- },
- {
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.6043853Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
+ "DoubleTypeProperty": 4,
+ "IntTypeProperty": 4,
"PartitionKey": "somPartition",
- "RowKey": "05",
+ "RowKey": "04",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:33.6043853Z",
+ "Timestamp": "2020-07-17T21:12:55.2631304Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.3387016Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 05",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:06:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:06:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:06:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:06:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90005",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "5",
- "DoubleTypeProperty": 5.0,
- "IntTypeProperty": 5
- },
- {
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.6644351Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
+ "DoubleTypeProperty": 5,
+ "IntTypeProperty": 5,
"PartitionKey": "somPartition",
- "RowKey": "06",
+ "RowKey": "05",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:33.6644351Z",
+ "Timestamp": "2020-07-17T21:12:55.3387016Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.4136584Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 06",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:07:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:07:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:07:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:07:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90006",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "6",
- "DoubleTypeProperty": 6.0,
- "IntTypeProperty": 6
- },
- {
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.7184796Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
+ "DoubleTypeProperty": 6,
+ "IntTypeProperty": 6,
"PartitionKey": "somPartition",
- "RowKey": "07",
+ "RowKey": "06",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:33.7184796Z",
+ "Timestamp": "2020-07-17T21:12:55.4136584Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.4900488Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 07",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:08:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:08:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:08:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:08:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90007",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "7",
- "DoubleTypeProperty": 7.0,
- "IntTypeProperty": 7
- },
- {
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.7665195Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
+ "DoubleTypeProperty": 7,
+ "IntTypeProperty": 7,
"PartitionKey": "somPartition",
- "RowKey": "08",
+ "RowKey": "07",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:33.7665195Z",
+ "Timestamp": "2020-07-17T21:12:55.4900488Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.5658248Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 08",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:09:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:09:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:09:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:09:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90008",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "8",
- "DoubleTypeProperty": 8.0,
- "IntTypeProperty": 8
- },
- {
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.8075535Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
+ "DoubleTypeProperty": 8,
+ "IntTypeProperty": 8,
"PartitionKey": "somPartition",
- "RowKey": "09",
+ "RowKey": "08",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:33.8075535Z",
+ "Timestamp": "2020-07-17T21:12:55.5658248Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.6421128Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 09",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:10:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:10:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:10:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:10:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90009",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "9",
- "DoubleTypeProperty": 9.0,
- "IntTypeProperty": 9
- },
- {
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.8525909Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
+ "DoubleTypeProperty": 9,
+ "IntTypeProperty": 9,
"PartitionKey": "somPartition",
- "RowKey": "10",
+ "RowKey": "09",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:33.8525909Z",
+ "Timestamp": "2020-07-17T21:12:55.6421128Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.7173768Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 10",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:11:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:11:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:11:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:11:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90010",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "10",
- "DoubleTypeProperty": 10.0,
- "IntTypeProperty": 10
- },
- {
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.8976283Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
+ "DoubleTypeProperty": 10,
+ "IntTypeProperty": 10,
"PartitionKey": "somPartition",
- "RowKey": "11",
+ "RowKey": "10",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:33.8976283Z",
+ "Timestamp": "2020-07-17T21:12:55.7173768Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.7912072Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 11",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:12:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:12:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:12:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:12:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90011",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "11",
- "DoubleTypeProperty": 11.0,
- "IntTypeProperty": 11
- },
- {
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.9376615Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
+ "DoubleTypeProperty": 11,
+ "IntTypeProperty": 11,
"PartitionKey": "somPartition",
- "RowKey": "12",
+ "RowKey": "11",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:33.9376615Z",
+ "Timestamp": "2020-07-17T21:12:55.7912072Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.8648328Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 12",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:13:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:13:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:13:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:13:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90012",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "12",
- "DoubleTypeProperty": 12.0,
- "IntTypeProperty": 12
- },
- {
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.9806973Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
+ "DoubleTypeProperty": 12,
+ "IntTypeProperty": 12,
"PartitionKey": "somPartition",
- "RowKey": "13",
+ "RowKey": "12",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:33.9806973Z",
+ "Timestamp": "2020-07-17T21:12:55.8648328Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A55.9409160Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 13",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:14:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:14:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:14:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:14:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90013",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "13",
- "DoubleTypeProperty": 13.0,
- "IntTypeProperty": 13
- },
- {
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.0227317Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
+ "DoubleTypeProperty": 13,
+ "IntTypeProperty": 13,
"PartitionKey": "somPartition",
- "RowKey": "14",
+ "RowKey": "13",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:34.0227317Z",
+ "Timestamp": "2020-07-17T21:12:55.9409160Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A56.0181256Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 14",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:15:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:15:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:15:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:15:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90014",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "14",
- "DoubleTypeProperty": 14.0,
- "IntTypeProperty": 14
- },
- {
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.0667683Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
+ "DoubleTypeProperty": 14,
+ "IntTypeProperty": 14,
"PartitionKey": "somPartition",
- "RowKey": "15",
+ "RowKey": "14",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:34.0667683Z",
+ "Timestamp": "2020-07-17T21:12:56.0181256Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A56.0933896Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 15",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:16:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:16:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:16:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:16:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90015",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "15",
- "DoubleTypeProperty": 15.0,
- "IntTypeProperty": 15
- },
- {
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.1098044Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
+ "DoubleTypeProperty": 15,
+ "IntTypeProperty": 15,
"PartitionKey": "somPartition",
- "RowKey": "16",
+ "RowKey": "15",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:34.1098044Z",
+ "Timestamp": "2020-07-17T21:12:56.0933896Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A56.1647624Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 16",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:17:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:17:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:17:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:17:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90016",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "16",
- "DoubleTypeProperty": 16.0,
- "IntTypeProperty": 16
- },
- {
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.1538414Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
+ "DoubleTypeProperty": 16,
+ "IntTypeProperty": 16,
"PartitionKey": "somPartition",
- "RowKey": "17",
+ "RowKey": "16",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:34.1538414Z",
+ "Timestamp": "2020-07-17T21:12:56.1647624Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A56.2420744Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 17",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:18:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:18:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:18:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:18:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90017",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "17",
- "DoubleTypeProperty": 17.0,
- "IntTypeProperty": 17
- },
- {
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.1968763Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
+ "DoubleTypeProperty": 17,
+ "IntTypeProperty": 17,
"PartitionKey": "somPartition",
- "RowKey": "18",
+ "RowKey": "17",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:34.1968763Z",
+ "Timestamp": "2020-07-17T21:12:56.2420744Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A56.3165192Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 18",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:19:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:19:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:19:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:19:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90018",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "18",
- "DoubleTypeProperty": 18.0,
- "IntTypeProperty": 18
- },
- {
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.2579274Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
+ "DoubleTypeProperty": 18,
+ "IntTypeProperty": 18,
"PartitionKey": "somPartition",
- "RowKey": "19",
+ "RowKey": "18",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:34.2579274Z",
+ "Timestamp": "2020-07-17T21:12:56.3165192Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A56.3910664Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 19",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:20:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:20:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:20:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:20:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90019",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "19",
- "DoubleTypeProperty": 19.0,
- "IntTypeProperty": 19
- },
- {
- "odata.type": "chrissscratch.testtable89ykktyv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A34.3039648Z\u0027\u0022",
- "odata.editLink": "testtable89ykktyv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
+ "DoubleTypeProperty": 19,
+ "IntTypeProperty": 19,
"PartitionKey": "somPartition",
- "RowKey": "20",
+ "RowKey": "19",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:34.3039648Z",
+ "Timestamp": "2020-07-17T21:12:56.3910664Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A12%3A56.4718600Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 20",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:21:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:21:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:21:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:21:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90020",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "20",
- "DoubleTypeProperty": 20.0,
- "IntTypeProperty": 20
+ "DoubleTypeProperty": 20,
+ "IntTypeProperty": 20,
+ "PartitionKey": "somPartition",
+ "RowKey": "20",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T21:12:56.4718600Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable89ykktyv\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable89ykktyv\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-7d4a574b0b1e2a498faebc11e9f7c12f-a2cb7714da33d84a-00",
+ "traceparent": "00-3241443c4a25034fb73dbb5cdeaf3630-9625ae19fefabc4f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2f45f5d2c1782680bdba187474526a62",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:34 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:12:56 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:34 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "2f45f5d2c1782680bdba187474526a62",
- "x-ms-request-id": "20751902-b002-001b-6521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 21:12:56 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "2f45f5d2-c178-2680-bdba-187474526a62"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "152366549",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedCustomEntitiesCanBeQueriedWithFilters.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedCustomEntitiesCanBeQueriedWithFilters.json
index c9dae3b852c4..eb911cbdffff 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedCustomEntitiesCanBeQueriedWithFilters.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedCustomEntitiesCanBeQueriedWithFilters.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-7adddac70412eb4cafe13e31eaefa7cd-e084b25c4a93794b-00",
+ "traceparent": "00-f1db73916df8d846bf208a36ba8e88f7-0212c4448db28d4d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "40a6766bb06dceecfa17d07f0e13d436",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:36 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:02 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableq6muhy4a\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:36 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A36.3322376Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableq6muhy4a\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "40a6766bb06dceecfa17d07f0e13d436",
- "x-ms-request-id": "2074f9f7-b002-001b-4321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "40a6766b-b06d-ceec-fa17-d07f0e13d436"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableq6muhy4a\u0027)",
- "odata.editLink": "Tables(\u0027testtableq6muhy4a\u0027)",
- "TableName": "testtableq6muhy4a"
+ "TableName": "testtableq6muhy4a",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a3505fb53b849646917eab2cb39a4f85-5b908cc233336046-00",
+ "traceparent": "00-778b8221bd7fd84096ce1988eb7c666f-f716759523d3ba4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "822dd6fc2d2f07b640047024fe62272c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -86,61 +79,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:02 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A02.9818537Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:36 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A36.8752648Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "822dd6fc2d2f07b640047024fe62272c",
- "x-ms-request-id": "2074fa04-b002-001b-4f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "822dd6fc-2d2f-07b6-4004-7024fe62272c"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableq6muhy4a/@Element",
- "odata.type": "chrissscratch.testtableq6muhy4a",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A02.9818537Z\u0027\u0022",
- "odata.editLink": "testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:02.9818537Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a/$metadata#testtableq6muhy4a/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A36.8752648Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:02:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "1",
- "DoubleTypeProperty": 1.0,
- "IntTypeProperty": 1
+ "DoubleTypeProperty": 1,
+ "IntTypeProperty": 1,
+ "PartitionKey": "somPartition",
+ "RowKey": "01",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:36.8752648Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a462b0afa96c5f4881c4c0dde54ddd2c-8054f9b0684a6d41-00",
+ "traceparent": "00-c8727381a1bc3f47893e513de67e9a6e-6b1a2bb2b7896a48-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "592b55ac09d469526b8cdbe04dcee12a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -167,61 +151,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:02 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.0288926Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:36 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A36.9512456Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "592b55ac09d469526b8cdbe04dcee12a",
- "x-ms-request-id": "2074fa11-b002-001b-5c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "592b55ac-09d4-6952-6b8c-dbe04dcee12a"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableq6muhy4a/@Element",
- "odata.type": "chrissscratch.testtableq6muhy4a",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.0288926Z\u0027\u0022",
- "odata.editLink": "testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "02",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:03.0288926Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a/$metadata#testtableq6muhy4a/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A36.9512456Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 02",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:03:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:03:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:03:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:03:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "2",
- "DoubleTypeProperty": 2.0,
- "IntTypeProperty": 2
+ "DoubleTypeProperty": 2,
+ "IntTypeProperty": 2,
+ "PartitionKey": "somPartition",
+ "RowKey": "02",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:36.9512456Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f651bc34430939409aa68c6022c63b27-c78560c128654347-00",
+ "traceparent": "00-ce61a32f3a762948af486f2b365df5b6-fdd3c2a45d008747-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "fe60b2a0f2a73e5fc09fff683fc7d097",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -248,61 +223,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:02 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.0669248Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:36 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A37.0257928Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "fe60b2a0f2a73e5fc09fff683fc7d097",
- "x-ms-request-id": "2074fa1a-b002-001b-6521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "fe60b2a0-f2a7-3e5f-c09f-ff683fc7d097"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableq6muhy4a/@Element",
- "odata.type": "chrissscratch.testtableq6muhy4a",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.0669248Z\u0027\u0022",
- "odata.editLink": "testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "03",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:03.0669248Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a/$metadata#testtableq6muhy4a/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A37.0257928Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 03",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:04:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:04:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:04:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:04:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "3",
- "DoubleTypeProperty": 3.0,
- "IntTypeProperty": 3
+ "DoubleTypeProperty": 3,
+ "IntTypeProperty": 3,
+ "PartitionKey": "somPartition",
+ "RowKey": "03",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:37.0257928Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-dcd9e9144980ce40ad70d049f51a95b0-ecd99f08aa29e84e-00",
+ "traceparent": "00-9a09098bafcfb542aa23d1bac0e74861-16388beb1c44fd47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b9d3a4ef7ae8f36184c317a352d5ba72",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -329,61 +295,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:02 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.1229717Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:36 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A37.1002376Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "b9d3a4ef7ae8f36184c317a352d5ba72",
- "x-ms-request-id": "2074fa2b-b002-001b-7521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "b9d3a4ef-7ae8-f361-84c3-17a352d5ba72"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableq6muhy4a/@Element",
- "odata.type": "chrissscratch.testtableq6muhy4a",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.1229717Z\u0027\u0022",
- "odata.editLink": "testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "04",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:03.1229717Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a/$metadata#testtableq6muhy4a/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A37.1002376Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 04",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:05:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:05:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:05:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:05:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "4",
- "DoubleTypeProperty": 4.0,
- "IntTypeProperty": 4
+ "DoubleTypeProperty": 4,
+ "IntTypeProperty": 4,
+ "PartitionKey": "somPartition",
+ "RowKey": "04",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:37.1002376Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-677f56c8e9fadd4c85a4ce709b27bd6c-d3813e159e72cb43-00",
+ "traceparent": "00-067b65d2ee61e4429197531d1cf95ec4-5a1d615e08f3124c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4c8446232901b984f6ed993509e929a3",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -410,61 +367,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:02 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.1740143Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:36 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A37.1750920Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "4c8446232901b984f6ed993509e929a3",
- "x-ms-request-id": "2074fa39-b002-001b-0121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "4c844623-2901-b984-f6ed-993509e929a3"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableq6muhy4a/@Element",
- "odata.type": "chrissscratch.testtableq6muhy4a",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.1740143Z\u0027\u0022",
- "odata.editLink": "testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "05",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:03.1740143Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a/$metadata#testtableq6muhy4a/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A37.1750920Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 05",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:06:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:06:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:06:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:06:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90005",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "5",
- "DoubleTypeProperty": 5.0,
- "IntTypeProperty": 5
+ "DoubleTypeProperty": 5,
+ "IntTypeProperty": 5,
+ "PartitionKey": "somPartition",
+ "RowKey": "05",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:37.1750920Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-687565978ad4ec46985937058e816361-4b56846a9e931749-00",
+ "traceparent": "00-f6de3bbe9dd0364da5476dc01799ca17-1befee37cd50ec4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a8f043bc28fb2642506d7ae3dbbcebea",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -491,61 +439,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:03 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.2160491Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:36 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A37.2562952Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a8f043bc28fb2642506d7ae3dbbcebea",
- "x-ms-request-id": "2074fa3f-b002-001b-0721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "a8f043bc-28fb-2642-506d-7ae3dbbcebea"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableq6muhy4a/@Element",
- "odata.type": "chrissscratch.testtableq6muhy4a",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.2160491Z\u0027\u0022",
- "odata.editLink": "testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "06",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:03.2160491Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a/$metadata#testtableq6muhy4a/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A37.2562952Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 06",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:07:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:07:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:07:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:07:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90006",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "6",
- "DoubleTypeProperty": 6.0,
- "IntTypeProperty": 6
+ "DoubleTypeProperty": 6,
+ "IntTypeProperty": 6,
+ "PartitionKey": "somPartition",
+ "RowKey": "06",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:37.2562952Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c683629f4915b547961cc320dfcd0365-31b10464f5d26a43-00",
+ "traceparent": "00-315e79463c29b34096adc6202ea700f2-bf66f75bb24b3f4d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f9448de48443c6951f19c2fbe12be99a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -572,61 +511,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:03 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.2600859Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:36 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A37.3324808Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "f9448de48443c6951f19c2fbe12be99a",
- "x-ms-request-id": "2074fa44-b002-001b-0c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "f9448de4-8443-c695-1f19-c2fbe12be99a"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableq6muhy4a/@Element",
- "odata.type": "chrissscratch.testtableq6muhy4a",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.2600859Z\u0027\u0022",
- "odata.editLink": "testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "07",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:03.2600859Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a/$metadata#testtableq6muhy4a/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A37.3324808Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 07",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:08:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:08:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:08:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:08:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90007",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "7",
- "DoubleTypeProperty": 7.0,
- "IntTypeProperty": 7
+ "DoubleTypeProperty": 7,
+ "IntTypeProperty": 7,
+ "PartitionKey": "somPartition",
+ "RowKey": "07",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:37.3324808Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-4853b2c6b43b4d4f8df0566bc200dba1-8245045a2e341f4c-00",
+ "traceparent": "00-16faa7c0868f9644b362f52b7653d226-2d21c36ad37f714e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0fe7739a11e5fa76045dfb94afa1de3a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -653,61 +583,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:03 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.2981185Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:36 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A37.4195208Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "0fe7739a11e5fa76045dfb94afa1de3a",
- "x-ms-request-id": "2074fa4d-b002-001b-1421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "0fe7739a-11e5-fa76-045d-fb94afa1de3a"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableq6muhy4a/@Element",
- "odata.type": "chrissscratch.testtableq6muhy4a",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.2981185Z\u0027\u0022",
- "odata.editLink": "testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "08",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:03.2981185Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a/$metadata#testtableq6muhy4a/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A37.4195208Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 08",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:09:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:09:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:09:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:09:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90008",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "8",
- "DoubleTypeProperty": 8.0,
- "IntTypeProperty": 8
+ "DoubleTypeProperty": 8,
+ "IntTypeProperty": 8,
+ "PartitionKey": "somPartition",
+ "RowKey": "08",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:37.4195208Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e6bc1327496d1d4ebd5b2b2e82570648-4369032357f31847-00",
+ "traceparent": "00-3ff6f4c80e4d67478bbff2b6bf27db2c-8678411766757c40-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7c50ae0130a5385fad2a88e165464424",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -734,61 +655,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:03 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.3411549Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:36 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A37.4957064Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "7c50ae0130a5385fad2a88e165464424",
- "x-ms-request-id": "2074fa55-b002-001b-1c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "7c50ae01-30a5-385f-ad2a-88e165464424"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableq6muhy4a/@Element",
- "odata.type": "chrissscratch.testtableq6muhy4a",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.3411549Z\u0027\u0022",
- "odata.editLink": "testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "09",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:03.3411549Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a/$metadata#testtableq6muhy4a/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A37.4957064Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 09",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:10:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:10:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:10:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:10:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90009",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "9",
- "DoubleTypeProperty": 9.0,
- "IntTypeProperty": 9
+ "DoubleTypeProperty": 9,
+ "IntTypeProperty": 9,
+ "PartitionKey": "somPartition",
+ "RowKey": "09",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:37.4957064Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-347d370e770ae14487168983212d2f28-febb5e47579e3049-00",
+ "traceparent": "00-8ac3eb0729ad494bb0a6338355713f5f-833c610ee4c75346-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6749df83dcd5d3051649f5e58801167e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -815,61 +727,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:03 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.3841896Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:36 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A37.5669768Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "6749df83dcd5d3051649f5e58801167e",
- "x-ms-request-id": "2074fa5d-b002-001b-2421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "6749df83-dcd5-d305-1649-f5e58801167e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableq6muhy4a/@Element",
- "odata.type": "chrissscratch.testtableq6muhy4a",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.3841896Z\u0027\u0022",
- "odata.editLink": "testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "10",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:03.3841896Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a/$metadata#testtableq6muhy4a/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A37.5669768Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 10",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:11:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:11:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:11:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:11:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90010",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "10",
- "DoubleTypeProperty": 10.0,
- "IntTypeProperty": 10
+ "DoubleTypeProperty": 10,
+ "IntTypeProperty": 10,
+ "PartitionKey": "somPartition",
+ "RowKey": "10",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:37.5669768Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c78cd21d76f7b54b8560e5e7d3dc3f44-824a12e208d6d144-00",
+ "traceparent": "00-102fdb71fe690340bc4145745be4f405-38428dbe2a96c14a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "32f9883b6dda6af514ae61ba889595bd",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:38 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -896,61 +799,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:03 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.4292277Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:36 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A37.6414216Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "32f9883b6dda6af514ae61ba889595bd",
- "x-ms-request-id": "2074fa65-b002-001b-2c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "32f9883b-6dda-6af5-14ae-61ba889595bd"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableq6muhy4a/@Element",
- "odata.type": "chrissscratch.testtableq6muhy4a",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.4292277Z\u0027\u0022",
- "odata.editLink": "testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "11",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:03.4292277Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a/$metadata#testtableq6muhy4a/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A37.6414216Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 11",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:12:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:12:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:12:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:12:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90011",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "11",
- "DoubleTypeProperty": 11.0,
- "IntTypeProperty": 11
+ "DoubleTypeProperty": 11,
+ "IntTypeProperty": 11,
+ "PartitionKey": "somPartition",
+ "RowKey": "11",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:37.6414216Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e5804720401bed48839d59e4df067441-6c50838c9fe4c24c-00",
+ "traceparent": "00-a4a1cbb6393cb94aa0948edf30a3c0bc-71d8e4edab0b2447-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "cf10d61876572564a87d655b3a7aafac",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:38 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -977,61 +871,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:03 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.4812708Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:36 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A37.7253896Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "cf10d61876572564a87d655b3a7aafac",
- "x-ms-request-id": "2074fa75-b002-001b-3921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "cf10d618-7657-2564-a87d-655b3a7aafac"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableq6muhy4a/@Element",
- "odata.type": "chrissscratch.testtableq6muhy4a",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.4812708Z\u0027\u0022",
- "odata.editLink": "testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "12",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:03.4812708Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a/$metadata#testtableq6muhy4a/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A37.7253896Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 12",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:13:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:13:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:13:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:13:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90012",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "12",
- "DoubleTypeProperty": 12.0,
- "IntTypeProperty": 12
+ "DoubleTypeProperty": 12,
+ "IntTypeProperty": 12,
+ "PartitionKey": "somPartition",
+ "RowKey": "12",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:37.7253896Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-77aea89f4fa6ac4e8fddd3656271c012-b7e75c4924525342-00",
+ "traceparent": "00-007704be16ec2242a3d08df952f2a539-76ca3c2ccf36a94e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "dca60a13124c1649e9df53267b4b4a81",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:38 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1058,61 +943,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:03 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.5253085Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:37 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A37.7999368Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "dca60a13124c1649e9df53267b4b4a81",
- "x-ms-request-id": "2074fa7d-b002-001b-4121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "dca60a13-124c-1649-e9df-53267b4b4a81"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableq6muhy4a/@Element",
- "odata.type": "chrissscratch.testtableq6muhy4a",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.5253085Z\u0027\u0022",
- "odata.editLink": "testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "13",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:03.5253085Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a/$metadata#testtableq6muhy4a/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A37.7999368Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 13",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:14:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:14:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:14:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:14:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90013",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "13",
- "DoubleTypeProperty": 13.0,
- "IntTypeProperty": 13
+ "DoubleTypeProperty": 13,
+ "IntTypeProperty": 13,
+ "PartitionKey": "somPartition",
+ "RowKey": "13",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:37.7999368Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a4ae10533433034181b135b0c6b3148e-7a031239cfba6148-00",
+ "traceparent": "00-f3dd8a4aae289c4ea5f460a4302b2873-95e84b80735c2e46-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b2cc37b447f1c52623d4895d079a2f99",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:38 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1139,61 +1015,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:03 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.5663424Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:37 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A37.8747912Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "b2cc37b447f1c52623d4895d079a2f99",
- "x-ms-request-id": "2074fa86-b002-001b-4921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "b2cc37b4-47f1-c526-23d4-895d079a2f99"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableq6muhy4a/@Element",
- "odata.type": "chrissscratch.testtableq6muhy4a",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.5663424Z\u0027\u0022",
- "odata.editLink": "testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "14",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:03.5663424Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a/$metadata#testtableq6muhy4a/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A37.8747912Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 14",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:15:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:15:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:15:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:15:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90014",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "14",
- "DoubleTypeProperty": 14.0,
- "IntTypeProperty": 14
+ "DoubleTypeProperty": 14,
+ "IntTypeProperty": 14,
+ "PartitionKey": "somPartition",
+ "RowKey": "14",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:37.8747912Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-fd442ff3a5104e4abd39e1aa42ce91e3-705a2de53e2d9544-00",
+ "traceparent": "00-c3f6b5bb642db548b7df5160798b50c7-6871fbccb2733f4c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7ea6b5ffb8ee06708cf9e578233ea95d",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:38 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1220,61 +1087,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:03 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.6093788Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:37 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A37.9499528Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "7ea6b5ffb8ee06708cf9e578233ea95d",
- "x-ms-request-id": "2074fa95-b002-001b-5621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "7ea6b5ff-b8ee-0670-8cf9-e578233ea95d"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableq6muhy4a/@Element",
- "odata.type": "chrissscratch.testtableq6muhy4a",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.6093788Z\u0027\u0022",
- "odata.editLink": "testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "15",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:03.6093788Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a/$metadata#testtableq6muhy4a/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A37.9499528Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 15",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:16:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:16:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:16:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:16:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90015",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "15",
- "DoubleTypeProperty": 15.0,
- "IntTypeProperty": 15
+ "DoubleTypeProperty": 15,
+ "IntTypeProperty": 15,
+ "PartitionKey": "somPartition",
+ "RowKey": "15",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:37.9499528Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-000cc829c7c5ae439b17ccf02c4dc941-41bd9e7ff7dbc140-00",
+ "traceparent": "00-36f995b881654042b572dd1a1f27d151-dc3387fb859ed04c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "02a6e332fdadccbbe3e0b87888ec0f4f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:38 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1301,61 +1159,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:03 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.6534147Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:37 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A38.0241928Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "02a6e332fdadccbbe3e0b87888ec0f4f",
- "x-ms-request-id": "2074faa3-b002-001b-6421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "02a6e332-fdad-ccbb-e3e0-b87888ec0f4f"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableq6muhy4a/@Element",
- "odata.type": "chrissscratch.testtableq6muhy4a",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.6534147Z\u0027\u0022",
- "odata.editLink": "testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "16",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:03.6534147Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a/$metadata#testtableq6muhy4a/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A38.0241928Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 16",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:17:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:17:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:17:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:17:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90016",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "16",
- "DoubleTypeProperty": 16.0,
- "IntTypeProperty": 16
+ "DoubleTypeProperty": 16,
+ "IntTypeProperty": 16,
+ "PartitionKey": "somPartition",
+ "RowKey": "16",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:38.0241928Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-95d772247fbc6d49b6784851e91748ba-1c8d9623ac347e41-00",
+ "traceparent": "00-b17721932580d4409079373040893649-f1bfa8ec1ce19f41-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c526b9afcca4fc92c7c525f761ada2e5",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:38 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1382,61 +1231,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:03 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.691447Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:37 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A38.0994568Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c526b9afcca4fc92c7c525f761ada2e5",
- "x-ms-request-id": "2074faaf-b002-001b-7021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "c526b9af-cca4-fc92-c7c5-25f761ada2e5"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableq6muhy4a/@Element",
- "odata.type": "chrissscratch.testtableq6muhy4a",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.691447Z\u0027\u0022",
- "odata.editLink": "testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "17",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:03.691447Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a/$metadata#testtableq6muhy4a/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A38.0994568Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 17",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:18:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:18:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:18:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:18:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90017",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "17",
- "DoubleTypeProperty": 17.0,
- "IntTypeProperty": 17
+ "DoubleTypeProperty": 17,
+ "IntTypeProperty": 17,
+ "PartitionKey": "somPartition",
+ "RowKey": "17",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:38.0994568Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-40b19375ac70db40b35eb4ecc744249e-c673f1a06f31fc4b-00",
+ "traceparent": "00-a5aca770df155148afd48db10df15d88-6de57e72de927e41-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "232a2c2a2cf402ecfada9a0dfff87ea0",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:38 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1463,61 +1303,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:03 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.7354834Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:37 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A38.1754376Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "232a2c2a2cf402ecfada9a0dfff87ea0",
- "x-ms-request-id": "2074fabc-b002-001b-7c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "232a2c2a-2cf4-02ec-fada-9a0dfff87ea0"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableq6muhy4a/@Element",
- "odata.type": "chrissscratch.testtableq6muhy4a",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.7354834Z\u0027\u0022",
- "odata.editLink": "testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "18",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:03.7354834Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a/$metadata#testtableq6muhy4a/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A38.1754376Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 18",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:19:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:19:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:19:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:19:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90018",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "18",
- "DoubleTypeProperty": 18.0,
- "IntTypeProperty": 18
+ "DoubleTypeProperty": 18,
+ "IntTypeProperty": 18,
+ "PartitionKey": "somPartition",
+ "RowKey": "18",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:38.1754376Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ba6c783c1056d54db5fc63212a62099f-9564a56ea5176e42-00",
+ "traceparent": "00-a580a4ae307f0e49a5f518365989fe1e-977b767360018947-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "69c996e9e41865b951a93be7d7c36b35",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:38 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1544,61 +1375,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:03 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.7805227Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:37 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A38.2495752Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "69c996e9e41865b951a93be7d7c36b35",
- "x-ms-request-id": "2074fac6-b002-001b-0621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "69c996e9-e418-65b9-51a9-3be7d7c36b35"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableq6muhy4a/@Element",
- "odata.type": "chrissscratch.testtableq6muhy4a",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.7805227Z\u0027\u0022",
- "odata.editLink": "testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "19",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:03.7805227Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a/$metadata#testtableq6muhy4a/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A38.2495752Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 19",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:20:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:20:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:20:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:20:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90019",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "19",
- "DoubleTypeProperty": 19.0,
- "IntTypeProperty": 19
+ "DoubleTypeProperty": 19,
+ "IntTypeProperty": 19,
+ "PartitionKey": "somPartition",
+ "RowKey": "19",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:38.2495752Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e33c4266fad89a4c9b872599d30def0a-0f9eb79b6c557640-00",
+ "traceparent": "00-c394184b5f1d834784934337dbd3ea8e-23dffda9d47cd64f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5c4dd33eebc1835bcc24cbca3184fdce",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:38 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1625,350 +1447,296 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:03 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.8225562Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:37 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A38.3250440Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "5c4dd33eebc1835bcc24cbca3184fdce",
- "x-ms-request-id": "2074fad1-b002-001b-0f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "5c4dd33e-ebc1-835b-cc24-cbca3184fdce"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableq6muhy4a/@Element",
- "odata.type": "chrissscratch.testtableq6muhy4a",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.8225562Z\u0027\u0022",
- "odata.editLink": "testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "20",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:03.8225562Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a/$metadata#testtableq6muhy4a/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A38.3250440Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 20",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:21:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:21:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:21:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:21:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90020",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "20",
- "DoubleTypeProperty": 20.0,
- "IntTypeProperty": 20
+ "DoubleTypeProperty": 20,
+ "IntTypeProperty": 20,
+ "PartitionKey": "somPartition",
+ "RowKey": "20",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:38.3250440Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20gt%20%2710%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableq6muhy4a()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20gt%20%2710%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ca0d854738e446cd72c4d24af0052a36",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:38 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:03 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:37 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ca0d854738e446cd72c4d24af0052a36",
- "x-ms-request-id": "2074fad9-b002-001b-1721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "ca0d8547-38e4-46cd-72c4-d24af0052a36"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableq6muhy4a",
"value": [
{
- "odata.type": "chrissscratch.testtableq6muhy4a",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.4292277Z\u0027\u0022",
- "odata.editLink": "testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "11",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:03.4292277Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A37.6414216Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 11",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:12:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:12:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:12:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:12:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90011",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "11",
- "DoubleTypeProperty": 11.0,
- "IntTypeProperty": 11
- },
- {
- "odata.type": "chrissscratch.testtableq6muhy4a",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.4812708Z\u0027\u0022",
- "odata.editLink": "testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
+ "DoubleTypeProperty": 11,
+ "IntTypeProperty": 11,
"PartitionKey": "somPartition",
- "RowKey": "12",
+ "RowKey": "11",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:03.4812708Z",
+ "Timestamp": "2020-07-17T19:34:37.6414216Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A37.7253896Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 12",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:13:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:13:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:13:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:13:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90012",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "12",
- "DoubleTypeProperty": 12.0,
- "IntTypeProperty": 12
- },
- {
- "odata.type": "chrissscratch.testtableq6muhy4a",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.5253085Z\u0027\u0022",
- "odata.editLink": "testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
+ "DoubleTypeProperty": 12,
+ "IntTypeProperty": 12,
"PartitionKey": "somPartition",
- "RowKey": "13",
+ "RowKey": "12",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:03.5253085Z",
+ "Timestamp": "2020-07-17T19:34:37.7253896Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A37.7999368Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 13",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:14:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:14:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:14:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:14:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90013",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "13",
- "DoubleTypeProperty": 13.0,
- "IntTypeProperty": 13
- },
- {
- "odata.type": "chrissscratch.testtableq6muhy4a",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.5663424Z\u0027\u0022",
- "odata.editLink": "testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
+ "DoubleTypeProperty": 13,
+ "IntTypeProperty": 13,
"PartitionKey": "somPartition",
- "RowKey": "14",
+ "RowKey": "13",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:03.5663424Z",
+ "Timestamp": "2020-07-17T19:34:37.7999368Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A37.8747912Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 14",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:15:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:15:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:15:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:15:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90014",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "14",
- "DoubleTypeProperty": 14.0,
- "IntTypeProperty": 14
- },
- {
- "odata.type": "chrissscratch.testtableq6muhy4a",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.6093788Z\u0027\u0022",
- "odata.editLink": "testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
+ "DoubleTypeProperty": 14,
+ "IntTypeProperty": 14,
"PartitionKey": "somPartition",
- "RowKey": "15",
+ "RowKey": "14",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:03.6093788Z",
+ "Timestamp": "2020-07-17T19:34:37.8747912Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A37.9499528Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 15",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:16:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:16:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:16:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:16:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90015",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "15",
- "DoubleTypeProperty": 15.0,
- "IntTypeProperty": 15
- },
- {
- "odata.type": "chrissscratch.testtableq6muhy4a",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.6534147Z\u0027\u0022",
- "odata.editLink": "testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
+ "DoubleTypeProperty": 15,
+ "IntTypeProperty": 15,
"PartitionKey": "somPartition",
- "RowKey": "16",
+ "RowKey": "15",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:03.6534147Z",
+ "Timestamp": "2020-07-17T19:34:37.9499528Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A38.0241928Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 16",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:17:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:17:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:17:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:17:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90016",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "16",
- "DoubleTypeProperty": 16.0,
- "IntTypeProperty": 16
- },
- {
- "odata.type": "chrissscratch.testtableq6muhy4a",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.691447Z\u0027\u0022",
- "odata.editLink": "testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
+ "DoubleTypeProperty": 16,
+ "IntTypeProperty": 16,
"PartitionKey": "somPartition",
- "RowKey": "17",
+ "RowKey": "16",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:03.691447Z",
+ "Timestamp": "2020-07-17T19:34:38.0241928Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A38.0994568Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 17",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:18:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:18:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:18:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:18:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90017",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "17",
- "DoubleTypeProperty": 17.0,
- "IntTypeProperty": 17
- },
- {
- "odata.type": "chrissscratch.testtableq6muhy4a",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.7354834Z\u0027\u0022",
- "odata.editLink": "testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
+ "DoubleTypeProperty": 17,
+ "IntTypeProperty": 17,
"PartitionKey": "somPartition",
- "RowKey": "18",
+ "RowKey": "17",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:03.7354834Z",
+ "Timestamp": "2020-07-17T19:34:38.0994568Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A38.1754376Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 18",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:19:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:19:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:19:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:19:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90018",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "18",
- "DoubleTypeProperty": 18.0,
- "IntTypeProperty": 18
- },
- {
- "odata.type": "chrissscratch.testtableq6muhy4a",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.7805227Z\u0027\u0022",
- "odata.editLink": "testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
+ "DoubleTypeProperty": 18,
+ "IntTypeProperty": 18,
"PartitionKey": "somPartition",
- "RowKey": "19",
+ "RowKey": "18",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:03.7805227Z",
+ "Timestamp": "2020-07-17T19:34:38.1754376Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A38.2495752Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 19",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:20:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:20:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:20:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:20:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90019",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "19",
- "DoubleTypeProperty": 19.0,
- "IntTypeProperty": 19
- },
- {
- "odata.type": "chrissscratch.testtableq6muhy4a",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A03.8225562Z\u0027\u0022",
- "odata.editLink": "testtableq6muhy4a(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
+ "DoubleTypeProperty": 19,
+ "IntTypeProperty": 19,
"PartitionKey": "somPartition",
- "RowKey": "20",
+ "RowKey": "19",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:03.8225562Z",
+ "Timestamp": "2020-07-17T19:34:38.2495752Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A38.3250440Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 20",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:21:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:21:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:21:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:21:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90020",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "20",
- "DoubleTypeProperty": 20.0,
- "IntTypeProperty": 20
+ "DoubleTypeProperty": 20,
+ "IntTypeProperty": 20,
+ "PartitionKey": "somPartition",
+ "RowKey": "20",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:38.3250440Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableq6muhy4a\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableq6muhy4a\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-2e1df0c1b785e44cb736f21b0590819d-ba7e0d817bbc0746-00",
+ "traceparent": "00-80885cd2a5eb9845b8beeb3851d08b8d-ba2c937d18e47041-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2bcf656e22abfdde3a469df318ef34cc",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:38 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:03 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "2bcf656e22abfdde3a469df318ef34cc",
- "x-ms-request-id": "2074faed-b002-001b-2921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:34:37 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "2bcf656e-22ab-fdde-3a46-9df318ef34cc"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "855276455",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedCustomEntitiesCanBeQueriedWithFiltersAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedCustomEntitiesCanBeQueriedWithFiltersAsync.json
index 88ed70f86c2f..2f177f563938 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedCustomEntitiesCanBeQueriedWithFiltersAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedCustomEntitiesCanBeQueriedWithFiltersAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-dbee9a02177ee34b92f3224921e21da7-75ec9027688a924e-00",
+ "traceparent": "00-daab351197eab545a24a16899f39e6e2-58a22bc8635fa34b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6b4b5b33ba8148122364ef91931e45c6",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:26 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:26 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableeauzc1r3\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:12 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A12.6795272Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableeauzc1r3\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "6b4b5b33ba8148122364ef91931e45c6",
- "x-ms-request-id": "207510e9-b002-001b-1d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "6b4b5b33-ba81-4812-2364-ef91931e45c6"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableeauzc1r3\u0027)",
- "odata.editLink": "Tables(\u0027testtableeauzc1r3\u0027)",
- "TableName": "testtableeauzc1r3"
+ "TableName": "testtableeauzc1r3",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ad708f71362af74db37489550631c31e-c42899610cfba447-00",
+ "traceparent": "00-b0cc575c0066b84cb3b45b9fa8302098-bb36f2b99d9b2346-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a5c15334816e79fbaf42cc2ea98f51ed",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -86,61 +79,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:26 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A26.7096622Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:12 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A13.3383688Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a5c15334816e79fbaf42cc2ea98f51ed",
- "x-ms-request-id": "207510f9-b002-001b-2c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "a5c15334-816e-79fb-af42-cc2ea98f51ed"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableeauzc1r3/@Element",
- "odata.type": "chrissscratch.testtableeauzc1r3",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A26.7096622Z\u0027\u0022",
- "odata.editLink": "testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:26.7096622Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3/$metadata#testtableeauzc1r3/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A13.3383688Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:02:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "1",
- "DoubleTypeProperty": 1.0,
- "IntTypeProperty": 1
+ "DoubleTypeProperty": 1,
+ "IntTypeProperty": 1,
+ "PartitionKey": "somPartition",
+ "RowKey": "01",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:13.3383688Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-2c5007203a83a84ba9f2f518921d5f2e-d67510d24e0f9d48-00",
+ "traceparent": "00-215bb29cb4d6c74bad87112247581c61-79b47acb726d3c4c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6f201269176a49d01ee7920b39a232b0",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -167,61 +151,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:26 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A26.7637066Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:12 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A13.4150664Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "6f201269176a49d01ee7920b39a232b0",
- "x-ms-request-id": "2075110f-b002-001b-3e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "6f201269-176a-49d0-1ee7-920b39a232b0"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableeauzc1r3/@Element",
- "odata.type": "chrissscratch.testtableeauzc1r3",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A26.7637066Z\u0027\u0022",
- "odata.editLink": "testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "02",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:26.7637066Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3/$metadata#testtableeauzc1r3/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A13.4150664Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 02",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:03:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:03:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:03:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:03:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "2",
- "DoubleTypeProperty": 2.0,
- "IntTypeProperty": 2
+ "DoubleTypeProperty": 2,
+ "IntTypeProperty": 2,
+ "PartitionKey": "somPartition",
+ "RowKey": "02",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:13.4150664Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ac0e7f2dde43e348bb750af18b76f471-f786439947409943-00",
+ "traceparent": "00-d63e94b510fa8040bfc48c25a3d3f9f0-82c5242fef342543-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e0733105cb76b1005fd2bc3eede49e93",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -248,61 +223,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:26 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A26.8077428Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:12 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A13.4952456Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "e0733105cb76b1005fd2bc3eede49e93",
- "x-ms-request-id": "20751121-b002-001b-5021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "e0733105-cb76-b100-5fd2-bc3eede49e93"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableeauzc1r3/@Element",
- "odata.type": "chrissscratch.testtableeauzc1r3",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A26.8077428Z\u0027\u0022",
- "odata.editLink": "testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "03",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:26.8077428Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3/$metadata#testtableeauzc1r3/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A13.4952456Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 03",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:04:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:04:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:04:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:04:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "3",
- "DoubleTypeProperty": 3.0,
- "IntTypeProperty": 3
+ "DoubleTypeProperty": 3,
+ "IntTypeProperty": 3,
+ "PartitionKey": "somPartition",
+ "RowKey": "03",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:13.4952456Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f42c28da3faac1458cbf24de47f925bd-97e103a997f3cc47-00",
+ "traceparent": "00-70c6489bfee0864986722d044ae50453-57d7bc5c33b9ed44-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "81280113d6fe1c5c83788686efef3f0d",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -329,61 +295,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:26 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A26.8487777Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:13 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A13.5740936Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "81280113d6fe1c5c83788686efef3f0d",
- "x-ms-request-id": "20751129-b002-001b-5821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "81280113-d6fe-1c5c-8378-8686efef3f0d"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableeauzc1r3/@Element",
- "odata.type": "chrissscratch.testtableeauzc1r3",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A26.8487777Z\u0027\u0022",
- "odata.editLink": "testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "04",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:26.8487777Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3/$metadata#testtableeauzc1r3/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A13.5740936Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 04",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:05:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:05:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:05:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:05:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "4",
- "DoubleTypeProperty": 4.0,
- "IntTypeProperty": 4
+ "DoubleTypeProperty": 4,
+ "IntTypeProperty": 4,
+ "PartitionKey": "somPartition",
+ "RowKey": "04",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:13.5740936Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-80c0e17b08c47d4a9a9b1cf5bde1c2d8-ed856e8a2ad4b741-00",
+ "traceparent": "00-afef8b73e5edfa4ca6a2d1b3bf92a153-d46540d8cca3c64c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "78281b10711c9e76116e0f975b925b39",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -410,61 +367,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:26 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A26.8918121Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:13 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A13.6505864Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "78281b10711c9e76116e0f975b925b39",
- "x-ms-request-id": "2075113a-b002-001b-6921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "78281b10-711c-9e76-116e-0f975b925b39"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableeauzc1r3/@Element",
- "odata.type": "chrissscratch.testtableeauzc1r3",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A26.8918121Z\u0027\u0022",
- "odata.editLink": "testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "05",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:26.8918121Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3/$metadata#testtableeauzc1r3/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A13.6505864Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 05",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:06:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:06:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:06:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:06:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90005",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "5",
- "DoubleTypeProperty": 5.0,
- "IntTypeProperty": 5
+ "DoubleTypeProperty": 5,
+ "IntTypeProperty": 5,
+ "PartitionKey": "somPartition",
+ "RowKey": "05",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:13.6505864Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8dc80b3633f4c249a9ae072a9aff9a82-bf3f1ead085e434f-00",
+ "traceparent": "00-3e5ad5be08c8f54fb6768d112e6536ed-ab9e12dfc397c943-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "37f8ff48b1792eb2d4565cfd4479c270",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -491,61 +439,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:26 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A26.9358495Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:13 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A13.7257480Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "37f8ff48b1792eb2d4565cfd4479c270",
- "x-ms-request-id": "20751149-b002-001b-7821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "37f8ff48-b179-2eb2-d456-5cfd4479c270"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableeauzc1r3/@Element",
- "odata.type": "chrissscratch.testtableeauzc1r3",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A26.9358495Z\u0027\u0022",
- "odata.editLink": "testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "06",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:26.9358495Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3/$metadata#testtableeauzc1r3/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A13.7257480Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 06",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:07:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:07:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:07:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:07:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90006",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "6",
- "DoubleTypeProperty": 6.0,
- "IntTypeProperty": 6
+ "DoubleTypeProperty": 6,
+ "IntTypeProperty": 6,
+ "PartitionKey": "somPartition",
+ "RowKey": "06",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:13.7257480Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8eb1a4171a0e6b4390c9c60ffa8e68f2-e0f82d58a6cc0843-00",
+ "traceparent": "00-d4a178fc0ced8a439b01f6e8ee812ecf-548266460dfbd545-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d12daf9226bba1778b896f8fc7c4c1f1",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -572,61 +511,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:26 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A26.9768844Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:13 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A13.8012168Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "d12daf9226bba1778b896f8fc7c4c1f1",
- "x-ms-request-id": "2075114e-b002-001b-7d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "d12daf92-26bb-a177-8b89-6f8fc7c4c1f1"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableeauzc1r3/@Element",
- "odata.type": "chrissscratch.testtableeauzc1r3",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A26.9768844Z\u0027\u0022",
- "odata.editLink": "testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "07",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:26.9768844Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3/$metadata#testtableeauzc1r3/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A13.8012168Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 07",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:08:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:08:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:08:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:08:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90007",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "7",
- "DoubleTypeProperty": 7.0,
- "IntTypeProperty": 7
+ "DoubleTypeProperty": 7,
+ "IntTypeProperty": 7,
+ "PartitionKey": "somPartition",
+ "RowKey": "07",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:13.8012168Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6efb62c533e723439f815e71f45ca795-140e333fb9edfb43-00",
+ "traceparent": "00-c75b1ff48d1b0e4a944dcc9eaff4d381-1af575d4c7b70340-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ef3e4d1d07f65f9368faa3c514785a97",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -653,61 +583,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:26 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.0199189Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:13 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A13.8752520Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ef3e4d1d07f65f9368faa3c514785a97",
- "x-ms-request-id": "20751156-b002-001b-0521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "ef3e4d1d-07f6-5f93-68fa-a3c514785a97"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableeauzc1r3/@Element",
- "odata.type": "chrissscratch.testtableeauzc1r3",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.0199189Z\u0027\u0022",
- "odata.editLink": "testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "08",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:27.0199189Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3/$metadata#testtableeauzc1r3/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A13.8752520Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 08",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:09:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:09:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:09:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:09:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90008",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "8",
- "DoubleTypeProperty": 8.0,
- "IntTypeProperty": 8
+ "DoubleTypeProperty": 8,
+ "IntTypeProperty": 8,
+ "PartitionKey": "somPartition",
+ "RowKey": "08",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:13.8752520Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-da6b178adf68304194a4d74917c10b5c-0c7eaba3ef6b7248-00",
+ "traceparent": "00-a249177e4b14d34b9c120618fe3d6986-9a01a3f79f0b6846-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ac059fab8a64227d8757acf041226710",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -734,61 +655,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:26 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.0619538Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:13 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A13.9494920Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ac059fab8a64227d8757acf041226710",
- "x-ms-request-id": "2075115f-b002-001b-0c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "ac059fab-8a64-227d-8757-acf041226710"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableeauzc1r3/@Element",
- "odata.type": "chrissscratch.testtableeauzc1r3",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.0619538Z\u0027\u0022",
- "odata.editLink": "testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "09",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:27.0619538Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3/$metadata#testtableeauzc1r3/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A13.9494920Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 09",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:10:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:10:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:10:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:10:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90009",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "9",
- "DoubleTypeProperty": 9.0,
- "IntTypeProperty": 9
+ "DoubleTypeProperty": 9,
+ "IntTypeProperty": 9,
+ "PartitionKey": "somPartition",
+ "RowKey": "09",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:13.9494920Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-7c6609fb64d6394981403f6c20197be0-f316cbaf34b39242-00",
+ "traceparent": "00-4f8b28cb1f0ee14294545b2ccfb1b21f-6e266f91afb7b541-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f6e06b94d23b8b791bcd68c182b18d12",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -815,61 +727,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:26 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.1059912Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:13 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A14.0244488Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "f6e06b94d23b8b791bcd68c182b18d12",
- "x-ms-request-id": "20751167-b002-001b-1321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "f6e06b94-d23b-8b79-1bcd-68c182b18d12"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableeauzc1r3/@Element",
- "odata.type": "chrissscratch.testtableeauzc1r3",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.1059912Z\u0027\u0022",
- "odata.editLink": "testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "10",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:27.1059912Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3/$metadata#testtableeauzc1r3/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A14.0244488Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 10",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:11:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:11:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:11:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:11:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90010",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "10",
- "DoubleTypeProperty": 10.0,
- "IntTypeProperty": 10
+ "DoubleTypeProperty": 10,
+ "IntTypeProperty": 10,
+ "PartitionKey": "somPartition",
+ "RowKey": "10",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:14.0244488Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f6a487a129d60148b9f2e93e0273b9eb-21aa124e92351f4f-00",
+ "traceparent": "00-2b99f7c342138d41934a5a34ad08d92d-4d59e8847b64124c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "27e4d82f15bf938ccf1b689f5aa31e45",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -896,61 +799,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:26 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.1510273Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:13 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A14.0996104Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "27e4d82f15bf938ccf1b689f5aa31e45",
- "x-ms-request-id": "2075116e-b002-001b-1a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "27e4d82f-15bf-938c-cf1b-689f5aa31e45"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableeauzc1r3/@Element",
- "odata.type": "chrissscratch.testtableeauzc1r3",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.1510273Z\u0027\u0022",
- "odata.editLink": "testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "11",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:27.1510273Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3/$metadata#testtableeauzc1r3/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A14.0996104Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 11",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:12:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:12:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:12:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:12:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90011",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "11",
- "DoubleTypeProperty": 11.0,
- "IntTypeProperty": 11
+ "DoubleTypeProperty": 11,
+ "IntTypeProperty": 11,
+ "PartitionKey": "somPartition",
+ "RowKey": "11",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:14.0996104Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-2decad543b10c842bedbcc50ed4b348c-c66fc441284da44b-00",
+ "traceparent": "00-cf9c90bb6f76fc48bccb521dfe024a12-2bc736210bf25045-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a93192936398d85c2679909621bca0d6",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -977,61 +871,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:26 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.2020705Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:13 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A14.1746696Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a93192936398d85c2679909621bca0d6",
- "x-ms-request-id": "20751182-b002-001b-2e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "a9319293-6398-d85c-2679-909621bca0d6"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableeauzc1r3/@Element",
- "odata.type": "chrissscratch.testtableeauzc1r3",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.2020705Z\u0027\u0022",
- "odata.editLink": "testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "12",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:27.2020705Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3/$metadata#testtableeauzc1r3/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A14.1746696Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 12",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:13:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:13:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:13:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:13:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90012",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "12",
- "DoubleTypeProperty": 12.0,
- "IntTypeProperty": 12
+ "DoubleTypeProperty": 12,
+ "IntTypeProperty": 12,
+ "PartitionKey": "somPartition",
+ "RowKey": "12",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:14.1746696Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-5d7f819086c818409a15117765d69510-9517326b881a9c4c-00",
+ "traceparent": "00-1b4a39f5212d7d499ad888134b87a120-3ac9eb1c39499c44-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "69c19ac93f3e7f51de4d271f6ad93078",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1058,61 +943,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:27 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.2461067Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:13 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A14.2470664Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "69c19ac93f3e7f51de4d271f6ad93078",
- "x-ms-request-id": "2075118d-b002-001b-3821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "69c19ac9-3f3e-7f51-de4d-271f6ad93078"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableeauzc1r3/@Element",
- "odata.type": "chrissscratch.testtableeauzc1r3",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.2461067Z\u0027\u0022",
- "odata.editLink": "testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "13",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:27.2461067Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3/$metadata#testtableeauzc1r3/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A14.2470664Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 13",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:14:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:14:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:14:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:14:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90013",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "13",
- "DoubleTypeProperty": 13.0,
- "IntTypeProperty": 13
+ "DoubleTypeProperty": 13,
+ "IntTypeProperty": 13,
+ "PartitionKey": "somPartition",
+ "RowKey": "13",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:14.2470664Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-2b1224a6996ca54b954bbc6a75e3656c-50ff62de147cfa46-00",
+ "traceparent": "00-21c2d684cdab4745b8c7bd58ad38e1e5-59adf68bce169f4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ef2d22afe480cb7a7b0c014585f67112",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1139,61 +1015,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:27 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.2901428Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:13 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A14.3240712Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ef2d22afe480cb7a7b0c014585f67112",
- "x-ms-request-id": "20751192-b002-001b-3d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "ef2d22af-e480-cb7a-7b0c-014585f67112"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableeauzc1r3/@Element",
- "odata.type": "chrissscratch.testtableeauzc1r3",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.2901428Z\u0027\u0022",
- "odata.editLink": "testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "14",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:27.2901428Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3/$metadata#testtableeauzc1r3/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A14.3240712Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 14",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:15:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:15:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:15:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:15:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90014",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "14",
- "DoubleTypeProperty": 14.0,
- "IntTypeProperty": 14
+ "DoubleTypeProperty": 14,
+ "IntTypeProperty": 14,
+ "PartitionKey": "somPartition",
+ "RowKey": "14",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:14.3240712Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-81f6630a01f711499072147e78e9b270-9bb2fbe6c9cf9043-00",
+ "traceparent": "00-f5598e88b9f8484f9f99b2742a2a4773-e6e111a739b98c41-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c0d6927bb5e2530741b1ca4a3b3c6d4c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1220,61 +1087,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:27 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.3341798Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:13 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A14.4024072Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c0d6927bb5e2530741b1ca4a3b3c6d4c",
- "x-ms-request-id": "20751199-b002-001b-4421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "c0d6927b-b5e2-5307-41b1-ca4a3b3c6d4c"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableeauzc1r3/@Element",
- "odata.type": "chrissscratch.testtableeauzc1r3",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.3341798Z\u0027\u0022",
- "odata.editLink": "testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "15",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:27.3341798Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3/$metadata#testtableeauzc1r3/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A14.4024072Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 15",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:16:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:16:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:16:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:16:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90015",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "15",
- "DoubleTypeProperty": 15.0,
- "IntTypeProperty": 15
+ "DoubleTypeProperty": 15,
+ "IntTypeProperty": 15,
+ "PartitionKey": "somPartition",
+ "RowKey": "15",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:14.4024072Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d82e670ea199b54fbd9747d9080c869b-711119c126c6c545-00",
+ "traceparent": "00-94a79b54b6ce0346adf855131d175478-1b62a8afb015c040-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "fee71849b08ee5551ff5ed323d0cf9e8",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1301,61 +1159,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:27 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.3782159Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:13 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A14.4891400Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "fee71849b08ee5551ff5ed323d0cf9e8",
- "x-ms-request-id": "207511a5-b002-001b-4f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "fee71849-b08e-e555-1ff5-ed323d0cf9e8"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableeauzc1r3/@Element",
- "odata.type": "chrissscratch.testtableeauzc1r3",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.3782159Z\u0027\u0022",
- "odata.editLink": "testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "16",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:27.3782159Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3/$metadata#testtableeauzc1r3/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A14.4891400Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 16",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:17:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:17:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:17:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:17:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90016",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "16",
- "DoubleTypeProperty": 16.0,
- "IntTypeProperty": 16
+ "DoubleTypeProperty": 16,
+ "IntTypeProperty": 16,
+ "PartitionKey": "somPartition",
+ "RowKey": "16",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:14.4891400Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8cc7fd337e3a0946955ff9883890eb4a-36949bd14565334b-00",
+ "traceparent": "00-2977550c4e25fd428bc5d1f0eddead82-81034973c2453f47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d8a314db6f03fa961bd9aece192f903f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1382,61 +1231,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:27 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.4252554Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:13 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A14.5659400Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "d8a314db6f03fa961bd9aece192f903f",
- "x-ms-request-id": "207511b7-b002-001b-6121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "d8a314db-6f03-fa96-1bd9-aece192f903f"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableeauzc1r3/@Element",
- "odata.type": "chrissscratch.testtableeauzc1r3",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.4252554Z\u0027\u0022",
- "odata.editLink": "testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "17",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:27.4252554Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3/$metadata#testtableeauzc1r3/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A14.5659400Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 17",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:18:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:18:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:18:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:18:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90017",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "17",
- "DoubleTypeProperty": 17.0,
- "IntTypeProperty": 17
+ "DoubleTypeProperty": 17,
+ "IntTypeProperty": 17,
+ "PartitionKey": "somPartition",
+ "RowKey": "17",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:14.5659400Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8e0fa0e3ab78f9469ae0be67ff4693a1-0017e170f1dc934f-00",
+ "traceparent": "00-fbcb20a9f93b944498881335921a88d7-6ac6bc678d351344-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6dfbb49e730ecb843cf1a1ecc7d51635",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1463,61 +1303,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:27 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.466289Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:14 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A14.6423304Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "6dfbb49e730ecb843cf1a1ecc7d51635",
- "x-ms-request-id": "207511cc-b002-001b-7521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "6dfbb49e-730e-cb84-3cf1-a1ecc7d51635"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableeauzc1r3/@Element",
- "odata.type": "chrissscratch.testtableeauzc1r3",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.466289Z\u0027\u0022",
- "odata.editLink": "testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "18",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:27.466289Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3/$metadata#testtableeauzc1r3/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A14.6423304Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 18",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:19:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:19:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:19:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:19:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90018",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "18",
- "DoubleTypeProperty": 18.0,
- "IntTypeProperty": 18
+ "DoubleTypeProperty": 18,
+ "IntTypeProperty": 18,
+ "PartitionKey": "somPartition",
+ "RowKey": "18",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:14.6423304Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-590b6ec9eef0c44082e0442773d5ecd8-3dcb9dac6ae0ea41-00",
+ "traceparent": "00-b6aba7f4a38be84eafe40be592a8ff96-f20ecc2366ae3846-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "276fe2b79599da4981ece2b40287cbef",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1544,61 +1375,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:27 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.5133289Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:14 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A14.7172872Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "276fe2b79599da4981ece2b40287cbef",
- "x-ms-request-id": "207511da-b002-001b-0321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "276fe2b7-9599-da49-81ec-e2b40287cbef"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableeauzc1r3/@Element",
- "odata.type": "chrissscratch.testtableeauzc1r3",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.5133289Z\u0027\u0022",
- "odata.editLink": "testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "19",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:27.5133289Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3/$metadata#testtableeauzc1r3/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A14.7172872Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 19",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:20:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:20:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:20:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:20:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90019",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "19",
- "DoubleTypeProperty": 19.0,
- "IntTypeProperty": 19
+ "DoubleTypeProperty": 19,
+ "IntTypeProperty": 19,
+ "PartitionKey": "somPartition",
+ "RowKey": "19",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:14.7172872Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-41f7134bb0b611458477e6abdd24e2cc-fb21885579b97b42-00",
+ "traceparent": "00-11331ec590412943b513d82ca8430c5f-8140bc6093a7e743-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8993ae658c1067d990d89c11cea93246",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1625,350 +1447,296 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:27 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.560368Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:14 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A14.7940872Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "8993ae658c1067d990d89c11cea93246",
- "x-ms-request-id": "207511e2-b002-001b-0b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "8993ae65-8c10-67d9-90d8-9c11cea93246"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableeauzc1r3/@Element",
- "odata.type": "chrissscratch.testtableeauzc1r3",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.560368Z\u0027\u0022",
- "odata.editLink": "testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "20",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:27.560368Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3/$metadata#testtableeauzc1r3/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A14.7940872Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 20",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:21:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:21:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:21:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:21:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90020",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "20",
- "DoubleTypeProperty": 20.0,
- "IntTypeProperty": 20
+ "DoubleTypeProperty": 20,
+ "IntTypeProperty": 20,
+ "PartitionKey": "somPartition",
+ "RowKey": "20",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:14.7940872Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20gt%20%2710%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableeauzc1r3()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20gt%20%2710%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "371679c369c009a56a21eb2190cfc9b5",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:27 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:14 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "371679c369c009a56a21eb2190cfc9b5",
- "x-ms-request-id": "207511eb-b002-001b-1421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "371679c3-69c0-09a5-6a21-eb2190cfc9b5"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableeauzc1r3",
"value": [
{
- "odata.type": "chrissscratch.testtableeauzc1r3",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.1510273Z\u0027\u0022",
- "odata.editLink": "testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "11",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:27.1510273Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A14.0996104Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 11",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:12:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:12:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:12:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:12:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90011",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "11",
- "DoubleTypeProperty": 11.0,
- "IntTypeProperty": 11
- },
- {
- "odata.type": "chrissscratch.testtableeauzc1r3",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.2020705Z\u0027\u0022",
- "odata.editLink": "testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
+ "DoubleTypeProperty": 11,
+ "IntTypeProperty": 11,
"PartitionKey": "somPartition",
- "RowKey": "12",
+ "RowKey": "11",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:27.2020705Z",
+ "Timestamp": "2020-07-17T19:35:14.0996104Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A14.1746696Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 12",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:13:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:13:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:13:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:13:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90012",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "12",
- "DoubleTypeProperty": 12.0,
- "IntTypeProperty": 12
- },
- {
- "odata.type": "chrissscratch.testtableeauzc1r3",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.2461067Z\u0027\u0022",
- "odata.editLink": "testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
+ "DoubleTypeProperty": 12,
+ "IntTypeProperty": 12,
"PartitionKey": "somPartition",
- "RowKey": "13",
+ "RowKey": "12",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:27.2461067Z",
+ "Timestamp": "2020-07-17T19:35:14.1746696Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A14.2470664Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 13",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:14:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:14:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:14:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:14:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90013",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "13",
- "DoubleTypeProperty": 13.0,
- "IntTypeProperty": 13
- },
- {
- "odata.type": "chrissscratch.testtableeauzc1r3",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.2901428Z\u0027\u0022",
- "odata.editLink": "testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
+ "DoubleTypeProperty": 13,
+ "IntTypeProperty": 13,
"PartitionKey": "somPartition",
- "RowKey": "14",
+ "RowKey": "13",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:27.2901428Z",
+ "Timestamp": "2020-07-17T19:35:14.2470664Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A14.3240712Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 14",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:15:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:15:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:15:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:15:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90014",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "14",
- "DoubleTypeProperty": 14.0,
- "IntTypeProperty": 14
- },
- {
- "odata.type": "chrissscratch.testtableeauzc1r3",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.3341798Z\u0027\u0022",
- "odata.editLink": "testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
+ "DoubleTypeProperty": 14,
+ "IntTypeProperty": 14,
"PartitionKey": "somPartition",
- "RowKey": "15",
+ "RowKey": "14",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:27.3341798Z",
+ "Timestamp": "2020-07-17T19:35:14.3240712Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A14.4024072Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 15",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:16:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:16:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:16:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:16:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90015",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "15",
- "DoubleTypeProperty": 15.0,
- "IntTypeProperty": 15
- },
- {
- "odata.type": "chrissscratch.testtableeauzc1r3",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.3782159Z\u0027\u0022",
- "odata.editLink": "testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
+ "DoubleTypeProperty": 15,
+ "IntTypeProperty": 15,
"PartitionKey": "somPartition",
- "RowKey": "16",
+ "RowKey": "15",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:27.3782159Z",
+ "Timestamp": "2020-07-17T19:35:14.4024072Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A14.4891400Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 16",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:17:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:17:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:17:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:17:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90016",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "16",
- "DoubleTypeProperty": 16.0,
- "IntTypeProperty": 16
- },
- {
- "odata.type": "chrissscratch.testtableeauzc1r3",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.4252554Z\u0027\u0022",
- "odata.editLink": "testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
+ "DoubleTypeProperty": 16,
+ "IntTypeProperty": 16,
"PartitionKey": "somPartition",
- "RowKey": "17",
+ "RowKey": "16",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:27.4252554Z",
+ "Timestamp": "2020-07-17T19:35:14.4891400Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A14.5659400Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 17",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:18:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:18:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:18:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:18:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90017",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "17",
- "DoubleTypeProperty": 17.0,
- "IntTypeProperty": 17
- },
- {
- "odata.type": "chrissscratch.testtableeauzc1r3",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.466289Z\u0027\u0022",
- "odata.editLink": "testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
+ "DoubleTypeProperty": 17,
+ "IntTypeProperty": 17,
"PartitionKey": "somPartition",
- "RowKey": "18",
+ "RowKey": "17",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:27.466289Z",
+ "Timestamp": "2020-07-17T19:35:14.5659400Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A14.6423304Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 18",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:19:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:19:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:19:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:19:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90018",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "18",
- "DoubleTypeProperty": 18.0,
- "IntTypeProperty": 18
- },
- {
- "odata.type": "chrissscratch.testtableeauzc1r3",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.5133289Z\u0027\u0022",
- "odata.editLink": "testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
+ "DoubleTypeProperty": 18,
+ "IntTypeProperty": 18,
"PartitionKey": "somPartition",
- "RowKey": "19",
+ "RowKey": "18",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:27.5133289Z",
+ "Timestamp": "2020-07-17T19:35:14.6423304Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A14.7172872Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 19",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:20:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:20:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:20:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:20:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90019",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "19",
- "DoubleTypeProperty": 19.0,
- "IntTypeProperty": 19
- },
- {
- "odata.type": "chrissscratch.testtableeauzc1r3",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.560368Z\u0027\u0022",
- "odata.editLink": "testtableeauzc1r3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
+ "DoubleTypeProperty": 19,
+ "IntTypeProperty": 19,
"PartitionKey": "somPartition",
- "RowKey": "20",
+ "RowKey": "19",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:27.560368Z",
+ "Timestamp": "2020-07-17T19:35:14.7172872Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A14.7940872Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 20",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:21:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:21:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:21:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:21:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90020",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "20",
- "DoubleTypeProperty": 20.0,
- "IntTypeProperty": 20
+ "DoubleTypeProperty": 20,
+ "IntTypeProperty": 20,
+ "PartitionKey": "somPartition",
+ "RowKey": "20",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:14.7940872Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableeauzc1r3\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableeauzc1r3\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-ba9745da0275c242a288a87f06535297-e20a6f76ba1fb740-00",
+ "traceparent": "00-b1ed41f27843cd4cbbb66317bfef5f3e-7a5469bf44df244a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1987b1258c412b24080796c1f8370bd8",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:27 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "1987b1258c412b24080796c1f8370bd8",
- "x-ms-request-id": "20751204-b002-001b-2d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:35:14 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "1987b125-8c41-2b24-0807-96c1f8370bd8"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "256298768",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedEntitiesAreRoundtrippedWithProperOdataAnnoations.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedEntitiesAreRoundtrippedWithProperOdataAnnoations.json
index 7d2151d0f362..7bc7156edfdd 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedEntitiesAreRoundtrippedWithProperOdataAnnoations.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedEntitiesAreRoundtrippedWithProperOdataAnnoations.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-bcf9079fdd19e2478a8137b948a6ff4d-0806bb0e4d058d4a-00",
+ "traceparent": "00-6ab511bdc5c8e942aac4508021b384a8-d22228ec5ebfeb46-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6f9cad5b164b8144f941f8ddee905627",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:16:57 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:03 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable6nc5k2i3\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:16:58 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A16%3A58.1285896Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable6nc5k2i3\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "6f9cad5b164b8144f941f8ddee905627",
- "x-ms-request-id": "2074fb07-b002-001b-4121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "6f9cad5b-164b-8144-f941-f8ddee905627"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable6nc5k2i3\u0027)",
- "odata.editLink": "Tables(\u0027testtable6nc5k2i3\u0027)",
- "TableName": "testtable6nc5k2i3"
+ "TableName": "testtable6nc5k2i3",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable6nc5k2i3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable6nc5k2i3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-2179a6931cb33e4fada4a40802ebd6b3-6170aad48890834e-00",
+ "traceparent": "00-29007f6b95774747965718e95f43c524-cbba2558bb7b2d42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e6a757aaa444cca64774a759b91e689c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:16:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -83,141 +76,114 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:03 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.0427415Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable6nc5k2i3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:16:58 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A16%3A58.8738568Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable6nc5k2i3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "e6a757aaa444cca64774a759b91e689c",
- "x-ms-request-id": "2074fb1d-b002-001b-5221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "e6a757aa-a444-cca6-4774-a759b91e689c"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable6nc5k2i3/@Element",
- "odata.type": "chrissscratch.testtable6nc5k2i3",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable6nc5k2i3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.0427415Z\u0027\u0022",
- "odata.editLink": "testtable6nc5k2i3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable6nc5k2i3/$metadata#testtable6nc5k2i3/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A16%3A58.8738568Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:04.0427415Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:02:00Z",
+ "SomeDateProperty": "2020-01-01T01:02:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "1",
- "SomeDoubleProperty0": 1.0,
+ "SomeDoubleProperty0": 1,
"SomeDoubleProperty1": 1.1,
- "SomeIntProperty": 1
+ "SomeIntProperty": 1,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:16:58.8738568Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable6nc5k2i3()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%2701%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable6nc5k2i3()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%2701%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "34268fc11b2ece7ca713596d800544f5",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:16:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:03 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:16:58 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "34268fc11b2ece7ca713596d800544f5",
- "x-ms-request-id": "2074fb3e-b002-001b-6f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "34268fc1-1b2e-ce7c-a713-596d800544f5"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable6nc5k2i3",
"value": [
{
- "odata.type": "chrissscratch.testtable6nc5k2i3",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable6nc5k2i3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.0427415Z\u0027\u0022",
- "odata.editLink": "testtable6nc5k2i3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A16%3A58.8738568Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:04.0427415Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:02:00Z",
+ "SomeDateProperty": "2020-01-01T01:02:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "1",
- "SomeDoubleProperty0": 1.0,
+ "SomeDoubleProperty0": 1,
"SomeDoubleProperty1": 1.1,
- "SomeIntProperty": 1
+ "SomeIntProperty": 1,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:16:58.8738568Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable6nc5k2i3\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable6nc5k2i3\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-6c71cdb7022f634a88b64dcb36cf1cf2-603f5f5520dfbe4c-00",
+ "traceparent": "00-a6e1250a7696ad4a9e912ef7099aea2f-cbd7be64a8ca8a40-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "820a79636d82b6d206cf27d76feac7db",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:16:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:03 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "820a79636d82b6d206cf27d76feac7db",
- "x-ms-request-id": "2074fb57-b002-001b-0621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:16:58 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "820a7963-6d82-b6d2-06cf-27d76feac7db"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "241597715",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedEntitiesAreRoundtrippedWithProperOdataAnnoationsAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedEntitiesAreRoundtrippedWithProperOdataAnnoationsAsync.json
index dad315ccec32..2d232aa25e0a 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedEntitiesAreRoundtrippedWithProperOdataAnnoationsAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedEntitiesAreRoundtrippedWithProperOdataAnnoationsAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-220fcddce883e64b8e377712e483776d-cc6df0fc2b7ced4c-00",
+ "traceparent": "00-f37c437eff99e64297b8605714f16d7b-fc2cb063c5372d41-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2742e51539d354ee7deb092f3c1e872a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:33 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:27 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablehda2q563\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:34 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A33.9082760Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablehda2q563\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "2742e51539d354ee7deb092f3c1e872a",
- "x-ms-request-id": "2075121b-b002-001b-4421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "2742e515-39d3-54ee-7deb-092f3c1e872a"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablehda2q563\u0027)",
- "odata.editLink": "Tables(\u0027testtablehda2q563\u0027)",
- "TableName": "testtablehda2q563"
+ "TableName": "testtablehda2q563",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehda2q563?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehda2q563?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-dd556d2930d07943af2483e0f63b9157-34ac3ff5e4da444a-00",
+ "traceparent": "00-bbed0b70890ba041bcbd11bf5778c72b-973d09af45f70f4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4f04c1f630777a37bb476c74844c4658",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:34 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -83,141 +76,114 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:27 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.7785491Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablehda2q563(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:34 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A34.4349192Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablehda2q563(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "4f04c1f630777a37bb476c74844c4658",
- "x-ms-request-id": "20751234-b002-001b-5c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "4f04c1f6-3077-7a37-bb47-6c74844c4658"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehda2q563/@Element",
- "odata.type": "chrissscratch.testtablehda2q563",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehda2q563(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.7785491Z\u0027\u0022",
- "odata.editLink": "testtablehda2q563(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablehda2q563/$metadata#testtablehda2q563/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A34.4349192Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:27.7785491Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:02:00Z",
+ "SomeDateProperty": "2020-01-01T01:02:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "1",
- "SomeDoubleProperty0": 1.0,
+ "SomeDoubleProperty0": 1,
"SomeDoubleProperty1": 1.1,
- "SomeIntProperty": 1
+ "SomeIntProperty": 1,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:34.4349192Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehda2q563()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%2701%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehda2q563()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%2701%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "66da716f97dd6244e660f1780456334c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:34 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:27 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:34 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "66da716f97dd6244e660f1780456334c",
- "x-ms-request-id": "2075124c-b002-001b-7421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "66da716f-97dd-6244-e660-f1780456334c"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehda2q563",
"value": [
{
- "odata.type": "chrissscratch.testtablehda2q563",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehda2q563(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.7785491Z\u0027\u0022",
- "odata.editLink": "testtablehda2q563(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A34.4349192Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:27.7785491Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:02:00Z",
+ "SomeDateProperty": "2020-01-01T01:02:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "1",
- "SomeDoubleProperty0": 1.0,
+ "SomeDoubleProperty0": 1,
"SomeDoubleProperty1": 1.1,
- "SomeIntProperty": 1
+ "SomeIntProperty": 1,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:34.4349192Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablehda2q563\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablehda2q563\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-31ae7c0407791248ae46e0014da05a6a-59278b63d42e5c45-00",
+ "traceparent": "00-3a471cb07b39d44d9f18dcab45c31cd9-c5e150eab203a94b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "56fb9ee6c446e40fadc86b8ccc79cf30",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:34 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:27 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "56fb9ee6c446e40fadc86b8ccc79cf30",
- "x-ms-request-id": "20751255-b002-001b-7d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:17:34 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "56fb9ee6-c446-e40f-adc8-6b8ccc79cf30"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1519135660",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedEntitiesCanBeQueriedWithAndWithoutPagination(5).json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedEntitiesCanBeQueriedWithAndWithoutPagination(5).json
index f09510dbd55d..20da36aeb032 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedEntitiesCanBeQueriedWithAndWithoutPagination(5).json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedEntitiesCanBeQueriedWithAndWithoutPagination(5).json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-5d8a2376a260aa44b7c3b725afbd0f0f-dcc9f1ddb4358c4d-00",
+ "traceparent": "00-554fc31a766c1647ad5a14ac0f09c2f3-5a45a36929d64a48-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4919c5e9e738e3f2f2a1d2e91d8e8e09",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:08 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:13 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablejjw24y0d\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:09 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A08.5831176Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablejjw24y0d\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "4919c5e9e738e3f2f2a1d2e91d8e8e09",
- "x-ms-request-id": "20750455-b002-001b-5321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "4919c5e9-e738-e3f2-f2a1-d2e91d8e8e09"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablejjw24y0d\u0027)",
- "odata.editLink": "Tables(\u0027testtablejjw24y0d\u0027)",
- "TableName": "testtablejjw24y0d"
+ "TableName": "testtablejjw24y0d",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-b7c78e88a5f03d4eae5e843695e53ce3-78f28ac37a0d1942-00",
+ "traceparent": "00-e7e1bd0a388f984ea8e1964405bf8460-4ba27ba8c0be2f4c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "016b9873806fbcaf32988eb25af3d223",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:09 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -83,60 +76,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:13 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.4736148Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:09 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A09.2231176Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "016b9873806fbcaf32988eb25af3d223",
- "x-ms-request-id": "20750462-b002-001b-5f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "016b9873-806f-bcaf-3298-8eb25af3d223"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablejjw24y0d/@Element",
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.4736148Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d/$metadata#testtablejjw24y0d/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A09.2231176Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:13.4736148Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:02:00Z",
+ "SomeDateProperty": "2020-01-01T01:02:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "1",
- "SomeDoubleProperty0": 1.0,
+ "SomeDoubleProperty0": 1,
"SomeDoubleProperty1": 1.1,
- "SomeIntProperty": 1
+ "SomeIntProperty": 1,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:09.2231176Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-272b42646b81b54e88db24a282ae6c92-d12930e500088e4c-00",
+ "traceparent": "00-87cf15f2420b8744b7df8bee81a28f4d-045af67c8fd48e40-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "206c7211483108da3c968e6731d7304e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:09 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -160,60 +144,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:13 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.5186512Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:09 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A09.2995080Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "206c7211483108da3c968e6731d7304e",
- "x-ms-request-id": "2075046b-b002-001b-6821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "206c7211-4831-08da-3c96-8e6731d7304e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablejjw24y0d/@Element",
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.5186512Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d/$metadata#testtablejjw24y0d/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A09.2995080Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "02",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:13.5186512Z",
"SomeStringProperty": "This is table entity number 02",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:03:00Z",
+ "SomeDateProperty": "2020-01-01T01:03:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "2",
- "SomeDoubleProperty0": 2.0,
+ "SomeDoubleProperty0": 2,
"SomeDoubleProperty1": 2.1,
- "SomeIntProperty": 2
+ "SomeIntProperty": 2,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:09.2995080Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-320d2c761000144798a211d7c3164217-62be8de1f3c37a4e-00",
+ "traceparent": "00-c15b7c42670f734bb6bc915459fba5f6-49094d7a25a9fe42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "11968c9a67436913155c179f584088ff",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:09 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -237,60 +212,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:13 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.562688Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:09 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A09.3906440Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "11968c9a67436913155c179f584088ff",
- "x-ms-request-id": "20750471-b002-001b-6e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "11968c9a-6743-6913-155c-179f584088ff"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablejjw24y0d/@Element",
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.562688Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d/$metadata#testtablejjw24y0d/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A09.3906440Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "03",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:13.562688Z",
"SomeStringProperty": "This is table entity number 03",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:04:00Z",
+ "SomeDateProperty": "2020-01-01T01:04:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "3",
- "SomeDoubleProperty0": 3.0,
+ "SomeDoubleProperty0": 3,
"SomeDoubleProperty1": 3.1,
- "SomeIntProperty": 3
+ "SomeIntProperty": 3,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:09.3906440Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-78a1a25f099b604d8ed33edfedf82808-2cbdc95d8ddc2f40-00",
+ "traceparent": "00-db084999aa2e2447b572446434592267-8a1879cf90001748-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "aad8aece6d212ad8be62c4d8f1478b5a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:09 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -314,60 +280,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:13 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.605724Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:09 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A09.4658056Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "aad8aece6d212ad8be62c4d8f1478b5a",
- "x-ms-request-id": "2075047d-b002-001b-7921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "aad8aece-6d21-2ad8-be62-c4d8f1478b5a"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablejjw24y0d/@Element",
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.605724Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d/$metadata#testtablejjw24y0d/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A09.4658056Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "04",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:13.605724Z",
"SomeStringProperty": "This is table entity number 04",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:05:00Z",
+ "SomeDateProperty": "2020-01-01T01:05:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "4",
- "SomeDoubleProperty0": 4.0,
+ "SomeDoubleProperty0": 4,
"SomeDoubleProperty1": 4.1,
- "SomeIntProperty": 4
+ "SomeIntProperty": 4,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:09.4658056Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-5c10515726911c468c1113ab583b7806-c4709d36d29aa745-00",
+ "traceparent": "00-f4b0d421c400c04da9e851bb886645b7-aac780c8187cb746-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ce183f68c15da9e05e030ad5313ab0fc",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:09 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -391,60 +348,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:13 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.6507616Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:09 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A09.5407624Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ce183f68c15da9e05e030ad5313ab0fc",
- "x-ms-request-id": "2075048a-b002-001b-0521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "ce183f68-c15d-a9e0-5e03-0ad5313ab0fc"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablejjw24y0d/@Element",
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.6507616Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d/$metadata#testtablejjw24y0d/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A09.5407624Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "05",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:13.6507616Z",
"SomeStringProperty": "This is table entity number 05",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:06:00Z",
+ "SomeDateProperty": "2020-01-01T01:06:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90005",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "5",
- "SomeDoubleProperty0": 5.0,
+ "SomeDoubleProperty0": 5,
"SomeDoubleProperty1": 5.1,
- "SomeIntProperty": 5
+ "SomeIntProperty": 5,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:09.5407624Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-26e3d76615d2204a9e86ef3c007d7b2a-32f771141105ef48-00",
+ "traceparent": "00-e7d1ed89a3558044bfb6b65e3a83047b-ced3ce2d95dd3044-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "82998e0e85fe2c2db46b53e1a33b77cd",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:09 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -468,60 +416,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:13 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.6947993Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:09 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A09.6246280Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "82998e0e85fe2c2db46b53e1a33b77cd",
- "x-ms-request-id": "20750497-b002-001b-1221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "82998e0e-85fe-2c2d-b46b-53e1a33b77cd"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablejjw24y0d/@Element",
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.6947993Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d/$metadata#testtablejjw24y0d/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A09.6246280Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "06",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:13.6947993Z",
"SomeStringProperty": "This is table entity number 06",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:07:00Z",
+ "SomeDateProperty": "2020-01-01T01:07:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90006",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "6",
- "SomeDoubleProperty0": 6.0,
+ "SomeDoubleProperty0": 6,
"SomeDoubleProperty1": 6.1,
- "SomeIntProperty": 6
+ "SomeIntProperty": 6,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:09.6246280Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f0614ab115e5bb49bb17efed1b6fd7a1-3f0e44b7f9bc1947-00",
+ "traceparent": "00-cacb8ebf2f69844ab3889be0e529cfb9-7f8bffdc1aee8c43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1837bcd0ba280da2ce2e4b1d6303f883",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:10 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -545,60 +484,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:13 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.736834Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:09 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A09.7024520Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "1837bcd0ba280da2ce2e4b1d6303f883",
- "x-ms-request-id": "2075049e-b002-001b-1921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "1837bcd0-ba28-0da2-ce2e-4b1d6303f883"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablejjw24y0d/@Element",
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.736834Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d/$metadata#testtablejjw24y0d/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A09.7024520Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "07",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:13.736834Z",
"SomeStringProperty": "This is table entity number 07",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:08:00Z",
+ "SomeDateProperty": "2020-01-01T01:08:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90007",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "7",
- "SomeDoubleProperty0": 7.0,
+ "SomeDoubleProperty0": 7,
"SomeDoubleProperty1": 7.1,
- "SomeIntProperty": 7
+ "SomeIntProperty": 7,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:09.7024520Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-3cfd9ffc52af4745aee2f3bf81e16128-70ed08aa3895f241-00",
+ "traceparent": "00-9311f8bc23c5114e850765fd0298b3a8-2fdbf5e879563e44-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "62c9c7b109aee25c12eb1af16dfe0623",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:10 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -622,60 +552,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:13 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.7948826Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:09 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A09.7801736Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "62c9c7b109aee25c12eb1af16dfe0623",
- "x-ms-request-id": "207504ac-b002-001b-2721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "62c9c7b1-09ae-e25c-12eb-1af16dfe0623"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablejjw24y0d/@Element",
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.7948826Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d/$metadata#testtablejjw24y0d/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A09.7801736Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "08",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:13.7948826Z",
"SomeStringProperty": "This is table entity number 08",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:09:00Z",
+ "SomeDateProperty": "2020-01-01T01:09:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90008",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "8",
- "SomeDoubleProperty0": 8.0,
+ "SomeDoubleProperty0": 8,
"SomeDoubleProperty1": 8.1,
- "SomeIntProperty": 8
+ "SomeIntProperty": 8,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:09.7801736Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-4d47e0583c75414ab329e35083045769-5507873fd4478b4e-00",
+ "traceparent": "00-45e7e0c1d81a7b4a93a7480540bf99e5-2fa9cd5294130442-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "75043c8c980254d4ec8cb3cf3a0fc9b1",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:10 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -699,60 +620,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:13 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.8449244Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:09 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A09.8585096Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "75043c8c980254d4ec8cb3cf3a0fc9b1",
- "x-ms-request-id": "207504ba-b002-001b-3521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "75043c8c-9802-54d4-ec8c-b3cf3a0fc9b1"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablejjw24y0d/@Element",
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.8449244Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d/$metadata#testtablejjw24y0d/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A09.8585096Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "09",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:13.8449244Z",
"SomeStringProperty": "This is table entity number 09",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:10:00Z",
+ "SomeDateProperty": "2020-01-01T01:10:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90009",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "9",
- "SomeDoubleProperty0": 9.0,
+ "SomeDoubleProperty0": 9,
"SomeDoubleProperty1": 9.1,
- "SomeIntProperty": 9
+ "SomeIntProperty": 9,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:09.8585096Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-b4dfb20a13bafb4ab7b060daf3b5ca88-1a6614bfa6a2064b-00",
+ "traceparent": "00-4170983d834c204a90afb9571c7e3d3c-fdfebd0d9835d640-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "db2fcf721471c71f6055053ca0b09fcf",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:10 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -776,60 +688,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:13 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.8889621Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:09 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A09.9350024Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "db2fcf721471c71f6055053ca0b09fcf",
- "x-ms-request-id": "207504c5-b002-001b-4021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "db2fcf72-1471-c71f-6055-053ca0b09fcf"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablejjw24y0d/@Element",
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.8889621Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d/$metadata#testtablejjw24y0d/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A09.9350024Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "10",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:13.8889621Z",
"SomeStringProperty": "This is table entity number 10",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:11:00Z",
+ "SomeDateProperty": "2020-01-01T01:11:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90010",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "10",
- "SomeDoubleProperty0": 10.0,
+ "SomeDoubleProperty0": 10,
"SomeDoubleProperty1": 10.1,
- "SomeIntProperty": 10
+ "SomeIntProperty": 10,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:09.9350024Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c102acf7f64cdc43a37c226cfe7751d0-5d5b6872d3e3bc44-00",
+ "traceparent": "00-34fddc918de8a649a425bf03c016171a-976c6b724ec1074b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2691272883fe1980f3757622558ca803",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:10 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -853,60 +756,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:13 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.9339989Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:09 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A10.0095496Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "2691272883fe1980f3757622558ca803",
- "x-ms-request-id": "207504d5-b002-001b-5021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "26912728-83fe-1980-f375-7622558ca803"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablejjw24y0d/@Element",
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.9339989Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d/$metadata#testtablejjw24y0d/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A10.0095496Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "11",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:13.9339989Z",
"SomeStringProperty": "This is table entity number 11",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:12:00Z",
+ "SomeDateProperty": "2020-01-01T01:12:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90011",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "11",
- "SomeDoubleProperty0": 11.0,
+ "SomeDoubleProperty0": 11,
"SomeDoubleProperty1": 11.1,
- "SomeIntProperty": 11
+ "SomeIntProperty": 11,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:10.0095496Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a609b0bf191bb5478577bebd0a2c85a7-3ab4c97667a73a44-00",
+ "traceparent": "00-c1f8818e012e8d4bb8646b3154e8bc31-12a840c0515b094b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9e7e68222acf77b21d3c14ad9297b43b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:10 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -930,60 +824,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:13 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.976034Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:09 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A10.0836872Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "9e7e68222acf77b21d3c14ad9297b43b",
- "x-ms-request-id": "207504dd-b002-001b-5821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "9e7e6822-2acf-77b2-1d3c-14ad9297b43b"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablejjw24y0d/@Element",
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.976034Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d/$metadata#testtablejjw24y0d/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A10.0836872Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "12",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:13.976034Z",
"SomeStringProperty": "This is table entity number 12",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:13:00Z",
+ "SomeDateProperty": "2020-01-01T01:13:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90012",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "12",
- "SomeDoubleProperty0": 12.0,
+ "SomeDoubleProperty0": 12,
"SomeDoubleProperty1": 12.1,
- "SomeIntProperty": 12
+ "SomeIntProperty": 12,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:10.0836872Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-90d4d4cf414bdc48989414a32d1ecc6e-2b19be28c4206440-00",
+ "traceparent": "00-14d1e17c9e8e2343913bc286c4948530-5af43a9d414c9842-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "12a7e4eca27deeb24e15e7fb9efc72d4",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:10 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1007,60 +892,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:13 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A14.01907Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:10 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A10.1577224Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "12a7e4eca27deeb24e15e7fb9efc72d4",
- "x-ms-request-id": "207504eb-b002-001b-6421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "12a7e4ec-a27d-eeb2-4e15-e7fb9efc72d4"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablejjw24y0d/@Element",
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A14.01907Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d/$metadata#testtablejjw24y0d/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A10.1577224Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "13",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:14.01907Z",
"SomeStringProperty": "This is table entity number 13",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:14:00Z",
+ "SomeDateProperty": "2020-01-01T01:14:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90013",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "13",
- "SomeDoubleProperty0": 13.0,
+ "SomeDoubleProperty0": 13,
"SomeDoubleProperty1": 13.1,
- "SomeIntProperty": 13
+ "SomeIntProperty": 13,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:10.1577224Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-3838e6e21368154f8980b551abf1187f-c677f3cd527fb445-00",
+ "traceparent": "00-2e86fdc54f6a2342be68c3902a5feb2c-3b2e314f948c0446-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "371902ac0132fd00751a09c16ed2875b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:10 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1084,60 +960,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:13 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A14.0621056Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:10 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A10.2328840Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "371902ac0132fd00751a09c16ed2875b",
- "x-ms-request-id": "207504f8-b002-001b-6e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "371902ac-0132-fd00-751a-09c16ed2875b"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablejjw24y0d/@Element",
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A14.0621056Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d/$metadata#testtablejjw24y0d/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A10.2328840Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "14",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:14.0621056Z",
"SomeStringProperty": "This is table entity number 14",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:15:00Z",
+ "SomeDateProperty": "2020-01-01T01:15:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90014",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "14",
- "SomeDoubleProperty0": 14.0,
+ "SomeDoubleProperty0": 14,
"SomeDoubleProperty1": 14.1,
- "SomeIntProperty": 14
+ "SomeIntProperty": 14,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:10.2328840Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a60fa5c3fb24f64c9c4d94f9f87ab537-455f7b9e43bc3b42-00",
+ "traceparent": "00-ff49a963241c1a47a9ba565d25f645f1-1e290b4366f5db46-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "70353ac195e48085b68f4fb943b6d820",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:10 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1161,60 +1028,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:13 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A14.1051424Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:10 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A10.3139848Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "70353ac195e48085b68f4fb943b6d820",
- "x-ms-request-id": "20750507-b002-001b-7921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "70353ac1-95e4-8085-b68f-4fb943b6d820"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablejjw24y0d/@Element",
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A14.1051424Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d/$metadata#testtablejjw24y0d/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A10.3139848Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "15",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:14.1051424Z",
"SomeStringProperty": "This is table entity number 15",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:16:00Z",
+ "SomeDateProperty": "2020-01-01T01:16:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90015",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "15",
- "SomeDoubleProperty0": 15.0,
+ "SomeDoubleProperty0": 15,
"SomeDoubleProperty1": 15.1,
- "SomeIntProperty": 15
+ "SomeIntProperty": 15,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:10.3139848Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d6bd3d19f231aa4ea3e2f5f6e982afce-42849fcc09e6b347-00",
+ "traceparent": "00-159f76bd3b590b45ba8f62277c323c43-dc11bfd7ede80a4b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8f0140ca7d7eeb09e3a99c6399f0807c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:10 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1238,60 +1096,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:13 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A14.1491788Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:10 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A10.3879176Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "8f0140ca7d7eeb09e3a99c6399f0807c",
- "x-ms-request-id": "20750510-b002-001b-0221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "8f0140ca-7d7e-eb09-e3a9-9c6399f0807c"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablejjw24y0d/@Element",
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A14.1491788Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d/$metadata#testtablejjw24y0d/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A10.3879176Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "16",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:14.1491788Z",
"SomeStringProperty": "This is table entity number 16",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:17:00Z",
+ "SomeDateProperty": "2020-01-01T01:17:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90016",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "16",
- "SomeDoubleProperty0": 16.0,
+ "SomeDoubleProperty0": 16,
"SomeDoubleProperty1": 16.1,
- "SomeIntProperty": 16
+ "SomeIntProperty": 16,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:10.3879176Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-827f5593ba9b814aa537cacddd8d0a8b-869ec63065031f42-00",
+ "traceparent": "00-747983c0a7cee849b3402090c86a3a71-44adb91a8908e248-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "643a8b8e01c617ef7d9980a2b147babe",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:10 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1315,60 +1164,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:14 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A14.2072278Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:10 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A10.4625672Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "643a8b8e01c617ef7d9980a2b147babe",
- "x-ms-request-id": "2075051c-b002-001b-0c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "643a8b8e-01c6-17ef-7d99-80a2b147babe"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablejjw24y0d/@Element",
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A14.2072278Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d/$metadata#testtablejjw24y0d/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A10.4625672Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "17",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:14.2072278Z",
"SomeStringProperty": "This is table entity number 17",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:18:00Z",
+ "SomeDateProperty": "2020-01-01T01:18:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90017",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "17",
- "SomeDoubleProperty0": 17.0,
+ "SomeDoubleProperty0": 17,
"SomeDoubleProperty1": 17.1,
- "SomeIntProperty": 17
+ "SomeIntProperty": 17,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:10.4625672Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-289c78faa78f144693712ab00bb63e16-4674e864d7002144-00",
+ "traceparent": "00-a5d3a19d02874d459ff2e3ef2c9aa93f-401532de90cdfe46-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2df7e841f8d144dd304a8d3af822e6c5",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:10 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1392,60 +1232,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:14 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A14.2522654Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:10 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A10.5369096Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "2df7e841f8d144dd304a8d3af822e6c5",
- "x-ms-request-id": "20750528-b002-001b-1821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "2df7e841-f8d1-44dd-304a-8d3af822e6c5"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablejjw24y0d/@Element",
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A14.2522654Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d/$metadata#testtablejjw24y0d/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A10.5369096Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "18",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:14.2522654Z",
"SomeStringProperty": "This is table entity number 18",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:19:00Z",
+ "SomeDateProperty": "2020-01-01T01:19:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90018",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "18",
- "SomeDoubleProperty0": 18.0,
+ "SomeDoubleProperty0": 18,
"SomeDoubleProperty1": 18.1,
- "SomeIntProperty": 18
+ "SomeIntProperty": 18,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:10.5369096Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c4d2b61e33e3184c98a8a7a55f568627-00ed05dba620bb49-00",
+ "traceparent": "00-e68935b97ca25a4bb23114cb09a852cd-f11e067d10e1a247-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b72bd30f747cc85951e911e4fc67399c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:10 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1469,60 +1300,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:14 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A14.2922993Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:10 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A10.6112520Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "b72bd30f747cc85951e911e4fc67399c",
- "x-ms-request-id": "20750535-b002-001b-2521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "b72bd30f-747c-c859-51e9-11e4fc67399c"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablejjw24y0d/@Element",
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A14.2922993Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d/$metadata#testtablejjw24y0d/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A10.6112520Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "19",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:14.2922993Z",
"SomeStringProperty": "This is table entity number 19",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:20:00Z",
+ "SomeDateProperty": "2020-01-01T01:20:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90019",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "19",
- "SomeDoubleProperty0": 19.0,
+ "SomeDoubleProperty0": 19,
"SomeDoubleProperty1": 19.1,
- "SomeIntProperty": 19
+ "SomeIntProperty": 19,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:10.6112520Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-2609ba2eaf76d043a2dbcb1d5548b129-1c76365db8a3ee4e-00",
+ "traceparent": "00-756dbbde0aca594982bc1abce60543e5-4253567848f1d043-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b121deef52f995aaaef6347c74b41e5b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:11 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1546,676 +1368,571 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:14 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A14.3373357Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:10 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A10.6861064Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "b121deef52f995aaaef6347c74b41e5b",
- "x-ms-request-id": "20750541-b002-001b-3121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "b121deef-52f9-95aa-aef6-347c74b41e5b"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablejjw24y0d/@Element",
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A14.3373357Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d/$metadata#testtablejjw24y0d/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A10.6861064Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "20",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:14.3373357Z",
"SomeStringProperty": "This is table entity number 20",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:21:00Z",
+ "SomeDateProperty": "2020-01-01T01:21:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90020",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "20",
- "SomeDoubleProperty0": 20.0,
+ "SomeDoubleProperty0": 20,
"SomeDoubleProperty1": 20.1,
- "SomeIntProperty": 20
+ "SomeIntProperty": 20,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:10.6861064Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "de93bab3021bcd428e2edce7e6f947c9",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:11 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:14 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:10 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "de93bab3021bcd428e2edce7e6f947c9",
- "x-ms-continuation-NextPartitionKey": "1!16!c29tUGFydGl0aW9u",
- "x-ms-continuation-NextRowKey": "1!4!MDY-",
- "x-ms-request-id": "2075054d-b002-001b-3c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-continuation-NextPartitionKey": "{\u0022token\u0022:\u0022b1w3APsDMHYFAAAAAAAAAA==\u0022,\u0022range\u0022:{\u0022min\u0022:\u0022\u0022,\u0022max\u0022:\u0022FF\u0022}}",
+ "x-ms-continuation-NextRowKey": "NA",
+ "x-ms-request-id": "de93bab3-021b-cd42-8e2e-dce7e6f947c9"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablejjw24y0d",
"value": [
{
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.4736148Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A09.2231176Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:13.4736148Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:02:00Z",
+ "SomeDateProperty": "2020-01-01T01:02:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "1",
- "SomeDoubleProperty0": 1.0,
+ "SomeDoubleProperty0": 1,
"SomeDoubleProperty1": 1.1,
- "SomeIntProperty": 1
+ "SomeIntProperty": 1,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:09.2231176Z"
},
{
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.5186512Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A09.2995080Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "02",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:13.5186512Z",
"SomeStringProperty": "This is table entity number 02",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:03:00Z",
+ "SomeDateProperty": "2020-01-01T01:03:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "2",
- "SomeDoubleProperty0": 2.0,
+ "SomeDoubleProperty0": 2,
"SomeDoubleProperty1": 2.1,
- "SomeIntProperty": 2
+ "SomeIntProperty": 2,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:09.2995080Z"
},
{
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.562688Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A09.3906440Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "03",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:13.562688Z",
"SomeStringProperty": "This is table entity number 03",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:04:00Z",
+ "SomeDateProperty": "2020-01-01T01:04:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "3",
- "SomeDoubleProperty0": 3.0,
+ "SomeDoubleProperty0": 3,
"SomeDoubleProperty1": 3.1,
- "SomeIntProperty": 3
+ "SomeIntProperty": 3,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:09.3906440Z"
},
{
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.605724Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A09.4658056Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "04",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:13.605724Z",
"SomeStringProperty": "This is table entity number 04",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:05:00Z",
+ "SomeDateProperty": "2020-01-01T01:05:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "4",
- "SomeDoubleProperty0": 4.0,
+ "SomeDoubleProperty0": 4,
"SomeDoubleProperty1": 4.1,
- "SomeIntProperty": 4
+ "SomeIntProperty": 4,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:09.4658056Z"
},
{
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.6507616Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A09.5407624Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "05",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:13.6507616Z",
"SomeStringProperty": "This is table entity number 05",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:06:00Z",
+ "SomeDateProperty": "2020-01-01T01:06:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90005",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "5",
- "SomeDoubleProperty0": 5.0,
+ "SomeDoubleProperty0": 5,
"SomeDoubleProperty1": 5.1,
- "SomeIntProperty": 5
+ "SomeIntProperty": 5,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:09.5407624Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextPartitionKey=1%2116%21c29tUGFydGl0aW9u\u0026NextRowKey=1%214%21MDY-",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextPartitionKey=%7B%22token%22%3A%22b1w3APsDMHYFAAAAAAAAAA%3D%3D%22%2C%22range%22%3A%7B%22min%22%3A%22%22%2C%22max%22%3A%22FF%22%7D%7D\u0026NextRowKey=NA",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1a4bf0103500bdcc2895098540dd549c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:11 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:14 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:10 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "1a4bf0103500bdcc2895098540dd549c",
- "x-ms-continuation-NextPartitionKey": "1!16!c29tUGFydGl0aW9u",
- "x-ms-continuation-NextRowKey": "1!4!MTE-",
- "x-ms-request-id": "2075055c-b002-001b-4b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-continuation-NextPartitionKey": "{\u0022token\u0022:\u0022b1w3APsDMHYKAAAAAAAAAA==\u0022,\u0022range\u0022:{\u0022min\u0022:\u0022\u0022,\u0022max\u0022:\u0022FF\u0022}}",
+ "x-ms-continuation-NextRowKey": "NA",
+ "x-ms-request-id": "1a4bf010-3500-bdcc-2895-098540dd549c"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablejjw24y0d",
"value": [
{
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.6947993Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A09.6246280Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "06",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:13.6947993Z",
"SomeStringProperty": "This is table entity number 06",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:07:00Z",
+ "SomeDateProperty": "2020-01-01T01:07:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90006",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "6",
- "SomeDoubleProperty0": 6.0,
+ "SomeDoubleProperty0": 6,
"SomeDoubleProperty1": 6.1,
- "SomeIntProperty": 6
+ "SomeIntProperty": 6,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:09.6246280Z"
},
{
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.736834Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A09.7024520Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "07",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:13.736834Z",
"SomeStringProperty": "This is table entity number 07",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:08:00Z",
+ "SomeDateProperty": "2020-01-01T01:08:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90007",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "7",
- "SomeDoubleProperty0": 7.0,
+ "SomeDoubleProperty0": 7,
"SomeDoubleProperty1": 7.1,
- "SomeIntProperty": 7
+ "SomeIntProperty": 7,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:09.7024520Z"
},
{
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.7948826Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A09.7801736Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "08",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:13.7948826Z",
"SomeStringProperty": "This is table entity number 08",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:09:00Z",
+ "SomeDateProperty": "2020-01-01T01:09:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90008",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "8",
- "SomeDoubleProperty0": 8.0,
+ "SomeDoubleProperty0": 8,
"SomeDoubleProperty1": 8.1,
- "SomeIntProperty": 8
+ "SomeIntProperty": 8,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:09.7801736Z"
},
{
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.8449244Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A09.8585096Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "09",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:13.8449244Z",
"SomeStringProperty": "This is table entity number 09",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:10:00Z",
+ "SomeDateProperty": "2020-01-01T01:10:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90009",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "9",
- "SomeDoubleProperty0": 9.0,
+ "SomeDoubleProperty0": 9,
"SomeDoubleProperty1": 9.1,
- "SomeIntProperty": 9
+ "SomeIntProperty": 9,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:09.8585096Z"
},
{
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.8889621Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A09.9350024Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "10",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:13.8889621Z",
"SomeStringProperty": "This is table entity number 10",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:11:00Z",
+ "SomeDateProperty": "2020-01-01T01:11:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90010",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "10",
- "SomeDoubleProperty0": 10.0,
+ "SomeDoubleProperty0": 10,
"SomeDoubleProperty1": 10.1,
- "SomeIntProperty": 10
+ "SomeIntProperty": 10,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:09.9350024Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextPartitionKey=1%2116%21c29tUGFydGl0aW9u\u0026NextRowKey=1%214%21MTE-",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextPartitionKey=%7B%22token%22%3A%22b1w3APsDMHYKAAAAAAAAAA%3D%3D%22%2C%22range%22%3A%7B%22min%22%3A%22%22%2C%22max%22%3A%22FF%22%7D%7D\u0026NextRowKey=NA",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4131b6cb5bd4ec809b5422ca75c2afb4",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:11 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:14 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:10 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "4131b6cb5bd4ec809b5422ca75c2afb4",
- "x-ms-continuation-NextPartitionKey": "1!16!c29tUGFydGl0aW9u",
- "x-ms-continuation-NextRowKey": "1!4!MTY-",
- "x-ms-request-id": "20750575-b002-001b-6221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-continuation-NextPartitionKey": "{\u0022token\u0022:\u0022b1w3APsDMHYPAAAAAAAAAA==\u0022,\u0022range\u0022:{\u0022min\u0022:\u0022\u0022,\u0022max\u0022:\u0022FF\u0022}}",
+ "x-ms-continuation-NextRowKey": "NA",
+ "x-ms-request-id": "4131b6cb-5bd4-ec80-9b54-22ca75c2afb4"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablejjw24y0d",
"value": [
{
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.9339989Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A10.0095496Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "11",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:13.9339989Z",
"SomeStringProperty": "This is table entity number 11",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:12:00Z",
+ "SomeDateProperty": "2020-01-01T01:12:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90011",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "11",
- "SomeDoubleProperty0": 11.0,
+ "SomeDoubleProperty0": 11,
"SomeDoubleProperty1": 11.1,
- "SomeIntProperty": 11
+ "SomeIntProperty": 11,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:10.0095496Z"
},
{
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.976034Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A10.0836872Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "12",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:13.976034Z",
"SomeStringProperty": "This is table entity number 12",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:13:00Z",
+ "SomeDateProperty": "2020-01-01T01:13:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90012",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "12",
- "SomeDoubleProperty0": 12.0,
+ "SomeDoubleProperty0": 12,
"SomeDoubleProperty1": 12.1,
- "SomeIntProperty": 12
+ "SomeIntProperty": 12,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:10.0836872Z"
},
{
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A14.01907Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A10.1577224Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "13",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:14.01907Z",
"SomeStringProperty": "This is table entity number 13",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:14:00Z",
+ "SomeDateProperty": "2020-01-01T01:14:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90013",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "13",
- "SomeDoubleProperty0": 13.0,
+ "SomeDoubleProperty0": 13,
"SomeDoubleProperty1": 13.1,
- "SomeIntProperty": 13
+ "SomeIntProperty": 13,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:10.1577224Z"
},
{
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A14.0621056Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A10.2328840Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "14",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:14.0621056Z",
"SomeStringProperty": "This is table entity number 14",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:15:00Z",
+ "SomeDateProperty": "2020-01-01T01:15:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90014",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "14",
- "SomeDoubleProperty0": 14.0,
+ "SomeDoubleProperty0": 14,
"SomeDoubleProperty1": 14.1,
- "SomeIntProperty": 14
+ "SomeIntProperty": 14,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:10.2328840Z"
},
{
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A14.1051424Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A10.3139848Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "15",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:14.1051424Z",
"SomeStringProperty": "This is table entity number 15",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:16:00Z",
+ "SomeDateProperty": "2020-01-01T01:16:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90015",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "15",
- "SomeDoubleProperty0": 15.0,
+ "SomeDoubleProperty0": 15,
"SomeDoubleProperty1": 15.1,
- "SomeIntProperty": 15
+ "SomeIntProperty": 15,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:10.3139848Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextPartitionKey=1%2116%21c29tUGFydGl0aW9u\u0026NextRowKey=1%214%21MTY-",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablejjw24y0d()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextPartitionKey=%7B%22token%22%3A%22b1w3APsDMHYPAAAAAAAAAA%3D%3D%22%2C%22range%22%3A%7B%22min%22%3A%22%22%2C%22max%22%3A%22FF%22%7D%7D\u0026NextRowKey=NA",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "836c6baf03697e5aeed5b586f9bd8db1",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:11 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:14 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:10 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "836c6baf03697e5aeed5b586f9bd8db1",
- "x-ms-request-id": "2075057e-b002-001b-6b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "836c6baf-0369-7e5a-eed5-b586f9bd8db1"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablejjw24y0d",
"value": [
{
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A14.1491788Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A10.3879176Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "16",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:14.1491788Z",
"SomeStringProperty": "This is table entity number 16",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:17:00Z",
+ "SomeDateProperty": "2020-01-01T01:17:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90016",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "16",
- "SomeDoubleProperty0": 16.0,
+ "SomeDoubleProperty0": 16,
"SomeDoubleProperty1": 16.1,
- "SomeIntProperty": 16
+ "SomeIntProperty": 16,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:10.3879176Z"
},
{
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A14.2072278Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A10.4625672Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "17",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:14.2072278Z",
"SomeStringProperty": "This is table entity number 17",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:18:00Z",
+ "SomeDateProperty": "2020-01-01T01:18:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90017",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "17",
- "SomeDoubleProperty0": 17.0,
+ "SomeDoubleProperty0": 17,
"SomeDoubleProperty1": 17.1,
- "SomeIntProperty": 17
+ "SomeIntProperty": 17,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:10.4625672Z"
},
{
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A14.2522654Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A10.5369096Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "18",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:14.2522654Z",
"SomeStringProperty": "This is table entity number 18",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:19:00Z",
+ "SomeDateProperty": "2020-01-01T01:19:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90018",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "18",
- "SomeDoubleProperty0": 18.0,
+ "SomeDoubleProperty0": 18,
"SomeDoubleProperty1": 18.1,
- "SomeIntProperty": 18
+ "SomeIntProperty": 18,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:10.5369096Z"
},
{
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A14.2922993Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A10.6112520Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "19",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:14.2922993Z",
"SomeStringProperty": "This is table entity number 19",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:20:00Z",
+ "SomeDateProperty": "2020-01-01T01:20:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90019",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "19",
- "SomeDoubleProperty0": 19.0,
+ "SomeDoubleProperty0": 19,
"SomeDoubleProperty1": 19.1,
- "SomeIntProperty": 19
+ "SomeIntProperty": 19,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:10.6112520Z"
},
{
- "odata.type": "chrissscratch.testtablejjw24y0d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A14.3373357Z\u0027\u0022",
- "odata.editLink": "testtablejjw24y0d(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A10.6861064Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "20",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:14.3373357Z",
"SomeStringProperty": "This is table entity number 20",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:21:00Z",
+ "SomeDateProperty": "2020-01-01T01:21:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90020",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "20",
- "SomeDoubleProperty0": 20.0,
+ "SomeDoubleProperty0": 20,
"SomeDoubleProperty1": 20.1,
- "SomeIntProperty": 20
+ "SomeIntProperty": 20,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:10.6861064Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablejjw24y0d\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablejjw24y0d\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-f6b49f9ee574334eb9541520afaf24e9-149a3022a4932947-00",
+ "traceparent": "00-5fc069b5d6ea7a4591554e16d4b89a6c-c50d3c75ad349043-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2f1c3fda05c8b4f4705e7fac12024765",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:11 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:14 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "2f1c3fda05c8b4f4705e7fac12024765",
- "x-ms-request-id": "20750585-b002-001b-7221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:35:11 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "2f1c3fda-05c8-b4f4-705e-7fac12024765"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1665077453",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedEntitiesCanBeQueriedWithAndWithoutPagination(5)Async.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedEntitiesCanBeQueriedWithAndWithoutPagination(5)Async.json
index 4383609f21d7..2e48e5dd5b9a 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedEntitiesCanBeQueriedWithAndWithoutPagination(5)Async.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedEntitiesCanBeQueriedWithAndWithoutPagination(5)Async.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9c252189952db64e9ada04f955e7b57f-3d379aaf164ea644-00",
+ "traceparent": "00-766c075c00ce47498b58f9c5e9323790-ea59536685898043-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "57aeabaed38c51b248f05af56fe62aa1",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:37 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:47 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:36 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable3mzbt9gm\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:47 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A47.1442440Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable3mzbt9gm\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "57aeabaed38c51b248f05af56fe62aa1",
- "x-ms-request-id": "20751bd8-b002-001b-7b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "57aeabae-d38c-51b2-48f0-5af56fe62aa1"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable3mzbt9gm\u0027)",
- "odata.editLink": "Tables(\u0027testtable3mzbt9gm\u0027)",
- "TableName": "testtable3mzbt9gm"
+ "TableName": "testtable3mzbt9gm",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1c653e034872224ab1d3d9006ee62c9a-bec8d7b671ad7d4b-00",
+ "traceparent": "00-ae8a3ac40eb266478d7dfdaac11a137f-70f08da8c0fa9c4f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c51bf0255b5c58f4e2a2117cf21a3f47",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:37 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -83,60 +76,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:36 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.0292275Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:47 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A47.7928456Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c51bf0255b5c58f4e2a2117cf21a3f47",
- "x-ms-request-id": "20751be0-b002-001b-0221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "c51bf025-5b5c-58f4-e2a2-117cf21a3f47"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3mzbt9gm/@Element",
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.0292275Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm/$metadata#testtable3mzbt9gm/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A47.7928456Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.0292275Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:02:00Z",
+ "SomeDateProperty": "2020-01-01T01:02:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "1",
- "SomeDoubleProperty0": 1.0,
+ "SomeDoubleProperty0": 1,
"SomeDoubleProperty1": 1.1,
- "SomeIntProperty": 1
+ "SomeIntProperty": 1,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:47.7928456Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9eec039e89aaef4ab038c50389985453-b221e34f1ffbd542-00",
+ "traceparent": "00-433b1a4499f3004980b4ef96ea3ce7df-4d0737ee2fd00d42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "37e0875415f28fb42fed6632557440c4",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:37 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -160,60 +144,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:36 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.0732645Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:47 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A47.8688264Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "37e0875415f28fb42fed6632557440c4",
- "x-ms-request-id": "20751be9-b002-001b-0921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "37e08754-15f2-8fb4-2fed-6632557440c4"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3mzbt9gm/@Element",
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.0732645Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm/$metadata#testtable3mzbt9gm/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A47.8688264Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "02",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.0732645Z",
"SomeStringProperty": "This is table entity number 02",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:03:00Z",
+ "SomeDateProperty": "2020-01-01T01:03:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "2",
- "SomeDoubleProperty0": 2.0,
+ "SomeDoubleProperty0": 2,
"SomeDoubleProperty1": 2.1,
- "SomeIntProperty": 2
+ "SomeIntProperty": 2,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:47.8688264Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1f03be2526fc024a9cbb5de495bec1a3-2b408b4cc068814a-00",
+ "traceparent": "00-a92340622398cb4bb1ff4caeca518a55-b0a05f43468d2d4b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2f1c95fb4082528db65575e9c1365e2d",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:37 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -237,60 +212,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:36 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.1193027Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:47 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A47.9430664Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "2f1c95fb4082528db65575e9c1365e2d",
- "x-ms-request-id": "20751bf8-b002-001b-1821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "2f1c95fb-4082-528d-b655-75e9c1365e2d"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3mzbt9gm/@Element",
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.1193027Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm/$metadata#testtable3mzbt9gm/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A47.9430664Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "03",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.1193027Z",
"SomeStringProperty": "This is table entity number 03",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:04:00Z",
+ "SomeDateProperty": "2020-01-01T01:04:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "3",
- "SomeDoubleProperty0": 3.0,
+ "SomeDoubleProperty0": 3,
"SomeDoubleProperty1": 3.1,
- "SomeIntProperty": 3
+ "SomeIntProperty": 3,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:47.9430664Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-386930f82e2bdd44a5d944b44d1c4bb2-6b76f7868c46e34c-00",
+ "traceparent": "00-9744de99ae8b5646be7f2fcfc4325d19-81dde79c794f7e40-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e7a013b1f3060faf3c8c966ff5c2026d",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:37 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -314,60 +280,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:36 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.1663422Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:47 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.0186376Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "e7a013b1f3060faf3c8c966ff5c2026d",
- "x-ms-request-id": "20751c05-b002-001b-2321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "e7a013b1-f306-0faf-3c8c-966ff5c2026d"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3mzbt9gm/@Element",
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.1663422Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm/$metadata#testtable3mzbt9gm/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.0186376Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "04",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.1663422Z",
"SomeStringProperty": "This is table entity number 04",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:05:00Z",
+ "SomeDateProperty": "2020-01-01T01:05:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "4",
- "SomeDoubleProperty0": 4.0,
+ "SomeDoubleProperty0": 4,
"SomeDoubleProperty1": 4.1,
- "SomeIntProperty": 4
+ "SomeIntProperty": 4,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:48.0186376Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1a97a4ec1a48cd44baff6f7c7dcddc14-cd12fffcb7ddad45-00",
+ "traceparent": "00-6ce922129dca904abf748470ba08246f-19270a2b989cb247-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5c804d620ffd13c5fa8d809ca0cacdf8",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:37 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -391,60 +348,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:36 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.2123808Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:47 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.0931848Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "5c804d620ffd13c5fa8d809ca0cacdf8",
- "x-ms-request-id": "20751c12-b002-001b-2f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "5c804d62-0ffd-13c5-fa8d-809ca0cacdf8"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3mzbt9gm/@Element",
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.2123808Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm/$metadata#testtable3mzbt9gm/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.0931848Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "05",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.2123808Z",
"SomeStringProperty": "This is table entity number 05",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:06:00Z",
+ "SomeDateProperty": "2020-01-01T01:06:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90005",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "5",
- "SomeDoubleProperty0": 5.0,
+ "SomeDoubleProperty0": 5,
"SomeDoubleProperty1": 5.1,
- "SomeIntProperty": 5
+ "SomeIntProperty": 5,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:48.0931848Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1724140118e24f48b543cc3995297ec5-fe6991b9ad514d40-00",
+ "traceparent": "00-b4593c37c61f174eae437e0ecb3fe954-2da0120058e4a345-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4280388e58d408bee60df3f6aa1e5df4",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:37 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -468,60 +416,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:37 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.2634228Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:47 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.1693704Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "4280388e58d408bee60df3f6aa1e5df4",
- "x-ms-request-id": "20751c19-b002-001b-3621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "4280388e-58d4-08be-e60d-f3f6aa1e5df4"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3mzbt9gm/@Element",
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.2634228Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm/$metadata#testtable3mzbt9gm/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.1693704Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "06",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.2634228Z",
"SomeStringProperty": "This is table entity number 06",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:07:00Z",
+ "SomeDateProperty": "2020-01-01T01:07:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90006",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "6",
- "SomeDoubleProperty0": 6.0,
+ "SomeDoubleProperty0": 6,
"SomeDoubleProperty1": 6.1,
- "SomeIntProperty": 6
+ "SomeIntProperty": 6,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:48.1693704Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-958442fd350e4f4f8af56e946399e149-a2fa7cedefe25548-00",
+ "traceparent": "00-903ddd14db1d85439b665c1646550a78-9b27377d0f150642-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7486085201b6a12f4e8ded7872126f71",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:37 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -545,60 +484,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:37 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.3084597Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:47 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.2453512Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "7486085201b6a12f4e8ded7872126f71",
- "x-ms-request-id": "20751c27-b002-001b-4321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "74860852-01b6-a12f-4e8d-ed7872126f71"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3mzbt9gm/@Element",
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.3084597Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm/$metadata#testtable3mzbt9gm/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.2453512Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "07",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.3084597Z",
"SomeStringProperty": "This is table entity number 07",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:08:00Z",
+ "SomeDateProperty": "2020-01-01T01:08:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90007",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "7",
- "SomeDoubleProperty0": 7.0,
+ "SomeDoubleProperty0": 7,
"SomeDoubleProperty1": 7.1,
- "SomeIntProperty": 7
+ "SomeIntProperty": 7,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:48.2453512Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-440f655124f0a34d94033b10011c5290-86c824a706e93846-00",
+ "traceparent": "00-3bf507614a71f949ae91f5542b5d1b3b-59e442c8efb0e044-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "bce09dbec0410a998f7876f01cce68dc",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:37 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -622,60 +552,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:37 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.3544975Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:47 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.3274760Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "bce09dbec0410a998f7876f01cce68dc",
- "x-ms-request-id": "20751c3c-b002-001b-5721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "bce09dbe-c041-0a99-8f78-76f01cce68dc"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3mzbt9gm/@Element",
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.3544975Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm/$metadata#testtable3mzbt9gm/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.3274760Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "08",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.3544975Z",
"SomeStringProperty": "This is table entity number 08",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:09:00Z",
+ "SomeDateProperty": "2020-01-01T01:09:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90008",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "8",
- "SomeDoubleProperty0": 8.0,
+ "SomeDoubleProperty0": 8,
"SomeDoubleProperty1": 8.1,
- "SomeIntProperty": 8
+ "SomeIntProperty": 8,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:48.3274760Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6c6e4ab889466b4bb3da7dae071dadfa-597d2a7b12aef74d-00",
+ "traceparent": "00-6c3f459cbe4416499e75bfcda054ed40-e38b16b61f903b4b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "97498c3059438c4208dff4466a4595d4",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:37 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -699,60 +620,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:37 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.4005362Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:47 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.4055048Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "97498c3059438c4208dff4466a4595d4",
- "x-ms-request-id": "20751c57-b002-001b-6f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "97498c30-5943-8c42-08df-f4466a4595d4"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3mzbt9gm/@Element",
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.4005362Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm/$metadata#testtable3mzbt9gm/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.4055048Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "09",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.4005362Z",
"SomeStringProperty": "This is table entity number 09",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:10:00Z",
+ "SomeDateProperty": "2020-01-01T01:10:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90009",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "9",
- "SomeDoubleProperty0": 9.0,
+ "SomeDoubleProperty0": 9,
"SomeDoubleProperty1": 9.1,
- "SomeIntProperty": 9
+ "SomeIntProperty": 9,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:48.4055048Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-bd7a818a8058604b969879701f0f6f33-371cb4fbf7ac1c4d-00",
+ "traceparent": "00-c0f12e0cac446a4e84b093530fe6d08b-d2e47500fc832f43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0d37819ea13d92b26f7be43d8b3f847f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:37 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -776,60 +688,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:37 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.4445732Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:48 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.4816904Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "0d37819ea13d92b26f7be43d8b3f847f",
- "x-ms-request-id": "20751c68-b002-001b-7e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "0d37819e-a13d-92b2-6f7b-e43d8b3f847f"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3mzbt9gm/@Element",
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.4445732Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm/$metadata#testtable3mzbt9gm/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.4816904Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "10",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.4445732Z",
"SomeStringProperty": "This is table entity number 10",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:11:00Z",
+ "SomeDateProperty": "2020-01-01T01:11:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90010",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "10",
- "SomeDoubleProperty0": 10.0,
+ "SomeDoubleProperty0": 10,
"SomeDoubleProperty1": 10.1,
- "SomeIntProperty": 10
+ "SomeIntProperty": 10,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:48.4816904Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1220096f72caaa4bb25b2a0dcdc9707e-3789e78ffea2644b-00",
+ "traceparent": "00-0a9cdad834c04d4ca139eff9a8372b27-174fbb9c835ca846-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e6481125d7c8642d5b53b362cc52a049",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:37 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -853,60 +756,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:37 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.4826047Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:48 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.5571592Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "e6481125d7c8642d5b53b362cc52a049",
- "x-ms-request-id": "20751c6e-b002-001b-0421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "e6481125-d7c8-642d-5b53-b362cc52a049"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3mzbt9gm/@Element",
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.4826047Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm/$metadata#testtable3mzbt9gm/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.5571592Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "11",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.4826047Z",
"SomeStringProperty": "This is table entity number 11",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:12:00Z",
+ "SomeDateProperty": "2020-01-01T01:12:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90011",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "11",
- "SomeDoubleProperty0": 11.0,
+ "SomeDoubleProperty0": 11,
"SomeDoubleProperty1": 11.1,
- "SomeIntProperty": 11
+ "SomeIntProperty": 11,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:48.5571592Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1be4713d05baf3449b6fcb0e7e0f4df7-e2b571cd0401d241-00",
+ "traceparent": "00-002ed079912e2242942256ab7093f463-12e3ca73631b2c4b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9b51a1e25b978e9ed9b728c7750401c9",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:37 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -930,60 +824,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:37 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.5296429Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:48 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.6302728Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "9b51a1e25b978e9ed9b728c7750401c9",
- "x-ms-request-id": "20751c77-b002-001b-0d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "9b51a1e2-5b97-8e9e-d9b7-28c7750401c9"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3mzbt9gm/@Element",
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.5296429Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm/$metadata#testtable3mzbt9gm/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.6302728Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "12",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.5296429Z",
"SomeStringProperty": "This is table entity number 12",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:13:00Z",
+ "SomeDateProperty": "2020-01-01T01:13:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90012",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "12",
- "SomeDoubleProperty0": 12.0,
+ "SomeDoubleProperty0": 12,
"SomeDoubleProperty1": 12.1,
- "SomeIntProperty": 12
+ "SomeIntProperty": 12,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:48.6302728Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-0f283ec3cdb5de44b0cc60bec09d00a8-a19c2ce3e8ca2042-00",
+ "traceparent": "00-ed9e39d6adb8c3419d02579f305bc73d-295975703fda9f40-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5920745aaffdc70b53d3b1e9ed50c61c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:37 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1007,60 +892,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:37 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.5716782Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:48 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.7233544Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "5920745aaffdc70b53d3b1e9ed50c61c",
- "x-ms-request-id": "20751c80-b002-001b-1521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "5920745a-affd-c70b-53d3-b1e9ed50c61c"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3mzbt9gm/@Element",
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.5716782Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm/$metadata#testtable3mzbt9gm/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.7233544Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "13",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.5716782Z",
"SomeStringProperty": "This is table entity number 13",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:14:00Z",
+ "SomeDateProperty": "2020-01-01T01:14:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90013",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "13",
- "SomeDoubleProperty0": 13.0,
+ "SomeDoubleProperty0": 13,
"SomeDoubleProperty1": 13.1,
- "SomeIntProperty": 13
+ "SomeIntProperty": 13,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:48.7233544Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-bbb0c4eff79cfe4f8f7cad85f27bf140-964beec94cad0849-00",
+ "traceparent": "00-00dd67ccaeb5f246b14e0b97b5b3b117-7cb591fc5199d840-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e95a9adbe9edcae872b90d11ae65ef57",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:37 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1084,60 +960,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:37 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.614714Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:48 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.8007688Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "e95a9adbe9edcae872b90d11ae65ef57",
- "x-ms-request-id": "20751c86-b002-001b-1a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "e95a9adb-e9ed-cae8-72b9-0d11ae65ef57"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3mzbt9gm/@Element",
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.614714Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm/$metadata#testtable3mzbt9gm/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.8007688Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "14",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.614714Z",
"SomeStringProperty": "This is table entity number 14",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:15:00Z",
+ "SomeDateProperty": "2020-01-01T01:15:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90014",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "14",
- "SomeDoubleProperty0": 14.0,
+ "SomeDoubleProperty0": 14,
"SomeDoubleProperty1": 14.1,
- "SomeIntProperty": 14
+ "SomeIntProperty": 14,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:48.8007688Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-00e123ca397d334580921a3285286650-9175026e9272af43-00",
+ "traceparent": "00-30cfe575d11da543a55620af391e9c2c-28acac708569d840-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5707ea524631334c958a47c3a9b4a188",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:37 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1161,60 +1028,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:37 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.658751Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:48 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.8841224Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "5707ea524631334c958a47c3a9b4a188",
- "x-ms-request-id": "20751c8d-b002-001b-2121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "5707ea52-4631-334c-958a-47c3a9b4a188"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3mzbt9gm/@Element",
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.658751Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm/$metadata#testtable3mzbt9gm/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.8841224Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "15",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.658751Z",
"SomeStringProperty": "This is table entity number 15",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:16:00Z",
+ "SomeDateProperty": "2020-01-01T01:16:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90015",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "15",
- "SomeDoubleProperty0": 15.0,
+ "SomeDoubleProperty0": 15,
"SomeDoubleProperty1": 15.1,
- "SomeIntProperty": 15
+ "SomeIntProperty": 15,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:48.8841224Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-b281c4d3bb9c5c45983a89ab8f49edb3-d14cbd6b23126245-00",
+ "traceparent": "00-f44b37d14ddf774fbafac5b1b7b625b1-02f5c1935277d64d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "daec0cf017a971db8c56e643a1fa18ee",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:37 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1238,60 +1096,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:37 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.7027871Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:48 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.9580552Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "daec0cf017a971db8c56e643a1fa18ee",
- "x-ms-request-id": "20751c92-b002-001b-2621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "daec0cf0-17a9-71db-8c56-e643a1fa18ee"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3mzbt9gm/@Element",
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.7027871Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm/$metadata#testtable3mzbt9gm/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.9580552Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "16",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.7027871Z",
"SomeStringProperty": "This is table entity number 16",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:17:00Z",
+ "SomeDateProperty": "2020-01-01T01:17:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90016",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "16",
- "SomeDoubleProperty0": 16.0,
+ "SomeDoubleProperty0": 16,
"SomeDoubleProperty1": 16.1,
- "SomeIntProperty": 16
+ "SomeIntProperty": 16,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:48.9580552Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-0620939fa5308c4489a6973c275099a2-c2563b15ebff4e44-00",
+ "traceparent": "00-c877c0ccca972c4ea344d5749c258e46-20669e208851ec43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "03965ae36f4895ea4e275462a12421be",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:38 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1315,60 +1164,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:37 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.7458224Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:48 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A49.0327048Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "03965ae36f4895ea4e275462a12421be",
- "x-ms-request-id": "20751c9c-b002-001b-3021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "03965ae3-6f48-95ea-4e27-5462a12421be"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3mzbt9gm/@Element",
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.7458224Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm/$metadata#testtable3mzbt9gm/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A49.0327048Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "17",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.7458224Z",
"SomeStringProperty": "This is table entity number 17",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:18:00Z",
+ "SomeDateProperty": "2020-01-01T01:18:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90017",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "17",
- "SomeDoubleProperty0": 17.0,
+ "SomeDoubleProperty0": 17,
"SomeDoubleProperty1": 17.1,
- "SomeIntProperty": 17
+ "SomeIntProperty": 17,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:49.0327048Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e36fda315c81bd4090ae8ada90696d01-385675b19f089c4a-00",
+ "traceparent": "00-92d7984a829635488bb4d7b15a7806fb-18cf46d45cfe7f4c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a120841815793bad0e96cadb6008919b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:38 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1392,60 +1232,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:37 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.7858556Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:48 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A49.1218952Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a120841815793bad0e96cadb6008919b",
- "x-ms-request-id": "20751ca9-b002-001b-3d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "a1208418-1579-3bad-0e96-cadb6008919b"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3mzbt9gm/@Element",
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.7858556Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm/$metadata#testtable3mzbt9gm/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A49.1218952Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "18",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.7858556Z",
"SomeStringProperty": "This is table entity number 18",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:19:00Z",
+ "SomeDateProperty": "2020-01-01T01:19:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90018",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "18",
- "SomeDoubleProperty0": 18.0,
+ "SomeDoubleProperty0": 18,
"SomeDoubleProperty1": 18.1,
- "SomeIntProperty": 18
+ "SomeIntProperty": 18,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:49.1218952Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-925dd89c7ce2d449b2479cf281cdf664-2323ef3033ec864a-00",
+ "traceparent": "00-6c3d03cff7c0cb4988ac9f3610377a0e-7368149e06242f47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4ee059719d1d813f22578b82c379cf68",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:38 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1469,60 +1300,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:37 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.8378992Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:48 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A49.2072968Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "4ee059719d1d813f22578b82c379cf68",
- "x-ms-request-id": "20751cb3-b002-001b-4721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "4ee05971-9d1d-813f-2257-8b82c379cf68"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3mzbt9gm/@Element",
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.8378992Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm/$metadata#testtable3mzbt9gm/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A49.2072968Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "19",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.8378992Z",
"SomeStringProperty": "This is table entity number 19",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:20:00Z",
+ "SomeDateProperty": "2020-01-01T01:20:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90019",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "19",
- "SomeDoubleProperty0": 19.0,
+ "SomeDoubleProperty0": 19,
"SomeDoubleProperty1": 19.1,
- "SomeIntProperty": 19
+ "SomeIntProperty": 19,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:49.2072968Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9cc6aab2a804254085e061365b8c0dcf-abd78af0b12fd24e-00",
+ "traceparent": "00-19a92309c1bb164486ac89328e943d2d-92bcab5f84651244-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1d2b283577dacd74ad5bf5b2a40e3446",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:38 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1546,676 +1368,571 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:37 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.8829366Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:48 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A49.2867592Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "1d2b283577dacd74ad5bf5b2a40e3446",
- "x-ms-request-id": "20751cb9-b002-001b-4d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "1d2b2835-77da-cd74-ad5b-f5b2a40e3446"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3mzbt9gm/@Element",
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.8829366Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm/$metadata#testtable3mzbt9gm/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A49.2867592Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "20",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.8829366Z",
"SomeStringProperty": "This is table entity number 20",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:21:00Z",
+ "SomeDateProperty": "2020-01-01T01:21:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90020",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "20",
- "SomeDoubleProperty0": 20.0,
+ "SomeDoubleProperty0": 20,
"SomeDoubleProperty1": 20.1,
- "SomeIntProperty": 20
+ "SomeIntProperty": 20,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:49.2867592Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "48f1b895d2437ba0459e7f228a2a7895",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:38 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:37 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:48 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "48f1b895d2437ba0459e7f228a2a7895",
- "x-ms-continuation-NextPartitionKey": "1!16!c29tUGFydGl0aW9u",
- "x-ms-continuation-NextRowKey": "1!4!MDY-",
- "x-ms-request-id": "20751cbd-b002-001b-5121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-continuation-NextPartitionKey": "{\u0022token\u0022:\u0022b1w3AKcv0hoFAAAAAAAAAA==\u0022,\u0022range\u0022:{\u0022min\u0022:\u0022\u0022,\u0022max\u0022:\u0022FF\u0022}}",
+ "x-ms-continuation-NextRowKey": "NA",
+ "x-ms-request-id": "48f1b895-d243-7ba0-459e-7f228a2a7895"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3mzbt9gm",
"value": [
{
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.0292275Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A47.7928456Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.0292275Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:02:00Z",
+ "SomeDateProperty": "2020-01-01T01:02:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "1",
- "SomeDoubleProperty0": 1.0,
+ "SomeDoubleProperty0": 1,
"SomeDoubleProperty1": 1.1,
- "SomeIntProperty": 1
+ "SomeIntProperty": 1,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:47.7928456Z"
},
{
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.0732645Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A47.8688264Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "02",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.0732645Z",
"SomeStringProperty": "This is table entity number 02",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:03:00Z",
+ "SomeDateProperty": "2020-01-01T01:03:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "2",
- "SomeDoubleProperty0": 2.0,
+ "SomeDoubleProperty0": 2,
"SomeDoubleProperty1": 2.1,
- "SomeIntProperty": 2
+ "SomeIntProperty": 2,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:47.8688264Z"
},
{
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.1193027Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A47.9430664Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "03",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.1193027Z",
"SomeStringProperty": "This is table entity number 03",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:04:00Z",
+ "SomeDateProperty": "2020-01-01T01:04:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "3",
- "SomeDoubleProperty0": 3.0,
+ "SomeDoubleProperty0": 3,
"SomeDoubleProperty1": 3.1,
- "SomeIntProperty": 3
+ "SomeIntProperty": 3,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:47.9430664Z"
},
{
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.1663422Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.0186376Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "04",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.1663422Z",
"SomeStringProperty": "This is table entity number 04",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:05:00Z",
+ "SomeDateProperty": "2020-01-01T01:05:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "4",
- "SomeDoubleProperty0": 4.0,
+ "SomeDoubleProperty0": 4,
"SomeDoubleProperty1": 4.1,
- "SomeIntProperty": 4
+ "SomeIntProperty": 4,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:48.0186376Z"
},
{
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.2123808Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.0931848Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "05",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.2123808Z",
"SomeStringProperty": "This is table entity number 05",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:06:00Z",
+ "SomeDateProperty": "2020-01-01T01:06:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90005",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "5",
- "SomeDoubleProperty0": 5.0,
+ "SomeDoubleProperty0": 5,
"SomeDoubleProperty1": 5.1,
- "SomeIntProperty": 5
+ "SomeIntProperty": 5,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:48.0931848Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextPartitionKey=1%2116%21c29tUGFydGl0aW9u\u0026NextRowKey=1%214%21MDY-",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextPartitionKey=%7B%22token%22%3A%22b1w3AKcv0hoFAAAAAAAAAA%3D%3D%22%2C%22range%22%3A%7B%22min%22%3A%22%22%2C%22max%22%3A%22FF%22%7D%7D\u0026NextRowKey=NA",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "38a562c774ddfac0e412a1c2a78ddd13",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:38 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:37 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:48 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "38a562c774ddfac0e412a1c2a78ddd13",
- "x-ms-continuation-NextPartitionKey": "1!16!c29tUGFydGl0aW9u",
- "x-ms-continuation-NextRowKey": "1!4!MTE-",
- "x-ms-request-id": "20751cd4-b002-001b-6721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-continuation-NextPartitionKey": "{\u0022token\u0022:\u0022b1w3AKcv0hoKAAAAAAAAAA==\u0022,\u0022range\u0022:{\u0022min\u0022:\u0022\u0022,\u0022max\u0022:\u0022FF\u0022}}",
+ "x-ms-continuation-NextRowKey": "NA",
+ "x-ms-request-id": "38a562c7-74dd-fac0-e412-a1c2a78ddd13"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3mzbt9gm",
"value": [
{
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.2634228Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.1693704Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "06",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.2634228Z",
"SomeStringProperty": "This is table entity number 06",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:07:00Z",
+ "SomeDateProperty": "2020-01-01T01:07:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90006",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "6",
- "SomeDoubleProperty0": 6.0,
+ "SomeDoubleProperty0": 6,
"SomeDoubleProperty1": 6.1,
- "SomeIntProperty": 6
+ "SomeIntProperty": 6,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:48.1693704Z"
},
{
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.3084597Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.2453512Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "07",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.3084597Z",
"SomeStringProperty": "This is table entity number 07",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:08:00Z",
+ "SomeDateProperty": "2020-01-01T01:08:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90007",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "7",
- "SomeDoubleProperty0": 7.0,
+ "SomeDoubleProperty0": 7,
"SomeDoubleProperty1": 7.1,
- "SomeIntProperty": 7
+ "SomeIntProperty": 7,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:48.2453512Z"
},
{
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.3544975Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.3274760Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "08",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.3544975Z",
"SomeStringProperty": "This is table entity number 08",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:09:00Z",
+ "SomeDateProperty": "2020-01-01T01:09:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90008",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "8",
- "SomeDoubleProperty0": 8.0,
+ "SomeDoubleProperty0": 8,
"SomeDoubleProperty1": 8.1,
- "SomeIntProperty": 8
+ "SomeIntProperty": 8,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:48.3274760Z"
},
{
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.4005362Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.4055048Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "09",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.4005362Z",
"SomeStringProperty": "This is table entity number 09",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:10:00Z",
+ "SomeDateProperty": "2020-01-01T01:10:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90009",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "9",
- "SomeDoubleProperty0": 9.0,
+ "SomeDoubleProperty0": 9,
"SomeDoubleProperty1": 9.1,
- "SomeIntProperty": 9
+ "SomeIntProperty": 9,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:48.4055048Z"
},
{
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.4445732Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.4816904Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "10",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.4445732Z",
"SomeStringProperty": "This is table entity number 10",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:11:00Z",
+ "SomeDateProperty": "2020-01-01T01:11:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90010",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "10",
- "SomeDoubleProperty0": 10.0,
+ "SomeDoubleProperty0": 10,
"SomeDoubleProperty1": 10.1,
- "SomeIntProperty": 10
+ "SomeIntProperty": 10,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:48.4816904Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextPartitionKey=1%2116%21c29tUGFydGl0aW9u\u0026NextRowKey=1%214%21MTE-",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextPartitionKey=%7B%22token%22%3A%22b1w3AKcv0hoKAAAAAAAAAA%3D%3D%22%2C%22range%22%3A%7B%22min%22%3A%22%22%2C%22max%22%3A%22FF%22%7D%7D\u0026NextRowKey=NA",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0aed45228688632488b0d73cf7514382",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:38 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:37 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:49 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "0aed45228688632488b0d73cf7514382",
- "x-ms-continuation-NextPartitionKey": "1!16!c29tUGFydGl0aW9u",
- "x-ms-continuation-NextRowKey": "1!4!MTY-",
- "x-ms-request-id": "20751ce5-b002-001b-7821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-continuation-NextPartitionKey": "{\u0022token\u0022:\u0022b1w3AKcv0hoPAAAAAAAAAA==\u0022,\u0022range\u0022:{\u0022min\u0022:\u0022\u0022,\u0022max\u0022:\u0022FF\u0022}}",
+ "x-ms-continuation-NextRowKey": "NA",
+ "x-ms-request-id": "0aed4522-8688-6324-88b0-d73cf7514382"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3mzbt9gm",
"value": [
{
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.4826047Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.5571592Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "11",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.4826047Z",
"SomeStringProperty": "This is table entity number 11",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:12:00Z",
+ "SomeDateProperty": "2020-01-01T01:12:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90011",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "11",
- "SomeDoubleProperty0": 11.0,
+ "SomeDoubleProperty0": 11,
"SomeDoubleProperty1": 11.1,
- "SomeIntProperty": 11
+ "SomeIntProperty": 11,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:48.5571592Z"
},
{
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.5296429Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.6302728Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "12",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.5296429Z",
"SomeStringProperty": "This is table entity number 12",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:13:00Z",
+ "SomeDateProperty": "2020-01-01T01:13:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90012",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "12",
- "SomeDoubleProperty0": 12.0,
+ "SomeDoubleProperty0": 12,
"SomeDoubleProperty1": 12.1,
- "SomeIntProperty": 12
+ "SomeIntProperty": 12,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:48.6302728Z"
},
{
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.5716782Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.7233544Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "13",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.5716782Z",
"SomeStringProperty": "This is table entity number 13",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:14:00Z",
+ "SomeDateProperty": "2020-01-01T01:14:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90013",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "13",
- "SomeDoubleProperty0": 13.0,
+ "SomeDoubleProperty0": 13,
"SomeDoubleProperty1": 13.1,
- "SomeIntProperty": 13
+ "SomeIntProperty": 13,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:48.7233544Z"
},
{
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.614714Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.8007688Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "14",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.614714Z",
"SomeStringProperty": "This is table entity number 14",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:15:00Z",
+ "SomeDateProperty": "2020-01-01T01:15:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90014",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "14",
- "SomeDoubleProperty0": 14.0,
+ "SomeDoubleProperty0": 14,
"SomeDoubleProperty1": 14.1,
- "SomeIntProperty": 14
+ "SomeIntProperty": 14,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:48.8007688Z"
},
{
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.658751Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.8841224Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "15",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.658751Z",
"SomeStringProperty": "This is table entity number 15",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:16:00Z",
+ "SomeDateProperty": "2020-01-01T01:16:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90015",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "15",
- "SomeDoubleProperty0": 15.0,
+ "SomeDoubleProperty0": 15,
"SomeDoubleProperty1": 15.1,
- "SomeIntProperty": 15
+ "SomeIntProperty": 15,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:48.8841224Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextPartitionKey=1%2116%21c29tUGFydGl0aW9u\u0026NextRowKey=1%214%21MTY-",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable3mzbt9gm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextPartitionKey=%7B%22token%22%3A%22b1w3AKcv0hoPAAAAAAAAAA%3D%3D%22%2C%22range%22%3A%7B%22min%22%3A%22%22%2C%22max%22%3A%22FF%22%7D%7D\u0026NextRowKey=NA",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "42ea60e2fc692069f8f6633130ddd3b7",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:38 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:37 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:49 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "42ea60e2fc692069f8f6633130ddd3b7",
- "x-ms-request-id": "20751cfe-b002-001b-0f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "42ea60e2-fc69-2069-f8f6-633130ddd3b7"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3mzbt9gm",
"value": [
{
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.7027871Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A48.9580552Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "16",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.7027871Z",
"SomeStringProperty": "This is table entity number 16",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:17:00Z",
+ "SomeDateProperty": "2020-01-01T01:17:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90016",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "16",
- "SomeDoubleProperty0": 16.0,
+ "SomeDoubleProperty0": 16,
"SomeDoubleProperty1": 16.1,
- "SomeIntProperty": 16
+ "SomeIntProperty": 16,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:48.9580552Z"
},
{
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.7458224Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A49.0327048Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "17",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.7458224Z",
"SomeStringProperty": "This is table entity number 17",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:18:00Z",
+ "SomeDateProperty": "2020-01-01T01:18:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90017",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "17",
- "SomeDoubleProperty0": 17.0,
+ "SomeDoubleProperty0": 17,
"SomeDoubleProperty1": 17.1,
- "SomeIntProperty": 17
+ "SomeIntProperty": 17,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:49.0327048Z"
},
{
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.7858556Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A49.1218952Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "18",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.7858556Z",
"SomeStringProperty": "This is table entity number 18",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:19:00Z",
+ "SomeDateProperty": "2020-01-01T01:19:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90018",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "18",
- "SomeDoubleProperty0": 18.0,
+ "SomeDoubleProperty0": 18,
"SomeDoubleProperty1": 18.1,
- "SomeIntProperty": 18
+ "SomeIntProperty": 18,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:49.1218952Z"
},
{
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.8378992Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A49.2072968Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "19",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.8378992Z",
"SomeStringProperty": "This is table entity number 19",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:20:00Z",
+ "SomeDateProperty": "2020-01-01T01:20:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90019",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "19",
- "SomeDoubleProperty0": 19.0,
+ "SomeDoubleProperty0": 19,
"SomeDoubleProperty1": 19.1,
- "SomeIntProperty": 19
+ "SomeIntProperty": 19,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:49.2072968Z"
},
{
- "odata.type": "chrissscratch.testtable3mzbt9gm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A37.8829366Z\u0027\u0022",
- "odata.editLink": "testtable3mzbt9gm(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A49.2867592Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "20",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:37.8829366Z",
"SomeStringProperty": "This is table entity number 20",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:21:00Z",
+ "SomeDateProperty": "2020-01-01T01:21:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90020",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "20",
- "SomeDoubleProperty0": 20.0,
+ "SomeDoubleProperty0": 20,
"SomeDoubleProperty1": 20.1,
- "SomeIntProperty": 20
+ "SomeIntProperty": 20,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:49.2867592Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable3mzbt9gm\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable3mzbt9gm\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-f218d8c428c2fc48b881c65cbd855e0d-fa714f99e74da544-00",
+ "traceparent": "00-165afadd2baa8c4db62b95f8ff32ab2a-5f9cf3bea3bb154b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "44006cc16e3d400c3d42af2c9c840392",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:38 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:38 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "44006cc16e3d400c3d42af2c9c840392",
- "x-ms-request-id": "20751d12-b002-001b-2321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:36:49 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "44006cc1-6e3d-400c-3d42-af2c9c840392"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1776765857",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedEntitiesCanBeQueriedWithAndWithoutPagination(null).json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedEntitiesCanBeQueriedWithAndWithoutPagination(null).json
index b0123254c8cc..5f1d639c3add 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedEntitiesCanBeQueriedWithAndWithoutPagination(null).json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedEntitiesCanBeQueriedWithAndWithoutPagination(null).json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-85c19d764be6ec418ad222f2b621866e-ab12dd2275230448-00",
+ "traceparent": "00-a01a0bb788d24f46ac2e85d4f7445381-6d72d2a60b306c45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6ba7b8777e6c87a44b6d807521202ec0",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:06 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:12 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablehylzfh6f\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:05 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A05.9733512Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablehylzfh6f\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "6ba7b8777e6c87a44b6d807521202ec0",
- "x-ms-request-id": "20750331-b002-001b-3b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "6ba7b877-7e6c-87a4-4b6d-807521202ec0"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablehylzfh6f\u0027)",
- "odata.editLink": "Tables(\u0027testtablehylzfh6f\u0027)",
- "TableName": "testtablehylzfh6f"
+ "TableName": "testtablehylzfh6f",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8527ee7b2786f740bcee312dc6982e66-e4061fdbf52f9e4b-00",
+ "traceparent": "00-5de223cb0786dc4e83f24bf3fa7cf316-bd00887252494a45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "02765996389a2dea0f311453012f8c28",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:06 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -83,60 +76,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:12 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.3156462Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:05 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A06.5879560Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "02765996389a2dea0f311453012f8c28",
- "x-ms-request-id": "20750344-b002-001b-4b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "02765996-389a-2dea-0f31-1453012f8c28"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehylzfh6f/@Element",
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.3156462Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f/$metadata#testtablehylzfh6f/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A06.5879560Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:12.3156462Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:02:00Z",
+ "SomeDateProperty": "2020-01-01T01:02:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "1",
- "SomeDoubleProperty0": 1.0,
+ "SomeDoubleProperty0": 1,
"SomeDoubleProperty1": 1.1,
- "SomeIntProperty": 1
+ "SomeIntProperty": 1,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:06.5879560Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1026dc80c173524fb16ae3cf70f0863c-ea7c1fc54745de40-00",
+ "traceparent": "00-abf2cf6ed086b44ea323859faf91b09a-c59f289cf8f0c140-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c65038aa6dea53f8dc2b61936fbf16b9",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -160,60 +144,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:12 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.3616843Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:05 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A06.6712072Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c65038aa6dea53f8dc2b61936fbf16b9",
- "x-ms-request-id": "20750350-b002-001b-5621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "c65038aa-6dea-53f8-dc2b-61936fbf16b9"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehylzfh6f/@Element",
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.3616843Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f/$metadata#testtablehylzfh6f/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A06.6712072Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "02",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:12.3616843Z",
"SomeStringProperty": "This is table entity number 02",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:03:00Z",
+ "SomeDateProperty": "2020-01-01T01:03:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "2",
- "SomeDoubleProperty0": 2.0,
+ "SomeDoubleProperty0": 2,
"SomeDoubleProperty1": 2.1,
- "SomeIntProperty": 2
+ "SomeIntProperty": 2,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:06.6712072Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9ee99868271a784db81d6cdb624a0109-bdde9d6c4f197c43-00",
+ "traceparent": "00-ff9440899bf4b04683706d3f5e5ae126-d9944e460c6b2b49-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "90dd7391e4ce3f00cd795c3a6951851c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -237,60 +212,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:12 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.4067219Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:05 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A06.7452424Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "90dd7391e4ce3f00cd795c3a6951851c",
- "x-ms-request-id": "2075035c-b002-001b-6221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "90dd7391-e4ce-3f00-cd79-5c3a6951851c"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehylzfh6f/@Element",
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.4067219Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f/$metadata#testtablehylzfh6f/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A06.7452424Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "03",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:12.4067219Z",
"SomeStringProperty": "This is table entity number 03",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:04:00Z",
+ "SomeDateProperty": "2020-01-01T01:04:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "3",
- "SomeDoubleProperty0": 3.0,
+ "SomeDoubleProperty0": 3,
"SomeDoubleProperty1": 3.1,
- "SomeIntProperty": 3
+ "SomeIntProperty": 3,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:06.7452424Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-366ca044c7f0cc468101bca23218edeb-6f556a516905ab40-00",
+ "traceparent": "00-d492f041f97c1a4e931e262f2e90a741-84e955bc6d738646-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e8ca58e168cf28d66022266ed657bd4f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -314,60 +280,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:12 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.4517596Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:05 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A06.8191752Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "e8ca58e168cf28d66022266ed657bd4f",
- "x-ms-request-id": "20750368-b002-001b-6e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "e8ca58e1-68cf-28d6-6022-266ed657bd4f"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehylzfh6f/@Element",
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.4517596Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f/$metadata#testtablehylzfh6f/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A06.8191752Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "04",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:12.4517596Z",
"SomeStringProperty": "This is table entity number 04",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:05:00Z",
+ "SomeDateProperty": "2020-01-01T01:05:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "4",
- "SomeDoubleProperty0": 4.0,
+ "SomeDoubleProperty0": 4,
"SomeDoubleProperty1": 4.1,
- "SomeIntProperty": 4
+ "SomeIntProperty": 4,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:06.8191752Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c6a8f065b60d9c479f69425a07769e5c-7c89a0a7581fff43-00",
+ "traceparent": "00-79e27e7bc1ce1d4d833454abd13c02ab-429e3f591660394a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8ec25b1afc52c65a3810f87011bdea8a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -391,60 +348,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:12 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.4957964Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A06.8935176Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "8ec25b1afc52c65a3810f87011bdea8a",
- "x-ms-request-id": "2075037a-b002-001b-7f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "8ec25b1a-fc52-c65a-3810-f87011bdea8a"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehylzfh6f/@Element",
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.4957964Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f/$metadata#testtablehylzfh6f/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A06.8935176Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "05",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:12.4957964Z",
"SomeStringProperty": "This is table entity number 05",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:06:00Z",
+ "SomeDateProperty": "2020-01-01T01:06:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90005",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "5",
- "SomeDoubleProperty0": 5.0,
+ "SomeDoubleProperty0": 5,
"SomeDoubleProperty1": 5.1,
- "SomeIntProperty": 5
+ "SomeIntProperty": 5,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:06.8935176Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-2e7b03866cc3134faba15373879eaa13-c366b85747c6d84c-00",
+ "traceparent": "00-c4cdbf4546eb6540ae05acdf74c0d613-2cf080c6bdd9ce48-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "17b145a52ef529e99cb430abbd916876",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -468,60 +416,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:12 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.543837Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A06.9696008Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "17b145a52ef529e99cb430abbd916876",
- "x-ms-request-id": "2075038b-b002-001b-1021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "17b145a5-2ef5-29e9-9cb4-30abbd916876"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehylzfh6f/@Element",
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.543837Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f/$metadata#testtablehylzfh6f/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A06.9696008Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "06",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:12.543837Z",
"SomeStringProperty": "This is table entity number 06",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:07:00Z",
+ "SomeDateProperty": "2020-01-01T01:07:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90006",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "6",
- "SomeDoubleProperty0": 6.0,
+ "SomeDoubleProperty0": 6,
"SomeDoubleProperty1": 6.1,
- "SomeIntProperty": 6
+ "SomeIntProperty": 6,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:06.9696008Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-73be662a7b006c4d86f56ab2de712bab-3a7f7923d552f144-00",
+ "traceparent": "00-c5e5098adb7b644bb9251b230bb97faf-109479bfbb470e47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0d200cbcf68fe5cafe03b0be6f6617a2",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -545,60 +484,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:12 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.5948797Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.0464008Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "0d200cbcf68fe5cafe03b0be6f6617a2",
- "x-ms-request-id": "20750396-b002-001b-1b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "0d200cbc-f68f-e5ca-fe03-b0be6f6617a2"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehylzfh6f/@Element",
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.5948797Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f/$metadata#testtablehylzfh6f/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.0464008Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "07",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:12.5948797Z",
"SomeStringProperty": "This is table entity number 07",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:08:00Z",
+ "SomeDateProperty": "2020-01-01T01:08:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90007",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "7",
- "SomeDoubleProperty0": 7.0,
+ "SomeDoubleProperty0": 7,
"SomeDoubleProperty1": 7.1,
- "SomeIntProperty": 7
+ "SomeIntProperty": 7,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:07.0464008Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-273d1d840ded5f4dbab524b6a79dbef8-855d4b07dda75b48-00",
+ "traceparent": "00-8cd723a5370b744e97b35d43c48732fa-1baadb903ec1c046-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "91c99b38a6a5ec5a7299f29dccae08a7",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -622,60 +552,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:12 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.6379148Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.1211528Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "91c99b38a6a5ec5a7299f29dccae08a7",
- "x-ms-request-id": "207503a1-b002-001b-2621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "91c99b38-a6a5-ec5a-7299-f29dccae08a7"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehylzfh6f/@Element",
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.6379148Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f/$metadata#testtablehylzfh6f/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.1211528Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "08",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:12.6379148Z",
"SomeStringProperty": "This is table entity number 08",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:09:00Z",
+ "SomeDateProperty": "2020-01-01T01:09:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90008",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "8",
- "SomeDoubleProperty0": 8.0,
+ "SomeDoubleProperty0": 8,
"SomeDoubleProperty1": 8.1,
- "SomeIntProperty": 8
+ "SomeIntProperty": 8,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:07.1211528Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a7f56c2385e8a648a7158a1842bcbf7b-a87d4cf11b813640-00",
+ "traceparent": "00-5991b1016dfcfb43a51b71fb30cd40bf-9bce3476a33bb844-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "04b482a8dc9daefb7bcc18f17e2ab936",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -699,60 +620,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:12 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.6809508Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.1959048Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "04b482a8dc9daefb7bcc18f17e2ab936",
- "x-ms-request-id": "207503a9-b002-001b-2d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "04b482a8-dc9d-aefb-7bcc-18f17e2ab936"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehylzfh6f/@Element",
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.6809508Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f/$metadata#testtablehylzfh6f/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.1959048Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "09",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:12.6809508Z",
"SomeStringProperty": "This is table entity number 09",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:10:00Z",
+ "SomeDateProperty": "2020-01-01T01:10:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90009",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "9",
- "SomeDoubleProperty0": 9.0,
+ "SomeDoubleProperty0": 9,
"SomeDoubleProperty1": 9.1,
- "SomeIntProperty": 9
+ "SomeIntProperty": 9,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:07.1959048Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c532e778f9c2c94d8a501ac64b03ff48-93d85b47e0810c47-00",
+ "traceparent": "00-a31b2cf55166db40b69e23158f50948f-b12ada2bb9a8ee41-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "22738d9cd7c715d0b2349bf6042c194f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -776,60 +688,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:12 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.7239872Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.2706568Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "22738d9cd7c715d0b2349bf6042c194f",
- "x-ms-request-id": "207503b4-b002-001b-3721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "22738d9c-d7c7-15d0-b234-9bf6042c194f"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehylzfh6f/@Element",
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.7239872Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f/$metadata#testtablehylzfh6f/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.2706568Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "10",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:12.7239872Z",
"SomeStringProperty": "This is table entity number 10",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:11:00Z",
+ "SomeDateProperty": "2020-01-01T01:11:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90010",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "10",
- "SomeDoubleProperty0": 10.0,
+ "SomeDoubleProperty0": 10,
"SomeDoubleProperty1": 10.1,
- "SomeIntProperty": 10
+ "SomeIntProperty": 10,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:07.2706568Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-447346c91fc4064fbc1aa97c40f537db-ead362380c672849-00",
+ "traceparent": "00-7ecf83ad32821b4fb4449fe51351acd7-f18577262a1c7445-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ed1608fb13b15b049f1a16d88d686e47",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -853,60 +756,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:12 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.7680236Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.3547272Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ed1608fb13b15b049f1a16d88d686e47",
- "x-ms-request-id": "207503b9-b002-001b-3c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "ed1608fb-13b1-5b04-9f1a-16d88d686e47"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehylzfh6f/@Element",
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.7680236Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f/$metadata#testtablehylzfh6f/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.3547272Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "11",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:12.7680236Z",
"SomeStringProperty": "This is table entity number 11",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:12:00Z",
+ "SomeDateProperty": "2020-01-01T01:12:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90011",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "11",
- "SomeDoubleProperty0": 11.0,
+ "SomeDoubleProperty0": 11,
"SomeDoubleProperty1": 11.1,
- "SomeIntProperty": 11
+ "SomeIntProperty": 11,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:07.3547272Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-2870d43fd70ada41b21d59c3c742c599-395d1ba61ebf8646-00",
+ "traceparent": "00-c4b1e49b1bda7646a71b63211ae1d1a0-5cf8bb8a5aeb7947-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3e01bbdfe63bd0dfb19e51694105a94f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -930,60 +824,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:12 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.8110604Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.4446344Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "3e01bbdfe63bd0dfb19e51694105a94f",
- "x-ms-request-id": "207503c1-b002-001b-4421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "3e01bbdf-e63b-d0df-b19e-51694105a94f"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehylzfh6f/@Element",
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.8110604Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f/$metadata#testtablehylzfh6f/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.4446344Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "12",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:12.8110604Z",
"SomeStringProperty": "This is table entity number 12",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:13:00Z",
+ "SomeDateProperty": "2020-01-01T01:13:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90012",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "12",
- "SomeDoubleProperty0": 12.0,
+ "SomeDoubleProperty0": 12,
"SomeDoubleProperty1": 12.1,
- "SomeIntProperty": 12
+ "SomeIntProperty": 12,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:07.4446344Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-456d6992f6550140aabf3d6c118a859e-6a6a22d6d5bec141-00",
+ "traceparent": "00-67d6ceaffe865140bcca150f7ee460da-dcf9b6a48dc3f64e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "75f6c9b2cc138884881782acc1f7884a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1007,60 +892,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:12 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.8560976Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.5301384Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "75f6c9b2cc138884881782acc1f7884a",
- "x-ms-request-id": "207503cc-b002-001b-4f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "75f6c9b2-cc13-8884-8817-82acc1f7884a"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehylzfh6f/@Element",
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.8560976Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f/$metadata#testtablehylzfh6f/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.5301384Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "13",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:12.8560976Z",
"SomeStringProperty": "This is table entity number 13",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:14:00Z",
+ "SomeDateProperty": "2020-01-01T01:14:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90013",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "13",
- "SomeDoubleProperty0": 13.0,
+ "SomeDoubleProperty0": 13,
"SomeDoubleProperty1": 13.1,
- "SomeIntProperty": 13
+ "SomeIntProperty": 13,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:07.5301384Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-168d85130d67e044a32343a6869a5eeb-c67a8b6c0ea41142-00",
+ "traceparent": "00-1393e9f50c39a949bc235840beb81f53-5383254d6996ae48-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "491653c6db2a141428453b13c19b1a9a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1084,60 +960,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:12 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.897132Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.6050952Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "491653c6db2a141428453b13c19b1a9a",
- "x-ms-request-id": "207503d4-b002-001b-5721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "491653c6-db2a-1414-2845-3b13c19b1a9a"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehylzfh6f/@Element",
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.897132Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f/$metadata#testtablehylzfh6f/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.6050952Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "14",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:12.897132Z",
"SomeStringProperty": "This is table entity number 14",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:15:00Z",
+ "SomeDateProperty": "2020-01-01T01:15:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90014",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "14",
- "SomeDoubleProperty0": 14.0,
+ "SomeDoubleProperty0": 14,
"SomeDoubleProperty1": 14.1,
- "SomeIntProperty": 14
+ "SomeIntProperty": 14,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:07.6050952Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-0a294b5a27f52944b07a098ff316987a-e1528e453aa4fe4a-00",
+ "traceparent": "00-74976770a2c9e447bb68814bb67d21fe-9443d734e1d2c04d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c425c770f87113343678b52364320fb9",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:08 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1161,60 +1028,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:12 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.9421696Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.6786184Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c425c770f87113343678b52364320fb9",
- "x-ms-request-id": "207503de-b002-001b-6121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "c425c770-f871-1334-3678-b52364320fb9"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehylzfh6f/@Element",
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.9421696Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f/$metadata#testtablehylzfh6f/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.6786184Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "15",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:12.9421696Z",
"SomeStringProperty": "This is table entity number 15",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:16:00Z",
+ "SomeDateProperty": "2020-01-01T01:16:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90015",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "15",
- "SomeDoubleProperty0": 15.0,
+ "SomeDoubleProperty0": 15,
"SomeDoubleProperty1": 15.1,
- "SomeIntProperty": 15
+ "SomeIntProperty": 15,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:07.6786184Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-63b34be98396d045af60739281d8d8e2-584d5aa27a8b1b43-00",
+ "traceparent": "00-af640036c774a544affd22fdbabf6270-ee56b8487241a848-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "eea2071660eed724b4e24cce9071c7ed",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:08 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1238,60 +1096,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:12 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.986206Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.7538824Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "eea2071660eed724b4e24cce9071c7ed",
- "x-ms-request-id": "207503e2-b002-001b-6521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "eea20716-60ee-d724-b4e2-4cce9071c7ed"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehylzfh6f/@Element",
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.986206Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f/$metadata#testtablehylzfh6f/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.7538824Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "16",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:12.986206Z",
"SomeStringProperty": "This is table entity number 16",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:17:00Z",
+ "SomeDateProperty": "2020-01-01T01:17:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90016",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "16",
- "SomeDoubleProperty0": 16.0,
+ "SomeDoubleProperty0": 16,
"SomeDoubleProperty1": 16.1,
- "SomeIntProperty": 16
+ "SomeIntProperty": 16,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:07.7538824Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6b15c8b5d91c0c44a309f32a83ad833c-e1fbf57a8988a34e-00",
+ "traceparent": "00-da3394b9098c504382f6e8fe1f667659-908651cb242f714d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f93be7fdc3d1cdd81f0312b125f1b0f5",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:08 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1315,60 +1164,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:12 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.0322449Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.8290440Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "f93be7fdc3d1cdd81f0312b125f1b0f5",
- "x-ms-request-id": "207503e8-b002-001b-6b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "f93be7fd-c3d1-cdd8-1f03-12b125f1b0f5"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehylzfh6f/@Element",
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.0322449Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f/$metadata#testtablehylzfh6f/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.8290440Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "17",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:13.0322449Z",
"SomeStringProperty": "This is table entity number 17",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:18:00Z",
+ "SomeDateProperty": "2020-01-01T01:18:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90017",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "17",
- "SomeDoubleProperty0": 17.0,
+ "SomeDoubleProperty0": 17,
"SomeDoubleProperty1": 17.1,
- "SomeIntProperty": 17
+ "SomeIntProperty": 17,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:07.8290440Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-223d6aee22b37240aacb934a5f0f7226-dd1cbe9b9df4224b-00",
+ "traceparent": "00-b4a22bce597399479968be2a8906d023-9f91423c49fde04a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "bafd81352cf80faba24e108fab6582c5",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:08 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1392,60 +1232,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:12 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.0772826Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:07 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.9056392Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "bafd81352cf80faba24e108fab6582c5",
- "x-ms-request-id": "207503ff-b002-001b-7f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "bafd8135-2cf8-0fab-a24e-108fab6582c5"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehylzfh6f/@Element",
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.0772826Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f/$metadata#testtablehylzfh6f/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.9056392Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "18",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:13.0772826Z",
"SomeStringProperty": "This is table entity number 18",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:19:00Z",
+ "SomeDateProperty": "2020-01-01T01:19:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90018",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "18",
- "SomeDoubleProperty0": 18.0,
+ "SomeDoubleProperty0": 18,
"SomeDoubleProperty1": 18.1,
- "SomeIntProperty": 18
+ "SomeIntProperty": 18,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:07.9056392Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9569f9e6121d2941a7aeb390f9de20c5-d733fa236eaa4248-00",
+ "traceparent": "00-4f6bcb05ce35ac41b7d89fd250f90e88-c06bcffc8939f44f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7c26c8b115f752e72ed5ceeb4e73b2c3",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:08 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1469,60 +1300,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:12 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.1233211Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:07 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.9800840Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "7c26c8b115f752e72ed5ceeb4e73b2c3",
- "x-ms-request-id": "2075040e-b002-001b-0c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "7c26c8b1-15f7-52e7-2ed5-ceeb4e73b2c3"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehylzfh6f/@Element",
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.1233211Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f/$metadata#testtablehylzfh6f/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.9800840Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "19",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:13.1233211Z",
"SomeStringProperty": "This is table entity number 19",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:20:00Z",
+ "SomeDateProperty": "2020-01-01T01:20:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90019",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "19",
- "SomeDoubleProperty0": 19.0,
+ "SomeDoubleProperty0": 19,
"SomeDoubleProperty1": 19.1,
- "SomeIntProperty": 19
+ "SomeIntProperty": 19,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:07.9800840Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-3cdde4b20cc64e44b650db5c90d7bfb0-1967f8e2de1e5148-00",
+ "traceparent": "00-0ff4e6380116874583901339108c4468-bf318bfbf5b89342-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0e9857310c73d1f43c2b5783b34922b9",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:08 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1546,559 +1368,475 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:12 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.1793679Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:07 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A08.0546312Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "0e9857310c73d1f43c2b5783b34922b9",
- "x-ms-request-id": "2075041b-b002-001b-1921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "0e985731-0c73-d1f4-3c2b-5783b34922b9"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehylzfh6f/@Element",
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.1793679Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f/$metadata#testtablehylzfh6f/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A08.0546312Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "20",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:13.1793679Z",
"SomeStringProperty": "This is table entity number 20",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:21:00Z",
+ "SomeDateProperty": "2020-01-01T01:21:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90020",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "20",
- "SomeDoubleProperty0": 20.0,
+ "SomeDoubleProperty0": 20,
"SomeDoubleProperty1": 20.1,
- "SomeIntProperty": 20
+ "SomeIntProperty": 20,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:08.0546312Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f()?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehylzfh6f()?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5dff4c8134ca1ffe9aab8c235dc0c12f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:08 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:13 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:07 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "5dff4c8134ca1ffe9aab8c235dc0c12f",
- "x-ms-request-id": "20750426-b002-001b-2421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "5dff4c81-34ca-1ffe-9aab-8c235dc0c12f"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehylzfh6f",
"value": [
{
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.3156462Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A06.5879560Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:12.3156462Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:02:00Z",
+ "SomeDateProperty": "2020-01-01T01:02:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "1",
- "SomeDoubleProperty0": 1.0,
+ "SomeDoubleProperty0": 1,
"SomeDoubleProperty1": 1.1,
- "SomeIntProperty": 1
+ "SomeIntProperty": 1,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:06.5879560Z"
},
{
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.3616843Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A06.6712072Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "02",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:12.3616843Z",
"SomeStringProperty": "This is table entity number 02",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:03:00Z",
+ "SomeDateProperty": "2020-01-01T01:03:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "2",
- "SomeDoubleProperty0": 2.0,
+ "SomeDoubleProperty0": 2,
"SomeDoubleProperty1": 2.1,
- "SomeIntProperty": 2
+ "SomeIntProperty": 2,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:06.6712072Z"
},
{
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.4067219Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A06.7452424Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "03",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:12.4067219Z",
"SomeStringProperty": "This is table entity number 03",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:04:00Z",
+ "SomeDateProperty": "2020-01-01T01:04:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "3",
- "SomeDoubleProperty0": 3.0,
+ "SomeDoubleProperty0": 3,
"SomeDoubleProperty1": 3.1,
- "SomeIntProperty": 3
+ "SomeIntProperty": 3,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:06.7452424Z"
},
{
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.4517596Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A06.8191752Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "04",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:12.4517596Z",
"SomeStringProperty": "This is table entity number 04",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:05:00Z",
+ "SomeDateProperty": "2020-01-01T01:05:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "4",
- "SomeDoubleProperty0": 4.0,
+ "SomeDoubleProperty0": 4,
"SomeDoubleProperty1": 4.1,
- "SomeIntProperty": 4
+ "SomeIntProperty": 4,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:06.8191752Z"
},
{
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.4957964Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A06.8935176Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "05",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:12.4957964Z",
"SomeStringProperty": "This is table entity number 05",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:06:00Z",
+ "SomeDateProperty": "2020-01-01T01:06:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90005",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "5",
- "SomeDoubleProperty0": 5.0,
+ "SomeDoubleProperty0": 5,
"SomeDoubleProperty1": 5.1,
- "SomeIntProperty": 5
+ "SomeIntProperty": 5,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:06.8935176Z"
},
{
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.543837Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A06.9696008Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "06",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:12.543837Z",
"SomeStringProperty": "This is table entity number 06",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:07:00Z",
+ "SomeDateProperty": "2020-01-01T01:07:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90006",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "6",
- "SomeDoubleProperty0": 6.0,
+ "SomeDoubleProperty0": 6,
"SomeDoubleProperty1": 6.1,
- "SomeIntProperty": 6
+ "SomeIntProperty": 6,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:06.9696008Z"
},
{
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.5948797Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.0464008Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "07",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:12.5948797Z",
"SomeStringProperty": "This is table entity number 07",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:08:00Z",
+ "SomeDateProperty": "2020-01-01T01:08:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90007",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "7",
- "SomeDoubleProperty0": 7.0,
+ "SomeDoubleProperty0": 7,
"SomeDoubleProperty1": 7.1,
- "SomeIntProperty": 7
+ "SomeIntProperty": 7,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:07.0464008Z"
},
{
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.6379148Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.1211528Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "08",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:12.6379148Z",
"SomeStringProperty": "This is table entity number 08",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:09:00Z",
+ "SomeDateProperty": "2020-01-01T01:09:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90008",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "8",
- "SomeDoubleProperty0": 8.0,
+ "SomeDoubleProperty0": 8,
"SomeDoubleProperty1": 8.1,
- "SomeIntProperty": 8
+ "SomeIntProperty": 8,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:07.1211528Z"
},
{
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.6809508Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.1959048Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "09",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:12.6809508Z",
"SomeStringProperty": "This is table entity number 09",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:10:00Z",
+ "SomeDateProperty": "2020-01-01T01:10:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90009",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "9",
- "SomeDoubleProperty0": 9.0,
+ "SomeDoubleProperty0": 9,
"SomeDoubleProperty1": 9.1,
- "SomeIntProperty": 9
+ "SomeIntProperty": 9,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:07.1959048Z"
},
{
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.7239872Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.2706568Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "10",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:12.7239872Z",
"SomeStringProperty": "This is table entity number 10",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:11:00Z",
+ "SomeDateProperty": "2020-01-01T01:11:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90010",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "10",
- "SomeDoubleProperty0": 10.0,
+ "SomeDoubleProperty0": 10,
"SomeDoubleProperty1": 10.1,
- "SomeIntProperty": 10
+ "SomeIntProperty": 10,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:07.2706568Z"
},
{
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.7680236Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.3547272Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "11",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:12.7680236Z",
"SomeStringProperty": "This is table entity number 11",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:12:00Z",
+ "SomeDateProperty": "2020-01-01T01:12:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90011",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "11",
- "SomeDoubleProperty0": 11.0,
+ "SomeDoubleProperty0": 11,
"SomeDoubleProperty1": 11.1,
- "SomeIntProperty": 11
+ "SomeIntProperty": 11,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:07.3547272Z"
},
{
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.8110604Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.4446344Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "12",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:12.8110604Z",
"SomeStringProperty": "This is table entity number 12",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:13:00Z",
+ "SomeDateProperty": "2020-01-01T01:13:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90012",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "12",
- "SomeDoubleProperty0": 12.0,
+ "SomeDoubleProperty0": 12,
"SomeDoubleProperty1": 12.1,
- "SomeIntProperty": 12
+ "SomeIntProperty": 12,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:07.4446344Z"
},
{
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.8560976Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.5301384Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "13",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:12.8560976Z",
"SomeStringProperty": "This is table entity number 13",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:14:00Z",
+ "SomeDateProperty": "2020-01-01T01:14:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90013",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "13",
- "SomeDoubleProperty0": 13.0,
+ "SomeDoubleProperty0": 13,
"SomeDoubleProperty1": 13.1,
- "SomeIntProperty": 13
+ "SomeIntProperty": 13,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:07.5301384Z"
},
{
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.897132Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.6050952Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "14",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:12.897132Z",
"SomeStringProperty": "This is table entity number 14",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:15:00Z",
+ "SomeDateProperty": "2020-01-01T01:15:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90014",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "14",
- "SomeDoubleProperty0": 14.0,
+ "SomeDoubleProperty0": 14,
"SomeDoubleProperty1": 14.1,
- "SomeIntProperty": 14
+ "SomeIntProperty": 14,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:07.6050952Z"
},
{
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.9421696Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.6786184Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "15",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:12.9421696Z",
"SomeStringProperty": "This is table entity number 15",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:16:00Z",
+ "SomeDateProperty": "2020-01-01T01:16:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90015",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "15",
- "SomeDoubleProperty0": 15.0,
+ "SomeDoubleProperty0": 15,
"SomeDoubleProperty1": 15.1,
- "SomeIntProperty": 15
+ "SomeIntProperty": 15,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:07.6786184Z"
},
{
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A12.986206Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.7538824Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "16",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:12.986206Z",
"SomeStringProperty": "This is table entity number 16",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:17:00Z",
+ "SomeDateProperty": "2020-01-01T01:17:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90016",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "16",
- "SomeDoubleProperty0": 16.0,
+ "SomeDoubleProperty0": 16,
"SomeDoubleProperty1": 16.1,
- "SomeIntProperty": 16
+ "SomeIntProperty": 16,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:07.7538824Z"
},
{
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.0322449Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.8290440Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "17",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:13.0322449Z",
"SomeStringProperty": "This is table entity number 17",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:18:00Z",
+ "SomeDateProperty": "2020-01-01T01:18:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90017",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "17",
- "SomeDoubleProperty0": 17.0,
+ "SomeDoubleProperty0": 17,
"SomeDoubleProperty1": 17.1,
- "SomeIntProperty": 17
+ "SomeIntProperty": 17,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:07.8290440Z"
},
{
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.0772826Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.9056392Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "18",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:13.0772826Z",
"SomeStringProperty": "This is table entity number 18",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:19:00Z",
+ "SomeDateProperty": "2020-01-01T01:19:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90018",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "18",
- "SomeDoubleProperty0": 18.0,
+ "SomeDoubleProperty0": 18,
"SomeDoubleProperty1": 18.1,
- "SomeIntProperty": 18
+ "SomeIntProperty": 18,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:07.9056392Z"
},
{
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.1233211Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A07.9800840Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "19",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:13.1233211Z",
"SomeStringProperty": "This is table entity number 19",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:20:00Z",
+ "SomeDateProperty": "2020-01-01T01:20:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90019",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "19",
- "SomeDoubleProperty0": 19.0,
+ "SomeDoubleProperty0": 19,
"SomeDoubleProperty1": 19.1,
- "SomeIntProperty": 19
+ "SomeIntProperty": 19,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:07.9800840Z"
},
{
- "odata.type": "chrissscratch.testtablehylzfh6f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A13.1793679Z\u0027\u0022",
- "odata.editLink": "testtablehylzfh6f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A08.0546312Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "20",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:13.1793679Z",
"SomeStringProperty": "This is table entity number 20",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:21:00Z",
+ "SomeDateProperty": "2020-01-01T01:21:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90020",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "20",
- "SomeDoubleProperty0": 20.0,
+ "SomeDoubleProperty0": 20,
"SomeDoubleProperty1": 20.1,
- "SomeIntProperty": 20
+ "SomeIntProperty": 20,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:08.0546312Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablehylzfh6f\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablehylzfh6f\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-91cf492cbeec3641b9056e34566f34a8-a2ec3d3175271741-00",
+ "traceparent": "00-080d0ffd9ef8c6459ff05d227c311dad-83c71eca15497f4d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "545e4c9b73cda551d3553fcbbe639ee4",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:08 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:13 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "545e4c9b73cda551d3553fcbbe639ee4",
- "x-ms-request-id": "2075043d-b002-001b-3b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:35:07 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "545e4c9b-73cd-a551-d355-3fcbbe639ee4"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "114059248",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedEntitiesCanBeQueriedWithAndWithoutPagination(null)Async.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedEntitiesCanBeQueriedWithAndWithoutPagination(null)Async.json
index ea9942923561..59b9041a95f7 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedEntitiesCanBeQueriedWithAndWithoutPagination(null)Async.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedEntitiesCanBeQueriedWithAndWithoutPagination(null)Async.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-539cfcea13ec194aa23dedf653ee1539-f1a76a6900ca3d46-00",
+ "traceparent": "00-7bf372d280da894cb845056d3ba04df5-194d9bb5ace00244-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c6a66fce0a6bf05bdb3336ebf0ff4bc9",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:36 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:23 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:35 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableqih5vbgq\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A24.0010760Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableqih5vbgq\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c6a66fce0a6bf05bdb3336ebf0ff4bc9",
- "x-ms-request-id": "20751ab5-b002-001b-7321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "c6a66fce-0a6b-f05b-db33-36ebf0ff4bc9"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableqih5vbgq\u0027)",
- "odata.editLink": "Tables(\u0027testtableqih5vbgq\u0027)",
- "TableName": "testtableqih5vbgq"
+ "TableName": "testtableqih5vbgq",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e2a5616f014e9644aa8556e984f455a6-180bd77adf01564c-00",
+ "traceparent": "00-d98b31add58df242bdfda492f3312f59-c1b78fc1418f0c4b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a2b6da6d2edcc633d90cd52405f18fa7",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:36 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:24 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -83,60 +76,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:35 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A35.8942854Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A24.6861320Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a2b6da6d2edcc633d90cd52405f18fa7",
- "x-ms-request-id": "20751ac1-b002-001b-7e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "a2b6da6d-2edc-c633-d90c-d52405f18fa7"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableqih5vbgq/@Element",
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A35.8942854Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq/$metadata#testtableqih5vbgq/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A24.6861320Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:35.8942854Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:02:00Z",
+ "SomeDateProperty": "2020-01-01T01:02:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "1",
- "SomeDoubleProperty0": 1.0,
+ "SomeDoubleProperty0": 1,
"SomeDoubleProperty1": 1.1,
- "SomeIntProperty": 1
+ "SomeIntProperty": 1,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:24.6861320Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-5da87058717fa944986cf5e349da9fd6-50ad907e2380be4f-00",
+ "traceparent": "00-9d0235f5a86dcf48826ed0faba17929d-1bd4fe86efca934e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b12efcc54fa640890def9153a23ed855",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:36 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:24 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -160,60 +144,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:35 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A35.9393232Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A24.7698952Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "b12efcc54fa640890def9153a23ed855",
- "x-ms-request-id": "20751acc-b002-001b-0921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "b12efcc5-4fa6-4089-0def-9153a23ed855"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableqih5vbgq/@Element",
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A35.9393232Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq/$metadata#testtableqih5vbgq/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A24.7698952Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "02",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:35.9393232Z",
"SomeStringProperty": "This is table entity number 02",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:03:00Z",
+ "SomeDateProperty": "2020-01-01T01:03:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "2",
- "SomeDoubleProperty0": 2.0,
+ "SomeDoubleProperty0": 2,
"SomeDoubleProperty1": 2.1,
- "SomeIntProperty": 2
+ "SomeIntProperty": 2,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:24.7698952Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f43f55f6aabf3644927e9085352999f7-20c6ada4ba9b6a43-00",
+ "traceparent": "00-88a0f687af1ddd41a450ec34b058788d-128c152260935b4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2180d028bd609f943cdfec5f3537ebea",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:36 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -237,60 +212,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:35 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A35.9843601Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A24.8441352Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "2180d028bd609f943cdfec5f3537ebea",
- "x-ms-request-id": "20751ad9-b002-001b-1621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "2180d028-bd60-9f94-3cdf-ec5f3537ebea"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableqih5vbgq/@Element",
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A35.9843601Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq/$metadata#testtableqih5vbgq/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A24.8441352Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "03",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:35.9843601Z",
"SomeStringProperty": "This is table entity number 03",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:04:00Z",
+ "SomeDateProperty": "2020-01-01T01:04:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "3",
- "SomeDoubleProperty0": 3.0,
+ "SomeDoubleProperty0": 3,
"SomeDoubleProperty1": 3.1,
- "SomeIntProperty": 3
+ "SomeIntProperty": 3,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:24.8441352Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-7ff9224c5f6b6041a2b3a4e0b2fddcbf-40a482c420169f47-00",
+ "traceparent": "00-334ffd84ff8fe547a9519e90b3e60452-62d7c50f04a63b45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f3258fa399d01e22507695ec9cdf249b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:36 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -314,60 +280,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:35 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.0293975Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A24.9176584Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "f3258fa399d01e22507695ec9cdf249b",
- "x-ms-request-id": "20751ae2-b002-001b-1f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "f3258fa3-99d0-1e22-5076-95ec9cdf249b"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableqih5vbgq/@Element",
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.0293975Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq/$metadata#testtableqih5vbgq/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A24.9176584Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "04",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:36.0293975Z",
"SomeStringProperty": "This is table entity number 04",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:05:00Z",
+ "SomeDateProperty": "2020-01-01T01:05:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "4",
- "SomeDoubleProperty0": 4.0,
+ "SomeDoubleProperty0": 4,
"SomeDoubleProperty1": 4.1,
- "SomeIntProperty": 4
+ "SomeIntProperty": 4,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:24.9176584Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-82bb0897c8e67e488de4e605ba78c346-f68ebfbd73095f4f-00",
+ "traceparent": "00-47ffebc57e7fd141be0d25b1ea724c45-c25bed3869efcd45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "34fc80336e710747688f75c6622a0bd6",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:36 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -391,60 +348,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:35 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.0744353Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A24.9914888Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "34fc80336e710747688f75c6622a0bd6",
- "x-ms-request-id": "20751ae9-b002-001b-2521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "34fc8033-6e71-0747-688f-75c6622a0bd6"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableqih5vbgq/@Element",
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.0744353Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq/$metadata#testtableqih5vbgq/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A24.9914888Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "05",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:36.0744353Z",
"SomeStringProperty": "This is table entity number 05",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:06:00Z",
+ "SomeDateProperty": "2020-01-01T01:06:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90005",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "5",
- "SomeDoubleProperty0": 5.0,
+ "SomeDoubleProperty0": 5,
"SomeDoubleProperty1": 5.1,
- "SomeIntProperty": 5
+ "SomeIntProperty": 5,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:24.9914888Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-20f200a87bc4574f846196ca3cf6c77c-e58a1d9dc5056347-00",
+ "traceparent": "00-11adf0d5c212de46afa2d3825816cf41-4cc3b4414a9fbc4c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "12b0a704e4188e84ad62d1ea27a7025c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:36 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -468,60 +416,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:35 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.1204736Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.0662408Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "12b0a704e4188e84ad62d1ea27a7025c",
- "x-ms-request-id": "20751af7-b002-001b-3121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "12b0a704-e418-8e84-ad62-d1ea27a7025c"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableqih5vbgq/@Element",
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.1204736Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq/$metadata#testtableqih5vbgq/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.0662408Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "06",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:36.1204736Z",
"SomeStringProperty": "This is table entity number 06",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:07:00Z",
+ "SomeDateProperty": "2020-01-01T01:07:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90006",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "6",
- "SomeDoubleProperty0": 6.0,
+ "SomeDoubleProperty0": 6,
"SomeDoubleProperty1": 6.1,
- "SomeIntProperty": 6
+ "SomeIntProperty": 6,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:25.0662408Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a405fd63581e5049b43079975a8d6158-490ebbc61accdd44-00",
+ "traceparent": "00-06fd314ff4623345b8ce939d4781251b-30e2d9572fbfca47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b52b50bbb63a3578481e8b40245cbb25",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:36 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -545,60 +484,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:35 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.1645101Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.1421192Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "b52b50bbb63a3578481e8b40245cbb25",
- "x-ms-request-id": "20751b08-b002-001b-4021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "b52b50bb-b63a-3578-481e-8b40245cbb25"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableqih5vbgq/@Element",
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.1645101Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq/$metadata#testtableqih5vbgq/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.1421192Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "07",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:36.1645101Z",
"SomeStringProperty": "This is table entity number 07",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:08:00Z",
+ "SomeDateProperty": "2020-01-01T01:08:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90007",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "7",
- "SomeDoubleProperty0": 7.0,
+ "SomeDoubleProperty0": 7,
"SomeDoubleProperty1": 7.1,
- "SomeIntProperty": 7
+ "SomeIntProperty": 7,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:25.1421192Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-7587fca0d6276f419e088d66cbccf597-daf5c80e8b2eab48-00",
+ "traceparent": "00-587ea592b2d6214ab8f4f2bf61b2c775-76619c375e67264d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f5e7bf6a112f4e83fb6d870f9d5ddfc0",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:36 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -622,60 +552,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:35 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.2095471Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.2168712Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "f5e7bf6a112f4e83fb6d870f9d5ddfc0",
- "x-ms-request-id": "20751b11-b002-001b-4821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "f5e7bf6a-112f-4e83-fb6d-870f9d5ddfc0"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableqih5vbgq/@Element",
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.2095471Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq/$metadata#testtableqih5vbgq/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.2168712Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "08",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:36.2095471Z",
"SomeStringProperty": "This is table entity number 08",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:09:00Z",
+ "SomeDateProperty": "2020-01-01T01:09:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90008",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "8",
- "SomeDoubleProperty0": 8.0,
+ "SomeDoubleProperty0": 8,
"SomeDoubleProperty1": 8.1,
- "SomeIntProperty": 8
+ "SomeIntProperty": 8,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:25.2168712Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-cbe519d6025eae48855fcdf835f1fd20-6ed8408d81d5a940-00",
+ "traceparent": "00-6210ee79bf2ff346814e2cf36a40754d-08b4f0245e3f5940-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "110b188c56ff4e9b2f7acafa59436950",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:36 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -699,60 +620,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:36 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.2545845Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.2945928Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "110b188c56ff4e9b2f7acafa59436950",
- "x-ms-request-id": "20751b20-b002-001b-5521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "110b188c-56ff-4e9b-2f7a-cafa59436950"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableqih5vbgq/@Element",
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.2545845Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq/$metadata#testtableqih5vbgq/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.2945928Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "09",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:36.2545845Z",
"SomeStringProperty": "This is table entity number 09",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:10:00Z",
+ "SomeDateProperty": "2020-01-01T01:10:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90009",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "9",
- "SomeDoubleProperty0": 9.0,
+ "SomeDoubleProperty0": 9,
"SomeDoubleProperty1": 9.1,
- "SomeIntProperty": 9
+ "SomeIntProperty": 9,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:25.2945928Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1f1f87c3d4296c409b3e02e8ef5d42f5-a013d268b1cbd949-00",
+ "traceparent": "00-13f2136d9d2e654382bada23b5cfdf28-69ee7b4f1d218e41-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "687faba70dc0a92dcddcbacc2e6998ea",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:36 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -776,60 +688,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:36 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.2946177Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.3700616Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "687faba70dc0a92dcddcbacc2e6998ea",
- "x-ms-request-id": "20751b30-b002-001b-6121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "687faba7-0dc0-a92d-cddc-bacc2e6998ea"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableqih5vbgq/@Element",
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.2946177Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq/$metadata#testtableqih5vbgq/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.3700616Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "10",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:36.2946177Z",
"SomeStringProperty": "This is table entity number 10",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:11:00Z",
+ "SomeDateProperty": "2020-01-01T01:11:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90010",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "10",
- "SomeDoubleProperty0": 10.0,
+ "SomeDoubleProperty0": 10,
"SomeDoubleProperty1": 10.1,
- "SomeIntProperty": 10
+ "SomeIntProperty": 10,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:25.3700616Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8c2a6dc666069a4bbe496e6b767773f1-88eb7ea1c0a39f44-00",
+ "traceparent": "00-2b2ada1959b2294bbcdae9fb3c2e98ba-522b469585b96545-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0bb4cb3ea95113262499c5b44689f5b7",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:36 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -853,60 +756,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:36 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.3406568Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.4471688Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "0bb4cb3ea95113262499c5b44689f5b7",
- "x-ms-request-id": "20751b35-b002-001b-6621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "0bb4cb3e-a951-1326-2499-c5b44689f5b7"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableqih5vbgq/@Element",
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.3406568Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq/$metadata#testtableqih5vbgq/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.4471688Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "11",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:36.3406568Z",
"SomeStringProperty": "This is table entity number 11",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:12:00Z",
+ "SomeDateProperty": "2020-01-01T01:12:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90011",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "11",
- "SomeDoubleProperty0": 11.0,
+ "SomeDoubleProperty0": 11,
"SomeDoubleProperty1": 11.1,
- "SomeIntProperty": 11
+ "SomeIntProperty": 11,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:25.4471688Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c2396619a12e1d4cbfffbddd15914b52-111c8834e4098c44-00",
+ "traceparent": "00-e3b36498cb417d4093ee92af068ff3ad-73b650db5af3e14a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f167360477dd7f00eb6144229cce1fc5",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:36 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -930,60 +824,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:36 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.3947008Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:25 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.5217160Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "f167360477dd7f00eb6144229cce1fc5",
- "x-ms-request-id": "20751b47-b002-001b-7421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "f1673604-77dd-7f00-eb61-44229cce1fc5"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableqih5vbgq/@Element",
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.3947008Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq/$metadata#testtableqih5vbgq/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.5217160Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "12",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:36.3947008Z",
"SomeStringProperty": "This is table entity number 12",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:13:00Z",
+ "SomeDateProperty": "2020-01-01T01:13:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90012",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "12",
- "SomeDoubleProperty0": 12.0,
+ "SomeDoubleProperty0": 12,
"SomeDoubleProperty1": 12.1,
- "SomeIntProperty": 12
+ "SomeIntProperty": 12,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:25.5217160Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d4d8a8c13212834baaba668c92fb455d-668ab7e03dd31d4d-00",
+ "traceparent": "00-4a444e60d69f9948967d307b6260493f-988ae24c93344547-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8dbbe0e25e8ffdff856b442647786243",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:36 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1007,60 +892,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:36 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.4447432Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:25 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.5993352Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "8dbbe0e25e8ffdff856b442647786243",
- "x-ms-request-id": "20751b55-b002-001b-0121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "8dbbe0e2-5e8f-fdff-856b-442647786243"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableqih5vbgq/@Element",
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.4447432Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq/$metadata#testtableqih5vbgq/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.5993352Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "13",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:36.4447432Z",
"SomeStringProperty": "This is table entity number 13",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:14:00Z",
+ "SomeDateProperty": "2020-01-01T01:14:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90013",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "13",
- "SomeDoubleProperty0": 13.0,
+ "SomeDoubleProperty0": 13,
"SomeDoubleProperty1": 13.1,
- "SomeIntProperty": 13
+ "SomeIntProperty": 13,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:25.5993352Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-69f2c410b7e82047a99a6cfed434c6ce-6d80a4d919b1ab49-00",
+ "traceparent": "00-557f7f5ab363924fa125b42735ea6202-999aaae6acf8624c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f7c802e7a601c60ccb3520ef65037755",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:36 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1084,60 +960,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:36 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.4897797Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:25 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.6743944Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "f7c802e7a601c60ccb3520ef65037755",
- "x-ms-request-id": "20751b62-b002-001b-0d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "f7c802e7-a601-c60c-cb35-20ef65037755"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableqih5vbgq/@Element",
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.4897797Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq/$metadata#testtableqih5vbgq/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.6743944Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "14",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:36.4897797Z",
"SomeStringProperty": "This is table entity number 14",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:15:00Z",
+ "SomeDateProperty": "2020-01-01T01:15:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90014",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "14",
- "SomeDoubleProperty0": 14.0,
+ "SomeDoubleProperty0": 14,
"SomeDoubleProperty1": 14.1,
- "SomeIntProperty": 14
+ "SomeIntProperty": 14,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:25.6743944Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-56b9e9bf1c0b5a41b1193d7f83a6d758-5a12ea0306eb5c49-00",
+ "traceparent": "00-366ea6ae0675f847a6445f50b1a80b01-dd2cc6da23c5394d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "66d2007a68cda527376a6c7233d93773",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:36 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1161,60 +1028,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:36 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.5318146Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:25 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.7474056Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "66d2007a68cda527376a6c7233d93773",
- "x-ms-request-id": "20751b6d-b002-001b-1821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "66d2007a-68cd-a527-376a-6c7233d93773"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableqih5vbgq/@Element",
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.5318146Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq/$metadata#testtableqih5vbgq/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.7474056Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "15",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:36.5318146Z",
"SomeStringProperty": "This is table entity number 15",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:16:00Z",
+ "SomeDateProperty": "2020-01-01T01:16:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90015",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "15",
- "SomeDoubleProperty0": 15.0,
+ "SomeDoubleProperty0": 15,
"SomeDoubleProperty1": 15.1,
- "SomeIntProperty": 15
+ "SomeIntProperty": 15,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:25.7474056Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d6dbd02c7c594a448407726f9cb74cb8-09a9d9adf1e52c48-00",
+ "traceparent": "00-9cdb59043d5d7c4eb66ddfd07ca1b21a-d2d964926c77114c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "993b00ff27063cc3d3f4c15a3d109881",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:36 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1238,60 +1096,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:36 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.5728491Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:25 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.8230792Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "993b00ff27063cc3d3f4c15a3d109881",
- "x-ms-request-id": "20751b77-b002-001b-2121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "993b00ff-2706-3cc3-d3f4-c15a3d109881"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableqih5vbgq/@Element",
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.5728491Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq/$metadata#testtableqih5vbgq/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.8230792Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "16",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:36.5728491Z",
"SomeStringProperty": "This is table entity number 16",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:17:00Z",
+ "SomeDateProperty": "2020-01-01T01:17:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90016",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "16",
- "SomeDoubleProperty0": 16.0,
+ "SomeDoubleProperty0": 16,
"SomeDoubleProperty1": 16.1,
- "SomeIntProperty": 16
+ "SomeIntProperty": 16,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:25.8230792Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c91c62187d4a384b95d1c311f621a0e0-de01909988211c4e-00",
+ "traceparent": "00-e8a9301c7963fd459279ad3df96d310a-9e5513311fe46f41-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "47abeff4fca67e75db22c0973a9a93f1",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:36 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1315,60 +1164,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:36 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.6158844Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:25 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.8993672Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "47abeff4fca67e75db22c0973a9a93f1",
- "x-ms-request-id": "20751b7c-b002-001b-2621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "47abeff4-fca6-7e75-db22-c0973a9a93f1"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableqih5vbgq/@Element",
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.6158844Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq/$metadata#testtableqih5vbgq/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.8993672Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "17",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:36.6158844Z",
"SomeStringProperty": "This is table entity number 17",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:18:00Z",
+ "SomeDateProperty": "2020-01-01T01:18:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90017",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "17",
- "SomeDoubleProperty0": 17.0,
+ "SomeDoubleProperty0": 17,
"SomeDoubleProperty1": 17.1,
- "SomeIntProperty": 17
+ "SomeIntProperty": 17,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:25.8993672Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-de0ebaf17833354f9288154b595826e8-99cf8ed91c1e8a4f-00",
+ "traceparent": "00-51f31c7c7a509649b514453b002dff0c-37aa7b0852cb6347-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "64f0acfeddc8524e3c9593d9a6cd6827",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:36 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1392,60 +1232,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:36 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.6629239Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:25 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.9735048Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "64f0acfeddc8524e3c9593d9a6cd6827",
- "x-ms-request-id": "20751b83-b002-001b-2c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "64f0acfe-ddc8-524e-3c95-93d9a6cd6827"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableqih5vbgq/@Element",
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.6629239Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq/$metadata#testtableqih5vbgq/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.9735048Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "18",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:36.6629239Z",
"SomeStringProperty": "This is table entity number 18",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:19:00Z",
+ "SomeDateProperty": "2020-01-01T01:19:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90018",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "18",
- "SomeDoubleProperty0": 18.0,
+ "SomeDoubleProperty0": 18,
"SomeDoubleProperty1": 18.1,
- "SomeIntProperty": 18
+ "SomeIntProperty": 18,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:25.9735048Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-2535cdb5f81efa4ebe3f92414837cdd2-d245dbacf239f547-00",
+ "traceparent": "00-125c8299d1432742b863d820ef5e4762-05beaa12994afe4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "447dead2ef2e02cd8abcbee3672c0138",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:36 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1469,60 +1300,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:36 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.70596Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:25 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A26.0481544Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "447dead2ef2e02cd8abcbee3672c0138",
- "x-ms-request-id": "20751b94-b002-001b-3d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "447dead2-ef2e-02cd-8abc-bee3672c0138"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableqih5vbgq/@Element",
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.70596Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq/$metadata#testtableqih5vbgq/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A26.0481544Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "19",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:36.70596Z",
"SomeStringProperty": "This is table entity number 19",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:20:00Z",
+ "SomeDateProperty": "2020-01-01T01:20:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90019",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "19",
- "SomeDoubleProperty0": 19.0,
+ "SomeDoubleProperty0": 19,
"SomeDoubleProperty1": 19.1,
- "SomeIntProperty": 19
+ "SomeIntProperty": 19,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:26.0481544Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-decb8b4952d54d4492c53d32f6931797-b414d605de057845-00",
+ "traceparent": "00-35d67434f8321649a0e874eb3882e113-f1c1255896f9bc48-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "905ccf61331f16b9a0590b10699cd80e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:37 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1546,559 +1368,475 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:36 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.7499961Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:25 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A26.1230088Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "905ccf61331f16b9a0590b10699cd80e",
- "x-ms-request-id": "20751ba6-b002-001b-4c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "905ccf61-331f-16b9-a059-0b10699cd80e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableqih5vbgq/@Element",
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.7499961Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq/$metadata#testtableqih5vbgq/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A26.1230088Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "20",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:36.7499961Z",
"SomeStringProperty": "This is table entity number 20",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:21:00Z",
+ "SomeDateProperty": "2020-01-01T01:21:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90020",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "20",
- "SomeDoubleProperty0": 20.0,
+ "SomeDoubleProperty0": 20,
"SomeDoubleProperty1": 20.1,
- "SomeIntProperty": 20
+ "SomeIntProperty": 20,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:26.1230088Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq()?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableqih5vbgq()?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "50c599ba4f1d0ec3dfedd90c1f6beb0f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:37 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:36 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:25 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "50c599ba4f1d0ec3dfedd90c1f6beb0f",
- "x-ms-request-id": "20751bb4-b002-001b-5821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "50c599ba-4f1d-0ec3-dfed-d90c1f6beb0f"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableqih5vbgq",
"value": [
{
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A35.8942854Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A24.6861320Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:35.8942854Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:02:00Z",
+ "SomeDateProperty": "2020-01-01T01:02:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "1",
- "SomeDoubleProperty0": 1.0,
+ "SomeDoubleProperty0": 1,
"SomeDoubleProperty1": 1.1,
- "SomeIntProperty": 1
+ "SomeIntProperty": 1,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:24.6861320Z"
},
{
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A35.9393232Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A24.7698952Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "02",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:35.9393232Z",
"SomeStringProperty": "This is table entity number 02",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:03:00Z",
+ "SomeDateProperty": "2020-01-01T01:03:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "2",
- "SomeDoubleProperty0": 2.0,
+ "SomeDoubleProperty0": 2,
"SomeDoubleProperty1": 2.1,
- "SomeIntProperty": 2
+ "SomeIntProperty": 2,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:24.7698952Z"
},
{
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A35.9843601Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A24.8441352Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "03",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:35.9843601Z",
"SomeStringProperty": "This is table entity number 03",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:04:00Z",
+ "SomeDateProperty": "2020-01-01T01:04:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "3",
- "SomeDoubleProperty0": 3.0,
+ "SomeDoubleProperty0": 3,
"SomeDoubleProperty1": 3.1,
- "SomeIntProperty": 3
+ "SomeIntProperty": 3,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:24.8441352Z"
},
{
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.0293975Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A24.9176584Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "04",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:36.0293975Z",
"SomeStringProperty": "This is table entity number 04",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:05:00Z",
+ "SomeDateProperty": "2020-01-01T01:05:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "4",
- "SomeDoubleProperty0": 4.0,
+ "SomeDoubleProperty0": 4,
"SomeDoubleProperty1": 4.1,
- "SomeIntProperty": 4
+ "SomeIntProperty": 4,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:24.9176584Z"
},
{
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.0744353Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A24.9914888Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "05",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:36.0744353Z",
"SomeStringProperty": "This is table entity number 05",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:06:00Z",
+ "SomeDateProperty": "2020-01-01T01:06:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90005",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "5",
- "SomeDoubleProperty0": 5.0,
+ "SomeDoubleProperty0": 5,
"SomeDoubleProperty1": 5.1,
- "SomeIntProperty": 5
+ "SomeIntProperty": 5,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:24.9914888Z"
},
{
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.1204736Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.0662408Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "06",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:36.1204736Z",
"SomeStringProperty": "This is table entity number 06",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:07:00Z",
+ "SomeDateProperty": "2020-01-01T01:07:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90006",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "6",
- "SomeDoubleProperty0": 6.0,
+ "SomeDoubleProperty0": 6,
"SomeDoubleProperty1": 6.1,
- "SomeIntProperty": 6
+ "SomeIntProperty": 6,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:25.0662408Z"
},
{
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.1645101Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.1421192Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "07",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:36.1645101Z",
"SomeStringProperty": "This is table entity number 07",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:08:00Z",
+ "SomeDateProperty": "2020-01-01T01:08:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90007",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "7",
- "SomeDoubleProperty0": 7.0,
+ "SomeDoubleProperty0": 7,
"SomeDoubleProperty1": 7.1,
- "SomeIntProperty": 7
+ "SomeIntProperty": 7,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:25.1421192Z"
},
{
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.2095471Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.2168712Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "08",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:36.2095471Z",
"SomeStringProperty": "This is table entity number 08",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:09:00Z",
+ "SomeDateProperty": "2020-01-01T01:09:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90008",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "8",
- "SomeDoubleProperty0": 8.0,
+ "SomeDoubleProperty0": 8,
"SomeDoubleProperty1": 8.1,
- "SomeIntProperty": 8
+ "SomeIntProperty": 8,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:25.2168712Z"
},
{
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.2545845Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.2945928Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "09",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:36.2545845Z",
"SomeStringProperty": "This is table entity number 09",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:10:00Z",
+ "SomeDateProperty": "2020-01-01T01:10:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90009",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "9",
- "SomeDoubleProperty0": 9.0,
+ "SomeDoubleProperty0": 9,
"SomeDoubleProperty1": 9.1,
- "SomeIntProperty": 9
+ "SomeIntProperty": 9,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:25.2945928Z"
},
{
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.2946177Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.3700616Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "10",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:36.2946177Z",
"SomeStringProperty": "This is table entity number 10",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:11:00Z",
+ "SomeDateProperty": "2020-01-01T01:11:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90010",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "10",
- "SomeDoubleProperty0": 10.0,
+ "SomeDoubleProperty0": 10,
"SomeDoubleProperty1": 10.1,
- "SomeIntProperty": 10
+ "SomeIntProperty": 10,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:25.3700616Z"
},
{
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.3406568Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.4471688Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "11",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:36.3406568Z",
"SomeStringProperty": "This is table entity number 11",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:12:00Z",
+ "SomeDateProperty": "2020-01-01T01:12:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90011",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "11",
- "SomeDoubleProperty0": 11.0,
+ "SomeDoubleProperty0": 11,
"SomeDoubleProperty1": 11.1,
- "SomeIntProperty": 11
+ "SomeIntProperty": 11,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:25.4471688Z"
},
{
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.3947008Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.5217160Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "12",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:36.3947008Z",
"SomeStringProperty": "This is table entity number 12",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:13:00Z",
+ "SomeDateProperty": "2020-01-01T01:13:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90012",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "12",
- "SomeDoubleProperty0": 12.0,
+ "SomeDoubleProperty0": 12,
"SomeDoubleProperty1": 12.1,
- "SomeIntProperty": 12
+ "SomeIntProperty": 12,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:25.5217160Z"
},
{
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.4447432Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.5993352Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "13",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:36.4447432Z",
"SomeStringProperty": "This is table entity number 13",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:14:00Z",
+ "SomeDateProperty": "2020-01-01T01:14:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90013",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "13",
- "SomeDoubleProperty0": 13.0,
+ "SomeDoubleProperty0": 13,
"SomeDoubleProperty1": 13.1,
- "SomeIntProperty": 13
+ "SomeIntProperty": 13,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:25.5993352Z"
},
{
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.4897797Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.6743944Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "14",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:36.4897797Z",
"SomeStringProperty": "This is table entity number 14",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:15:00Z",
+ "SomeDateProperty": "2020-01-01T01:15:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90014",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "14",
- "SomeDoubleProperty0": 14.0,
+ "SomeDoubleProperty0": 14,
"SomeDoubleProperty1": 14.1,
- "SomeIntProperty": 14
+ "SomeIntProperty": 14,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:25.6743944Z"
},
{
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.5318146Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.7474056Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "15",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:36.5318146Z",
"SomeStringProperty": "This is table entity number 15",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:16:00Z",
+ "SomeDateProperty": "2020-01-01T01:16:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90015",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "15",
- "SomeDoubleProperty0": 15.0,
+ "SomeDoubleProperty0": 15,
"SomeDoubleProperty1": 15.1,
- "SomeIntProperty": 15
+ "SomeIntProperty": 15,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:25.7474056Z"
},
{
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.5728491Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.8230792Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "16",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:36.5728491Z",
"SomeStringProperty": "This is table entity number 16",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:17:00Z",
+ "SomeDateProperty": "2020-01-01T01:17:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90016",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "16",
- "SomeDoubleProperty0": 16.0,
+ "SomeDoubleProperty0": 16,
"SomeDoubleProperty1": 16.1,
- "SomeIntProperty": 16
+ "SomeIntProperty": 16,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:25.8230792Z"
},
{
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.6158844Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.8993672Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "17",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:36.6158844Z",
"SomeStringProperty": "This is table entity number 17",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:18:00Z",
+ "SomeDateProperty": "2020-01-01T01:18:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90017",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "17",
- "SomeDoubleProperty0": 17.0,
+ "SomeDoubleProperty0": 17,
"SomeDoubleProperty1": 17.1,
- "SomeIntProperty": 17
+ "SomeIntProperty": 17,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:25.8993672Z"
},
{
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.6629239Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A25.9735048Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "18",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:36.6629239Z",
"SomeStringProperty": "This is table entity number 18",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:19:00Z",
+ "SomeDateProperty": "2020-01-01T01:19:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90018",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "18",
- "SomeDoubleProperty0": 18.0,
+ "SomeDoubleProperty0": 18,
"SomeDoubleProperty1": 18.1,
- "SomeIntProperty": 18
+ "SomeIntProperty": 18,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:25.9735048Z"
},
{
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.70596Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A26.0481544Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "19",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:36.70596Z",
"SomeStringProperty": "This is table entity number 19",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:20:00Z",
+ "SomeDateProperty": "2020-01-01T01:20:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90019",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "19",
- "SomeDoubleProperty0": 19.0,
+ "SomeDoubleProperty0": 19,
"SomeDoubleProperty1": 19.1,
- "SomeIntProperty": 19
+ "SomeIntProperty": 19,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:26.0481544Z"
},
{
- "odata.type": "chrissscratch.testtableqih5vbgq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A36.7499961Z\u0027\u0022",
- "odata.editLink": "testtableqih5vbgq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A26.1230088Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "20",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:36.7499961Z",
"SomeStringProperty": "This is table entity number 20",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:21:00Z",
+ "SomeDateProperty": "2020-01-01T01:21:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90020",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "20",
- "SomeDoubleProperty0": 20.0,
+ "SomeDoubleProperty0": 20,
"SomeDoubleProperty1": 20.1,
- "SomeIntProperty": 20
+ "SomeIntProperty": 20,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:17:26.1230088Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableqih5vbgq\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableqih5vbgq\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-b3179f4593cbc34f95bfa4e69b3fb82f-b49db9fca9a3084a-00",
+ "traceparent": "00-f56647e6d86ba84e83976000a76078ae-b47d93873d797140-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d6775a93d7709e073166a4d4e4bd99ee",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:37 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:36 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "d6775a93d7709e073166a4d4e4bd99ee",
- "x-ms-request-id": "20751bca-b002-001b-6e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:17:26 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "d6775a93-d770-9e07-3166-a4d4e4bd99ee"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "827555618",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedEntitiesCanBeQueriedWithFilters.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedEntitiesCanBeQueriedWithFilters.json
index 49f30a32341b..4324b0320084 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedEntitiesCanBeQueriedWithFilters.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedEntitiesCanBeQueriedWithFilters.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-390fcaab72617844af6f8ff75d98eb41-8a944b2a516fc94b-00",
+ "traceparent": "00-382f74af8c03be459bc07f0f60d984ee-7a2159b389820048-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "85777ba97bf617960e7c16509194048f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:40 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:03 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable93bxlvf9\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:40 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A40.0264200Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable93bxlvf9\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "85777ba97bf617960e7c16509194048f",
- "x-ms-request-id": "2074fb65-b002-001b-1421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "85777ba9-7bf6-1796-0e7c-16509194048f"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable93bxlvf9\u0027)",
- "odata.editLink": "Tables(\u0027testtable93bxlvf9\u0027)",
- "TableName": "testtable93bxlvf9"
+ "TableName": "testtable93bxlvf9",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e7c9d5cd33987843b2fa3ccf3436451c-c6606034fdba5a40-00",
+ "traceparent": "00-0248306fc83ad2489b4aa60b20cbd637-0a2c856dd8814444-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a85e8d6b3b59338dd3415c89c87f3bc9",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:40 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -83,60 +76,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:04 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.2318988Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:40 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A40.6177800Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a85e8d6b3b59338dd3415c89c87f3bc9",
- "x-ms-request-id": "2074fb75-b002-001b-2321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "a85e8d6b-3b59-338d-d341-5c89c87f3bc9"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable93bxlvf9/@Element",
- "odata.type": "chrissscratch.testtable93bxlvf9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.2318988Z\u0027\u0022",
- "odata.editLink": "testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9/$metadata#testtable93bxlvf9/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A40.6177800Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:04.2318988Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:02:00Z",
+ "SomeDateProperty": "2020-01-01T01:02:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "1",
- "SomeDoubleProperty0": 1.0,
+ "SomeDoubleProperty0": 1,
"SomeDoubleProperty1": 1.1,
- "SomeIntProperty": 1
+ "SomeIntProperty": 1,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:40.6177800Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-900997acf1745444adb827e0c935c931-79bec7fbcf49054a-00",
+ "traceparent": "00-d32e1186faa5894fabbc693059350227-e71efd3b85b2be40-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "354f499afb61c16b5fef59c71bc19d9d",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:41 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -160,60 +144,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:04 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.279939Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:40 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A40.7005192Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "354f499afb61c16b5fef59c71bc19d9d",
- "x-ms-request-id": "2074fb89-b002-001b-3621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "354f499a-fb61-c16b-5fef-59c71bc19d9d"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable93bxlvf9/@Element",
- "odata.type": "chrissscratch.testtable93bxlvf9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.279939Z\u0027\u0022",
- "odata.editLink": "testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9/$metadata#testtable93bxlvf9/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A40.7005192Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "02",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:04.279939Z",
"SomeStringProperty": "This is table entity number 02",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:03:00Z",
+ "SomeDateProperty": "2020-01-01T01:03:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "2",
- "SomeDoubleProperty0": 2.0,
+ "SomeDoubleProperty0": 2,
"SomeDoubleProperty1": 2.1,
- "SomeIntProperty": 2
+ "SomeIntProperty": 2,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:40.7005192Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d60575a23d85944db582ed0237c706fd-db8235d89d478a45-00",
+ "traceparent": "00-89e203636f58a84ea98db6eea6e7f77f-781189b78a051940-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "69618c111d676d09ed44b1b51e0c4f8e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:41 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -237,60 +212,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:04 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.322975Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:40 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A40.7769096Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "69618c111d676d09ed44b1b51e0c4f8e",
- "x-ms-request-id": "2074fb95-b002-001b-4221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "69618c11-1d67-6d09-ed44-b1b51e0c4f8e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable93bxlvf9/@Element",
- "odata.type": "chrissscratch.testtable93bxlvf9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.322975Z\u0027\u0022",
- "odata.editLink": "testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9/$metadata#testtable93bxlvf9/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A40.7769096Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "03",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:04.322975Z",
"SomeStringProperty": "This is table entity number 03",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:04:00Z",
+ "SomeDateProperty": "2020-01-01T01:04:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "3",
- "SomeDoubleProperty0": 3.0,
+ "SomeDoubleProperty0": 3,
"SomeDoubleProperty1": 3.1,
- "SomeIntProperty": 3
+ "SomeIntProperty": 3,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:40.7769096Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-b8663d51e432ac4b9faf00a71599f92b-1f3b559d20b7bc45-00",
+ "traceparent": "00-1eaff7cda701c54eb1b09bce2ba8d77b-1357e7592e2b6a48-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "48b54c40ce45702e219c4869e2c61712",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:41 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -314,60 +280,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:04 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.3670114Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:40 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A40.8513544Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "48b54c40ce45702e219c4869e2c61712",
- "x-ms-request-id": "2074fba6-b002-001b-5321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "48b54c40-ce45-702e-219c-4869e2c61712"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable93bxlvf9/@Element",
- "odata.type": "chrissscratch.testtable93bxlvf9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.3670114Z\u0027\u0022",
- "odata.editLink": "testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9/$metadata#testtable93bxlvf9/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A40.8513544Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "04",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:04.3670114Z",
"SomeStringProperty": "This is table entity number 04",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:05:00Z",
+ "SomeDateProperty": "2020-01-01T01:05:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "4",
- "SomeDoubleProperty0": 4.0,
+ "SomeDoubleProperty0": 4,
"SomeDoubleProperty1": 4.1,
- "SomeIntProperty": 4
+ "SomeIntProperty": 4,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:40.8513544Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-39e7dce43d79374b98c30401e1f88d3e-4bda5c4b9f2c5040-00",
+ "traceparent": "00-a35aa8c2951bdd48b148aab16177b0a0-9ed7e5751b7eb545-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3c78bfa4d21e7c623fe1471d49b6a352",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:41 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -391,60 +348,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:04 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.409047Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:40 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A40.9260040Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "3c78bfa4d21e7c623fe1471d49b6a352",
- "x-ms-request-id": "2074fbad-b002-001b-5a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "3c78bfa4-d21e-7c62-3fe1-471d49b6a352"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable93bxlvf9/@Element",
- "odata.type": "chrissscratch.testtable93bxlvf9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.409047Z\u0027\u0022",
- "odata.editLink": "testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9/$metadata#testtable93bxlvf9/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A40.9260040Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "05",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:04.409047Z",
"SomeStringProperty": "This is table entity number 05",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:06:00Z",
+ "SomeDateProperty": "2020-01-01T01:06:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90005",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "5",
- "SomeDoubleProperty0": 5.0,
+ "SomeDoubleProperty0": 5,
"SomeDoubleProperty1": 5.1,
- "SomeIntProperty": 5
+ "SomeIntProperty": 5,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:40.9260040Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-defae69a38265147969436c949a39b16-c244140d6b746b4e-00",
+ "traceparent": "00-155f01d860b06c4c9fdc8ac076e55f23-c93e5aa45ce41f46-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "cf86cba0540b42575ef047cbd59f8b26",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:41 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -468,60 +416,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:04 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.450083Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:40 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.0006536Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "cf86cba0540b42575ef047cbd59f8b26",
- "x-ms-request-id": "2074fbb1-b002-001b-5e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "cf86cba0-540b-4257-5ef0-47cbd59f8b26"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable93bxlvf9/@Element",
- "odata.type": "chrissscratch.testtable93bxlvf9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.450083Z\u0027\u0022",
- "odata.editLink": "testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9/$metadata#testtable93bxlvf9/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.0006536Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "06",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:04.450083Z",
"SomeStringProperty": "This is table entity number 06",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:07:00Z",
+ "SomeDateProperty": "2020-01-01T01:07:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90006",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "6",
- "SomeDoubleProperty0": 6.0,
+ "SomeDoubleProperty0": 6,
"SomeDoubleProperty1": 6.1,
- "SomeIntProperty": 6
+ "SomeIntProperty": 6,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:41.0006536Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6f0850c2a5a7624f9948c619c8317457-9625e90d9cec6d4d-00",
+ "traceparent": "00-959ae3050db8f14dad349cb239e2f407-2bc7591e823aeb45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5f109f2d13946e6fea3908648610266b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:41 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -545,60 +484,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:04 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.4951185Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:40 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.0782728Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "5f109f2d13946e6fea3908648610266b",
- "x-ms-request-id": "2074fbbe-b002-001b-6b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "5f109f2d-1394-6e6f-ea39-08648610266b"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable93bxlvf9/@Element",
- "odata.type": "chrissscratch.testtable93bxlvf9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.4951185Z\u0027\u0022",
- "odata.editLink": "testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9/$metadata#testtable93bxlvf9/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.0782728Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "07",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:04.4951185Z",
"SomeStringProperty": "This is table entity number 07",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:08:00Z",
+ "SomeDateProperty": "2020-01-01T01:08:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90007",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "7",
- "SomeDoubleProperty0": 7.0,
+ "SomeDoubleProperty0": 7,
"SomeDoubleProperty1": 7.1,
- "SomeIntProperty": 7
+ "SomeIntProperty": 7,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:41.0782728Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-930e33246e71a747ba120c299aaae744-ab73b09af2606f42-00",
+ "traceparent": "00-f56ac866a522f6499ddbeae06f63535a-46afef72e6b6d24c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "17c9f5f947404f066835de2e8b97a7a0",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:41 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -622,60 +552,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:04 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.5391562Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:40 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.1531272Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "17c9f5f947404f066835de2e8b97a7a0",
- "x-ms-request-id": "2074fbc4-b002-001b-7121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "17c9f5f9-4740-4f06-6835-de2e8b97a7a0"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable93bxlvf9/@Element",
- "odata.type": "chrissscratch.testtable93bxlvf9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.5391562Z\u0027\u0022",
- "odata.editLink": "testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9/$metadata#testtable93bxlvf9/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.1531272Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "08",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:04.5391562Z",
"SomeStringProperty": "This is table entity number 08",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:09:00Z",
+ "SomeDateProperty": "2020-01-01T01:09:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90008",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "8",
- "SomeDoubleProperty0": 8.0,
+ "SomeDoubleProperty0": 8,
"SomeDoubleProperty1": 8.1,
- "SomeIntProperty": 8
+ "SomeIntProperty": 8,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:41.1531272Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-0a42b86cd460d3469d36cfcf2501b23a-e60ccfaabfd6fb48-00",
+ "traceparent": "00-bd5e724bd708844d9b108dd4c50e141b-ecdd8a3f36a5284f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "aaf0215643a68dbe5b18e4d24cf2bb4d",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:41 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -699,60 +620,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:04 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.5911988Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:40 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.2277768Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "aaf0215643a68dbe5b18e4d24cf2bb4d",
- "x-ms-request-id": "2074fbd2-b002-001b-7f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "aaf02156-43a6-8dbe-5b18-e4d24cf2bb4d"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable93bxlvf9/@Element",
- "odata.type": "chrissscratch.testtable93bxlvf9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.5911988Z\u0027\u0022",
- "odata.editLink": "testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9/$metadata#testtable93bxlvf9/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.2277768Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "09",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:04.5911988Z",
"SomeStringProperty": "This is table entity number 09",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:10:00Z",
+ "SomeDateProperty": "2020-01-01T01:10:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90009",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "9",
- "SomeDoubleProperty0": 9.0,
+ "SomeDoubleProperty0": 9,
"SomeDoubleProperty1": 9.1,
- "SomeIntProperty": 9
+ "SomeIntProperty": 9,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:41.2277768Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9f0e3f4b3fc64d419ebc2122302eec3a-c9891b2e12bcf049-00",
+ "traceparent": "00-a3f56c0a0195e04b9f30de8476af8c40-1e96fd4c5e3ff54a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "dfd1dcca73d6e5e698c0f65e3441e353",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:41 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -776,60 +688,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:04 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.6362373Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:40 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.3021192Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "dfd1dcca73d6e5e698c0f65e3441e353",
- "x-ms-request-id": "2074fbdb-b002-001b-0821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "dfd1dcca-73d6-e5e6-98c0-f65e3441e353"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable93bxlvf9/@Element",
- "odata.type": "chrissscratch.testtable93bxlvf9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.6362373Z\u0027\u0022",
- "odata.editLink": "testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9/$metadata#testtable93bxlvf9/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.3021192Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "10",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:04.6362373Z",
"SomeStringProperty": "This is table entity number 10",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:11:00Z",
+ "SomeDateProperty": "2020-01-01T01:11:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90010",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "10",
- "SomeDoubleProperty0": 10.0,
+ "SomeDoubleProperty0": 10,
"SomeDoubleProperty1": 10.1,
- "SomeIntProperty": 10
+ "SomeIntProperty": 10,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:41.3021192Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-06ea87aa13845a42bfa4dbce21352ad5-040e520773136248-00",
+ "traceparent": "00-3715552f29cf6a418397305530866ad0-f7d8da78bdbbf142-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "650e68917c20b5c5373bbb2863340376",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:41 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -853,60 +756,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:04 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.6782725Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:40 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.3759496Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "650e68917c20b5c5373bbb2863340376",
- "x-ms-request-id": "2074fbeb-b002-001b-1821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "650e6891-7c20-b5c5-373b-bb2863340376"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable93bxlvf9/@Element",
- "odata.type": "chrissscratch.testtable93bxlvf9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.6782725Z\u0027\u0022",
- "odata.editLink": "testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9/$metadata#testtable93bxlvf9/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.3759496Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "11",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:04.6782725Z",
"SomeStringProperty": "This is table entity number 11",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:12:00Z",
+ "SomeDateProperty": "2020-01-01T01:12:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90011",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "11",
- "SomeDoubleProperty0": 11.0,
+ "SomeDoubleProperty0": 11,
"SomeDoubleProperty1": 11.1,
- "SomeIntProperty": 11
+ "SomeIntProperty": 11,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:41.3759496Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1342f043331c834fbc0abe5950907628-99f1f6c7985ae04b-00",
+ "traceparent": "00-2f3168ffd0157b498bb9409b55464473-13955b39beac6f43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ae63907ac8c5e2c93b0a11e54d60581a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:41 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -930,60 +824,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:04 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.7223085Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:40 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.4570504Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ae63907ac8c5e2c93b0a11e54d60581a",
- "x-ms-request-id": "2074fbfd-b002-001b-2a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "ae63907a-c8c5-e2c9-3b0a-11e54d60581a"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable93bxlvf9/@Element",
- "odata.type": "chrissscratch.testtable93bxlvf9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.7223085Z\u0027\u0022",
- "odata.editLink": "testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9/$metadata#testtable93bxlvf9/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.4570504Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "12",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:04.7223085Z",
"SomeStringProperty": "This is table entity number 12",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:13:00Z",
+ "SomeDateProperty": "2020-01-01T01:13:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90012",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "12",
- "SomeDoubleProperty0": 12.0,
+ "SomeDoubleProperty0": 12,
"SomeDoubleProperty1": 12.1,
- "SomeIntProperty": 12
+ "SomeIntProperty": 12,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:41.4570504Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-fe2436a9ab36ee4aae6f81f69b7d1c9a-b12d8eb26d8df84f-00",
+ "traceparent": "00-9846719944d4e448a4da0208864fabe1-ac877abac8a45943-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e340913456e34d2c171ca89bb8bd8264",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:41 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1007,60 +892,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:04 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.7623428Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:41 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.5415304Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "e340913456e34d2c171ca89bb8bd8264",
- "x-ms-request-id": "2074fc11-b002-001b-3d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "e3409134-56e3-4d2c-171c-a89bb8bd8264"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable93bxlvf9/@Element",
- "odata.type": "chrissscratch.testtable93bxlvf9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.7623428Z\u0027\u0022",
- "odata.editLink": "testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9/$metadata#testtable93bxlvf9/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.5415304Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "13",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:04.7623428Z",
"SomeStringProperty": "This is table entity number 13",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:14:00Z",
+ "SomeDateProperty": "2020-01-01T01:14:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90013",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "13",
- "SomeDoubleProperty0": 13.0,
+ "SomeDoubleProperty0": 13,
"SomeDoubleProperty1": 13.1,
- "SomeIntProperty": 13
+ "SomeIntProperty": 13,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:41.5415304Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e06c3939ae798e4ab157bd29e065fcd9-1403f728744df548-00",
+ "traceparent": "00-701f3bb4ddfd8d44b5efc08c9eb92687-95e229d5796c9b40-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a4e480bc34ddc98e9f2b2a156adf68d6",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:41 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1084,60 +960,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:04 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.8083804Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:41 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.6162824Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a4e480bc34ddc98e9f2b2a156adf68d6",
- "x-ms-request-id": "2074fc1a-b002-001b-4621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "a4e480bc-34dd-c98e-9f2b-2a156adf68d6"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable93bxlvf9/@Element",
- "odata.type": "chrissscratch.testtable93bxlvf9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.8083804Z\u0027\u0022",
- "odata.editLink": "testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9/$metadata#testtable93bxlvf9/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.6162824Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "14",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:04.8083804Z",
"SomeStringProperty": "This is table entity number 14",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:15:00Z",
+ "SomeDateProperty": "2020-01-01T01:15:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90014",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "14",
- "SomeDoubleProperty0": 14.0,
+ "SomeDoubleProperty0": 14,
"SomeDoubleProperty1": 14.1,
- "SomeIntProperty": 14
+ "SomeIntProperty": 14,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:41.6162824Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ebbe9090c7673f48995ed7ed84fee843-ba7a9c8a2a44fa44-00",
+ "traceparent": "00-d8ff7156ecce2943998bc04d6f0e3eca-a9799c9752b5f04b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d2f3a0e220f32392631597a8202d2a7d",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:42 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1161,60 +1028,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:04 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.8544189Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:41 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.7000456Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "d2f3a0e220f32392631597a8202d2a7d",
- "x-ms-request-id": "2074fc29-b002-001b-5421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "d2f3a0e2-20f3-2392-6315-97a8202d2a7d"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable93bxlvf9/@Element",
- "odata.type": "chrissscratch.testtable93bxlvf9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.8544189Z\u0027\u0022",
- "odata.editLink": "testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9/$metadata#testtable93bxlvf9/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.7000456Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "15",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:04.8544189Z",
"SomeStringProperty": "This is table entity number 15",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:16:00Z",
+ "SomeDateProperty": "2020-01-01T01:16:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90015",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "15",
- "SomeDoubleProperty0": 15.0,
+ "SomeDoubleProperty0": 15,
"SomeDoubleProperty1": 15.1,
- "SomeIntProperty": 15
+ "SomeIntProperty": 15,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:41.7000456Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a9fefefa1b589e4da848bb3684619c97-c6e595a213ce4344-00",
+ "traceparent": "00-e51e52e44d026b47ab735e1054338122-8c6b41702149fb4c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "cc28ad88b47c003d027744b82b17e337",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:42 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1238,60 +1096,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:04 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.8984557Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:41 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.7732616Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "cc28ad88b47c003d027744b82b17e337",
- "x-ms-request-id": "2074fc38-b002-001b-6221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "cc28ad88-b47c-003d-0277-44b82b17e337"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable93bxlvf9/@Element",
- "odata.type": "chrissscratch.testtable93bxlvf9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.8984557Z\u0027\u0022",
- "odata.editLink": "testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9/$metadata#testtable93bxlvf9/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.7732616Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "16",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:04.8984557Z",
"SomeStringProperty": "This is table entity number 16",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:17:00Z",
+ "SomeDateProperty": "2020-01-01T01:17:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90016",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "16",
- "SomeDoubleProperty0": 16.0,
+ "SomeDoubleProperty0": 16,
"SomeDoubleProperty1": 16.1,
- "SomeIntProperty": 16
+ "SomeIntProperty": 16,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:41.7732616Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e5211a1ddce3a64eb45d208f66e651b9-251fe2919809914e-00",
+ "traceparent": "00-27a78965ac8f8e469aad7d034708a2da-2f150ef670685e41-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "17b8d1b4afca9c71eec040c79ce5a971",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:42 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1315,60 +1164,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:04 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.9374884Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:41 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.8482184Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "17b8d1b4afca9c71eec040c79ce5a971",
- "x-ms-request-id": "2074fc48-b002-001b-7221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "17b8d1b4-afca-9c71-eec0-40c79ce5a971"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable93bxlvf9/@Element",
- "odata.type": "chrissscratch.testtable93bxlvf9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.9374884Z\u0027\u0022",
- "odata.editLink": "testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9/$metadata#testtable93bxlvf9/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.8482184Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "17",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:04.9374884Z",
"SomeStringProperty": "This is table entity number 17",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:18:00Z",
+ "SomeDateProperty": "2020-01-01T01:18:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90017",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "17",
- "SomeDoubleProperty0": 17.0,
+ "SomeDoubleProperty0": 17,
"SomeDoubleProperty1": 17.1,
- "SomeIntProperty": 17
+ "SomeIntProperty": 17,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:41.8482184Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9f79a690344fed4398a18032ea7ba881-3b6efb48acd8d54a-00",
+ "traceparent": "00-e6088f43513b4d4f9cb617e096f95ab8-d5fe1b3586a9944e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "bd8cac019bb72e5a63f2cf7bdcdaf84c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:42 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1392,60 +1232,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:04 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.9825265Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:41 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.9232776Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "bd8cac019bb72e5a63f2cf7bdcdaf84c",
- "x-ms-request-id": "2074fc5a-b002-001b-0121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "bd8cac01-9bb7-2e5a-63f2-cf7bdcdaf84c"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable93bxlvf9/@Element",
- "odata.type": "chrissscratch.testtable93bxlvf9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.9825265Z\u0027\u0022",
- "odata.editLink": "testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9/$metadata#testtable93bxlvf9/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.9232776Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "18",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:04.9825265Z",
"SomeStringProperty": "This is table entity number 18",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:19:00Z",
+ "SomeDateProperty": "2020-01-01T01:19:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90018",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "18",
- "SomeDoubleProperty0": 18.0,
+ "SomeDoubleProperty0": 18,
"SomeDoubleProperty1": 18.1,
- "SomeIntProperty": 18
+ "SomeIntProperty": 18,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:41.9232776Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a1a39d5d7ea89145964f1f2a70a40b26-03d18e571b6fa144-00",
+ "traceparent": "00-cad57829e8b301418466554b1ffe7060-ed5af182b8ca9740-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4ef460321275d8b33b8cdebb7475631c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:42 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1469,60 +1300,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:04 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A05.0285658Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:41 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.9963912Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "4ef460321275d8b33b8cdebb7475631c",
- "x-ms-request-id": "2074fc73-b002-001b-1821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "4ef46032-1275-d8b3-3b8c-debb7475631c"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable93bxlvf9/@Element",
- "odata.type": "chrissscratch.testtable93bxlvf9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A05.0285658Z\u0027\u0022",
- "odata.editLink": "testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9/$metadata#testtable93bxlvf9/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.9963912Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "19",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:05.0285658Z",
"SomeStringProperty": "This is table entity number 19",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:20:00Z",
+ "SomeDateProperty": "2020-01-01T01:20:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90019",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "19",
- "SomeDoubleProperty0": 19.0,
+ "SomeDoubleProperty0": 19,
"SomeDoubleProperty1": 19.1,
- "SomeIntProperty": 19
+ "SomeIntProperty": 19,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:41.9963912Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-2172268686c3b04fb9c57d6556a0ccc2-baf51db59aaccc42-00",
+ "traceparent": "00-d874e7bbe4f3f748b1af3d87536ab7a7-ea326356c121674c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7eb6d2cd268a1980768ab3d7e0f5c014",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:42 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1546,339 +1368,285 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:04 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A05.0796076Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:41 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A42.0736008Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "7eb6d2cd268a1980768ab3d7e0f5c014",
- "x-ms-request-id": "2074fc89-b002-001b-2a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "7eb6d2cd-268a-1980-768a-b3d7e0f5c014"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable93bxlvf9/@Element",
- "odata.type": "chrissscratch.testtable93bxlvf9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A05.0796076Z\u0027\u0022",
- "odata.editLink": "testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9/$metadata#testtable93bxlvf9/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A42.0736008Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "20",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:05.0796076Z",
"SomeStringProperty": "This is table entity number 20",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:21:00Z",
+ "SomeDateProperty": "2020-01-01T01:21:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90020",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "20",
- "SomeDoubleProperty0": 20.0,
+ "SomeDoubleProperty0": 20,
"SomeDoubleProperty1": 20.1,
- "SomeIntProperty": 20
+ "SomeIntProperty": 20,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:42.0736008Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20gt%20%2710%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable93bxlvf9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20gt%20%2710%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3c95f3c85af1eefcf9b4812abc9ebaed",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:42 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:04 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:41 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "3c95f3c85af1eefcf9b4812abc9ebaed",
- "x-ms-request-id": "2074fca1-b002-001b-4021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "3c95f3c8-5af1-eefc-f9b4-812abc9ebaed"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable93bxlvf9",
"value": [
{
- "odata.type": "chrissscratch.testtable93bxlvf9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.6782725Z\u0027\u0022",
- "odata.editLink": "testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.3759496Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "11",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:04.6782725Z",
"SomeStringProperty": "This is table entity number 11",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:12:00Z",
+ "SomeDateProperty": "2020-01-01T01:12:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90011",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "11",
- "SomeDoubleProperty0": 11.0,
+ "SomeDoubleProperty0": 11,
"SomeDoubleProperty1": 11.1,
- "SomeIntProperty": 11
+ "SomeIntProperty": 11,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:41.3759496Z"
},
{
- "odata.type": "chrissscratch.testtable93bxlvf9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.7223085Z\u0027\u0022",
- "odata.editLink": "testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.4570504Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "12",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:04.7223085Z",
"SomeStringProperty": "This is table entity number 12",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:13:00Z",
+ "SomeDateProperty": "2020-01-01T01:13:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90012",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "12",
- "SomeDoubleProperty0": 12.0,
+ "SomeDoubleProperty0": 12,
"SomeDoubleProperty1": 12.1,
- "SomeIntProperty": 12
+ "SomeIntProperty": 12,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:41.4570504Z"
},
{
- "odata.type": "chrissscratch.testtable93bxlvf9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.7623428Z\u0027\u0022",
- "odata.editLink": "testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.5415304Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "13",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:04.7623428Z",
"SomeStringProperty": "This is table entity number 13",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:14:00Z",
+ "SomeDateProperty": "2020-01-01T01:14:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90013",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "13",
- "SomeDoubleProperty0": 13.0,
+ "SomeDoubleProperty0": 13,
"SomeDoubleProperty1": 13.1,
- "SomeIntProperty": 13
+ "SomeIntProperty": 13,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:41.5415304Z"
},
{
- "odata.type": "chrissscratch.testtable93bxlvf9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.8083804Z\u0027\u0022",
- "odata.editLink": "testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.6162824Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "14",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:04.8083804Z",
"SomeStringProperty": "This is table entity number 14",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:15:00Z",
+ "SomeDateProperty": "2020-01-01T01:15:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90014",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "14",
- "SomeDoubleProperty0": 14.0,
+ "SomeDoubleProperty0": 14,
"SomeDoubleProperty1": 14.1,
- "SomeIntProperty": 14
+ "SomeIntProperty": 14,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:41.6162824Z"
},
{
- "odata.type": "chrissscratch.testtable93bxlvf9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.8544189Z\u0027\u0022",
- "odata.editLink": "testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.7000456Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "15",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:04.8544189Z",
"SomeStringProperty": "This is table entity number 15",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:16:00Z",
+ "SomeDateProperty": "2020-01-01T01:16:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90015",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "15",
- "SomeDoubleProperty0": 15.0,
+ "SomeDoubleProperty0": 15,
"SomeDoubleProperty1": 15.1,
- "SomeIntProperty": 15
+ "SomeIntProperty": 15,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:41.7000456Z"
},
{
- "odata.type": "chrissscratch.testtable93bxlvf9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.8984557Z\u0027\u0022",
- "odata.editLink": "testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.7732616Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "16",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:04.8984557Z",
"SomeStringProperty": "This is table entity number 16",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:17:00Z",
+ "SomeDateProperty": "2020-01-01T01:17:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90016",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "16",
- "SomeDoubleProperty0": 16.0,
+ "SomeDoubleProperty0": 16,
"SomeDoubleProperty1": 16.1,
- "SomeIntProperty": 16
+ "SomeIntProperty": 16,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:41.7732616Z"
},
{
- "odata.type": "chrissscratch.testtable93bxlvf9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.9374884Z\u0027\u0022",
- "odata.editLink": "testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.8482184Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "17",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:04.9374884Z",
"SomeStringProperty": "This is table entity number 17",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:18:00Z",
+ "SomeDateProperty": "2020-01-01T01:18:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90017",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "17",
- "SomeDoubleProperty0": 17.0,
+ "SomeDoubleProperty0": 17,
"SomeDoubleProperty1": 17.1,
- "SomeIntProperty": 17
+ "SomeIntProperty": 17,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:41.8482184Z"
},
{
- "odata.type": "chrissscratch.testtable93bxlvf9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A04.9825265Z\u0027\u0022",
- "odata.editLink": "testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.9232776Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "18",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:04.9825265Z",
"SomeStringProperty": "This is table entity number 18",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:19:00Z",
+ "SomeDateProperty": "2020-01-01T01:19:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90018",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "18",
- "SomeDoubleProperty0": 18.0,
+ "SomeDoubleProperty0": 18,
"SomeDoubleProperty1": 18.1,
- "SomeIntProperty": 18
+ "SomeIntProperty": 18,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:41.9232776Z"
},
{
- "odata.type": "chrissscratch.testtable93bxlvf9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A05.0285658Z\u0027\u0022",
- "odata.editLink": "testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A41.9963912Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "19",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:05.0285658Z",
"SomeStringProperty": "This is table entity number 19",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:20:00Z",
+ "SomeDateProperty": "2020-01-01T01:20:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90019",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "19",
- "SomeDoubleProperty0": 19.0,
+ "SomeDoubleProperty0": 19,
"SomeDoubleProperty1": 19.1,
- "SomeIntProperty": 19
+ "SomeIntProperty": 19,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:41.9963912Z"
},
{
- "odata.type": "chrissscratch.testtable93bxlvf9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A05.0796076Z\u0027\u0022",
- "odata.editLink": "testtable93bxlvf9(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A42.0736008Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "20",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:05.0796076Z",
"SomeStringProperty": "This is table entity number 20",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:21:00Z",
+ "SomeDateProperty": "2020-01-01T01:21:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90020",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "20",
- "SomeDoubleProperty0": 20.0,
+ "SomeDoubleProperty0": 20,
"SomeDoubleProperty1": 20.1,
- "SomeIntProperty": 20
+ "SomeIntProperty": 20,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:42.0736008Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable93bxlvf9\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable93bxlvf9\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-1015cdeab5c4a347acc7ff8feda6da11-59b7a51a4ae74d49-00",
+ "traceparent": "00-d273636c42709844ad101e2bfc4c7e53-f8d861f919a6c247-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "09adb28f79230cc2dfdad7eb5fdcf845",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:42 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:05 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "09adb28f79230cc2dfdad7eb5fdcf845",
- "x-ms-request-id": "2074fcb8-b002-001b-5321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:34:41 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "09adb28f-7923-0cc2-dfda-d7eb5fdcf845"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "189498940",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedEntitiesCanBeQueriedWithFiltersAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedEntitiesCanBeQueriedWithFiltersAsync.json
index 2d919b66f765..3be272728360 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedEntitiesCanBeQueriedWithFiltersAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CreatedEntitiesCanBeQueriedWithFiltersAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-dca0633fbe0f5647a22fa58cc8af2b4f-815acab799e77a40-00",
+ "traceparent": "00-30f488f1e913bc46ae39b18ad975fb4c-14816b79fc178549-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c5ca47e2d0b87b346edfafe9ed0ead44",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:27 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable73s5x53b\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:16 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A16.4574728Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable73s5x53b\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c5ca47e2d0b87b346edfafe9ed0ead44",
- "x-ms-request-id": "20751261-b002-001b-0921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "c5ca47e2-d0b8-7b34-6edf-afe9ed0ead44"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable73s5x53b\u0027)",
- "odata.editLink": "Tables(\u0027testtable73s5x53b\u0027)",
- "TableName": "testtable73s5x53b"
+ "TableName": "testtable73s5x53b",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-debb86a4b80b9b44b2e292e5c9ce04d5-fd735184a41a034f-00",
+ "traceparent": "00-5a1b819a9660d9459bda78692b26709d-1b1bc9120349e749-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8feefea723fba5c16196873d7122a89f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -83,60 +76,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:27 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.9637019Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:16 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A17.0323464Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "8feefea723fba5c16196873d7122a89f",
- "x-ms-request-id": "2075126d-b002-001b-1421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "8feefea7-23fb-a5c1-6196-873d7122a89f"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable73s5x53b/@Element",
- "odata.type": "chrissscratch.testtable73s5x53b",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A27.9637019Z\u0027\u0022",
- "odata.editLink": "testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b/$metadata#testtable73s5x53b/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A17.0323464Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:27.9637019Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:02:00Z",
+ "SomeDateProperty": "2020-01-01T01:02:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "1",
- "SomeDoubleProperty0": 1.0,
+ "SomeDoubleProperty0": 1,
"SomeDoubleProperty1": 1.1,
- "SomeIntProperty": 1
+ "SomeIntProperty": 1,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:17.0323464Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c7667d309280ad4d958fc565865539af-20b00360cc070648-00",
+ "traceparent": "00-377a17f09da3cc448799a2e609e8c9bc-78b610c0a0921a48-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7ac3bea900d46a07e0b6d615cd180dd3",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -160,60 +144,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:27 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.0027343Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:16 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A17.1088392Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "7ac3bea900d46a07e0b6d615cd180dd3",
- "x-ms-request-id": "20751280-b002-001b-2621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "7ac3bea9-00d4-6a07-e0b6-d615cd180dd3"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable73s5x53b/@Element",
- "odata.type": "chrissscratch.testtable73s5x53b",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.0027343Z\u0027\u0022",
- "odata.editLink": "testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b/$metadata#testtable73s5x53b/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A17.1088392Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "02",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:28.0027343Z",
"SomeStringProperty": "This is table entity number 02",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:03:00Z",
+ "SomeDateProperty": "2020-01-01T01:03:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "2",
- "SomeDoubleProperty0": 2.0,
+ "SomeDoubleProperty0": 2,
"SomeDoubleProperty1": 2.1,
- "SomeIntProperty": 2
+ "SomeIntProperty": 2,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:17.1088392Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d68f5ee6182e4c4a8c92ebc54a5440a9-6ceca1028a378f4d-00",
+ "traceparent": "00-b9fa1f2dc98c2c4fb4c9c75f82e0225a-057c819bcc79964c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8d9e0fb0e208bf4f8524642149f70a4b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -237,60 +212,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:27 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.0457709Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:16 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A17.2035592Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "8d9e0fb0e208bf4f8524642149f70a4b",
- "x-ms-request-id": "20751291-b002-001b-3721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "8d9e0fb0-e208-bf4f-8524-642149f70a4b"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable73s5x53b/@Element",
- "odata.type": "chrissscratch.testtable73s5x53b",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.0457709Z\u0027\u0022",
- "odata.editLink": "testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b/$metadata#testtable73s5x53b/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A17.2035592Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "03",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:28.0457709Z",
"SomeStringProperty": "This is table entity number 03",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:04:00Z",
+ "SomeDateProperty": "2020-01-01T01:04:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "3",
- "SomeDoubleProperty0": 3.0,
+ "SomeDoubleProperty0": 3,
"SomeDoubleProperty1": 3.1,
- "SomeIntProperty": 3
+ "SomeIntProperty": 3,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:17.2035592Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c251d676dfe7674f9f9202ed78b8074b-183d991c6cc18e4b-00",
+ "traceparent": "00-a060153aa1c2d44f8a43dc20917ed6d1-1c5622d4589ec14e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2f401037334aa670f784ae444cacd848",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -314,60 +280,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:27 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.0958116Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:16 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A17.2881416Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "2f401037334aa670f784ae444cacd848",
- "x-ms-request-id": "207512ab-b002-001b-4d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "2f401037-334a-a670-f784-ae444cacd848"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable73s5x53b/@Element",
- "odata.type": "chrissscratch.testtable73s5x53b",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.0958116Z\u0027\u0022",
- "odata.editLink": "testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b/$metadata#testtable73s5x53b/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A17.2881416Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "04",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:28.0958116Z",
"SomeStringProperty": "This is table entity number 04",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:05:00Z",
+ "SomeDateProperty": "2020-01-01T01:05:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "4",
- "SomeDoubleProperty0": 4.0,
+ "SomeDoubleProperty0": 4,
"SomeDoubleProperty1": 4.1,
- "SomeIntProperty": 4
+ "SomeIntProperty": 4,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:17.2881416Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e36834b9d64a2a4dbc171e6cf7eb5cb1-9d6081cecac2b747-00",
+ "traceparent": "00-50eb1a061d39c445ade13ca22389450a-8b9e1db405d8774e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "628db4881a84c7976e04f5af9ce621e9",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -391,60 +348,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:27 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.1378478Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:16 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A17.3627912Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "628db4881a84c7976e04f5af9ce621e9",
- "x-ms-request-id": "207512ba-b002-001b-5b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "628db488-1a84-c797-6e04-f5af9ce621e9"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable73s5x53b/@Element",
- "odata.type": "chrissscratch.testtable73s5x53b",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.1378478Z\u0027\u0022",
- "odata.editLink": "testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b/$metadata#testtable73s5x53b/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A17.3627912Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "05",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:28.1378478Z",
"SomeStringProperty": "This is table entity number 05",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:06:00Z",
+ "SomeDateProperty": "2020-01-01T01:06:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90005",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "5",
- "SomeDoubleProperty0": 5.0,
+ "SomeDoubleProperty0": 5,
"SomeDoubleProperty1": 5.1,
- "SomeIntProperty": 5
+ "SomeIntProperty": 5,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:17.3627912Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-fcb01d3558e8f8448e16fd646f2fea6b-6d91c936a78c074a-00",
+ "traceparent": "00-d0892324b6dd1843868f0439c111b391-8ae053f4d0bd294e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "bddd8aacded87d889ff79684340a72d8",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -468,60 +416,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:27 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.1808826Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:16 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A17.4382600Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "bddd8aacded87d889ff79684340a72d8",
- "x-ms-request-id": "207512c5-b002-001b-6621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "bddd8aac-ded8-7d88-9ff7-9684340a72d8"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable73s5x53b/@Element",
- "odata.type": "chrissscratch.testtable73s5x53b",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.1808826Z\u0027\u0022",
- "odata.editLink": "testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b/$metadata#testtable73s5x53b/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A17.4382600Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "06",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:28.1808826Z",
"SomeStringProperty": "This is table entity number 06",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:07:00Z",
+ "SomeDateProperty": "2020-01-01T01:07:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90006",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "6",
- "SomeDoubleProperty0": 6.0,
+ "SomeDoubleProperty0": 6,
"SomeDoubleProperty1": 6.1,
- "SomeIntProperty": 6
+ "SomeIntProperty": 6,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:17.4382600Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f613f3616439ad479977ade014d45ceb-d115c4b28c999d4f-00",
+ "traceparent": "00-3356cd548fef7242a3f55d56a409fc48-02a3d05c99a80045-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "94981b4ca8691cc77879c0463dc00a11",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -545,60 +484,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:28 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.22592Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:16 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A17.5143432Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "94981b4ca8691cc77879c0463dc00a11",
- "x-ms-request-id": "207512cd-b002-001b-6e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "94981b4c-a869-1cc7-7879-c0463dc00a11"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable73s5x53b/@Element",
- "odata.type": "chrissscratch.testtable73s5x53b",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.22592Z\u0027\u0022",
- "odata.editLink": "testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b/$metadata#testtable73s5x53b/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A17.5143432Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "07",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:28.22592Z",
"SomeStringProperty": "This is table entity number 07",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:08:00Z",
+ "SomeDateProperty": "2020-01-01T01:08:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90007",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "7",
- "SomeDoubleProperty0": 7.0,
+ "SomeDoubleProperty0": 7,
"SomeDoubleProperty1": 7.1,
- "SomeIntProperty": 7
+ "SomeIntProperty": 7,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:17.5143432Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-7c61925247ee3f45a5db9dbbeff8cd70-df6e92d970bf1145-00",
+ "traceparent": "00-40c257544774a64b940c9a04cf68b1a7-078056566aed3e43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c298c4621acfaa702c10c28c84139264",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -622,60 +552,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:28 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.2679553Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:16 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A17.5896072Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c298c4621acfaa702c10c28c84139264",
- "x-ms-request-id": "207512d9-b002-001b-7a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "c298c462-1acf-aa70-2c10-c28c84139264"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable73s5x53b/@Element",
- "odata.type": "chrissscratch.testtable73s5x53b",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.2679553Z\u0027\u0022",
- "odata.editLink": "testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b/$metadata#testtable73s5x53b/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A17.5896072Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "08",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:28.2679553Z",
"SomeStringProperty": "This is table entity number 08",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:09:00Z",
+ "SomeDateProperty": "2020-01-01T01:09:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90008",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "8",
- "SomeDoubleProperty0": 8.0,
+ "SomeDoubleProperty0": 8,
"SomeDoubleProperty1": 8.1,
- "SomeIntProperty": 8
+ "SomeIntProperty": 8,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:17.5896072Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ffdda9f44add4347b892772607003a11-1d3134a25c23d248-00",
+ "traceparent": "00-a20a41ae2610064bbeecfd847ceb26ed-34aa2f0adf53ba40-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "81631c928c4d047fc2c1445e1e423fde",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -699,60 +620,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:28 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.3109902Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:16 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A17.6651784Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "81631c928c4d047fc2c1445e1e423fde",
- "x-ms-request-id": "207512e4-b002-001b-0521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "81631c92-8c4d-047f-c2c1-445e1e423fde"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable73s5x53b/@Element",
- "odata.type": "chrissscratch.testtable73s5x53b",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.3109902Z\u0027\u0022",
- "odata.editLink": "testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b/$metadata#testtable73s5x53b/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A17.6651784Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "09",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:28.3109902Z",
"SomeStringProperty": "This is table entity number 09",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:10:00Z",
+ "SomeDateProperty": "2020-01-01T01:10:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90009",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "9",
- "SomeDoubleProperty0": 9.0,
+ "SomeDoubleProperty0": 9,
"SomeDoubleProperty1": 9.1,
- "SomeIntProperty": 9
+ "SomeIntProperty": 9,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:17.6651784Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-09a1cdd0cb79d74aa0a987b0c9da2271-c9460cd8ae438449-00",
+ "traceparent": "00-f32db835267cc04b91d5fcda7f5892b5-f82cb8c9d8c2f344-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6f2184ecaf723109aaee6859e53a9865",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -776,60 +688,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:28 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.350023Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:16 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A17.7399304Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "6f2184ecaf723109aaee6859e53a9865",
- "x-ms-request-id": "207512f3-b002-001b-1321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "6f2184ec-af72-3109-aaee-6859e53a9865"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable73s5x53b/@Element",
- "odata.type": "chrissscratch.testtable73s5x53b",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.350023Z\u0027\u0022",
- "odata.editLink": "testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b/$metadata#testtable73s5x53b/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A17.7399304Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "10",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:28.350023Z",
"SomeStringProperty": "This is table entity number 10",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:11:00Z",
+ "SomeDateProperty": "2020-01-01T01:11:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90010",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "10",
- "SomeDoubleProperty0": 10.0,
+ "SomeDoubleProperty0": 10,
"SomeDoubleProperty1": 10.1,
- "SomeIntProperty": 10
+ "SomeIntProperty": 10,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:17.7399304Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8100079153d2b347901ea7c7a7144b8f-f7a7a50832cd7a4e-00",
+ "traceparent": "00-2588165bc98f4c4ba32990f362aa382d-cc882326d15f784f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "20b35ce6895dd5c34493ff0dd6118be9",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -853,60 +756,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:28 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.3950604Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:16 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A17.8156040Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "20b35ce6895dd5c34493ff0dd6118be9",
- "x-ms-request-id": "20751303-b002-001b-2321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "20b35ce6-895d-d5c3-4493-ff0dd6118be9"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable73s5x53b/@Element",
- "odata.type": "chrissscratch.testtable73s5x53b",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.3950604Z\u0027\u0022",
- "odata.editLink": "testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b/$metadata#testtable73s5x53b/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A17.8156040Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "11",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:28.3950604Z",
"SomeStringProperty": "This is table entity number 11",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:12:00Z",
+ "SomeDateProperty": "2020-01-01T01:12:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90011",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "11",
- "SomeDoubleProperty0": 11.0,
+ "SomeDoubleProperty0": 11,
"SomeDoubleProperty1": 11.1,
- "SomeIntProperty": 11
+ "SomeIntProperty": 11,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:17.8156040Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d8341303c06d7b41bcaa9802ffc4d967-9e0477f70fcefd4b-00",
+ "traceparent": "00-c0b4f871b6f5924db6b5d1f422eb2412-db3597b1d7b4b54b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ffa0e4d123f1e2f11331d65f23261f88",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -930,60 +824,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:28 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.4380966Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:16 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A17.8906632Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ffa0e4d123f1e2f11331d65f23261f88",
- "x-ms-request-id": "20751311-b002-001b-3121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "ffa0e4d1-23f1-e2f1-1331-d65f23261f88"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable73s5x53b/@Element",
- "odata.type": "chrissscratch.testtable73s5x53b",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.4380966Z\u0027\u0022",
- "odata.editLink": "testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b/$metadata#testtable73s5x53b/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A17.8906632Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "12",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:28.4380966Z",
"SomeStringProperty": "This is table entity number 12",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:13:00Z",
+ "SomeDateProperty": "2020-01-01T01:13:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90012",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "12",
- "SomeDoubleProperty0": 12.0,
+ "SomeDoubleProperty0": 12,
"SomeDoubleProperty1": 12.1,
- "SomeIntProperty": 12
+ "SomeIntProperty": 12,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:17.8906632Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-49ba9522600f9744afd24f8c614de181-fb9823ba5af10b4a-00",
+ "traceparent": "00-2f28863f25b76b4ba39b9c5298ba57f1-4ad3467e2aaefe4c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c278df291e8e6380c14b2adeb0fb5b99",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1007,60 +892,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:28 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.4801323Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:17 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A17.9754504Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c278df291e8e6380c14b2adeb0fb5b99",
- "x-ms-request-id": "20751317-b002-001b-3721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "c278df29-1e8e-6380-c14b-2adeb0fb5b99"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable73s5x53b/@Element",
- "odata.type": "chrissscratch.testtable73s5x53b",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.4801323Z\u0027\u0022",
- "odata.editLink": "testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b/$metadata#testtable73s5x53b/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A17.9754504Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "13",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:28.4801323Z",
"SomeStringProperty": "This is table entity number 13",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:14:00Z",
+ "SomeDateProperty": "2020-01-01T01:14:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90013",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "13",
- "SomeDoubleProperty0": 13.0,
+ "SomeDoubleProperty0": 13,
"SomeDoubleProperty1": 13.1,
- "SomeIntProperty": 13
+ "SomeIntProperty": 13,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:17.9754504Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-585e5312063b0041ba47579c0a739252-8d326a353556d14b-00",
+ "traceparent": "00-24e0391cfdb9a141a29583161d4d8c59-7a58e8bb3a2f1b44-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "00887e62989ac3736ad10d2cb264b21e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1084,60 +960,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:28 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.524168Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:17 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A18.0518408Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "00887e62989ac3736ad10d2cb264b21e",
- "x-ms-request-id": "2075131d-b002-001b-3d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "00887e62-989a-c373-6ad1-0d2cb264b21e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable73s5x53b/@Element",
- "odata.type": "chrissscratch.testtable73s5x53b",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.524168Z\u0027\u0022",
- "odata.editLink": "testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b/$metadata#testtable73s5x53b/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A18.0518408Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "14",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:28.524168Z",
"SomeStringProperty": "This is table entity number 14",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:15:00Z",
+ "SomeDateProperty": "2020-01-01T01:15:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90014",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "14",
- "SomeDoubleProperty0": 14.0,
+ "SomeDoubleProperty0": 14,
"SomeDoubleProperty1": 14.1,
- "SomeIntProperty": 14
+ "SomeIntProperty": 14,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:18.0518408Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d746aafeb55bb34aaa480fe0bea2f0ee-322acb7a32edf14b-00",
+ "traceparent": "00-6fa11a8035b7344d94fe5e7a0c41caa4-618d83e2778f4b49-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f7e47774c899b25b633c3ea6f9123218",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1161,60 +1028,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:28 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.5692046Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:17 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A18.1384712Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "f7e47774c899b25b633c3ea6f9123218",
- "x-ms-request-id": "20751322-b002-001b-4221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "f7e47774-c899-b25b-633c-3ea6f9123218"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable73s5x53b/@Element",
- "odata.type": "chrissscratch.testtable73s5x53b",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.5692046Z\u0027\u0022",
- "odata.editLink": "testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b/$metadata#testtable73s5x53b/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A18.1384712Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "15",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:28.5692046Z",
"SomeStringProperty": "This is table entity number 15",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:16:00Z",
+ "SomeDateProperty": "2020-01-01T01:16:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90015",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "15",
- "SomeDoubleProperty0": 15.0,
+ "SomeDoubleProperty0": 15,
"SomeDoubleProperty1": 15.1,
- "SomeIntProperty": 15
+ "SomeIntProperty": 15,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:18.1384712Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-71e7573805503e4aacf07c9fb17bedf3-4c1938161301c24d-00",
+ "traceparent": "00-dcbc81a171c0ff4eaf90ef6873be1e5c-4169c9dd714e3646-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a5fc3dd51e9d90ed6bb557bc1154b05c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1238,60 +1096,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:28 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.6122412Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:17 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A18.2168072Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a5fc3dd51e9d90ed6bb557bc1154b05c",
- "x-ms-request-id": "2075132a-b002-001b-4921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "a5fc3dd5-1e9d-90ed-6bb5-57bc1154b05c"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable73s5x53b/@Element",
- "odata.type": "chrissscratch.testtable73s5x53b",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.6122412Z\u0027\u0022",
- "odata.editLink": "testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b/$metadata#testtable73s5x53b/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A18.2168072Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "16",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:28.6122412Z",
"SomeStringProperty": "This is table entity number 16",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:17:00Z",
+ "SomeDateProperty": "2020-01-01T01:17:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90016",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "16",
- "SomeDoubleProperty0": 16.0,
+ "SomeDoubleProperty0": 16,
"SomeDoubleProperty1": 16.1,
- "SomeIntProperty": 16
+ "SomeIntProperty": 16,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:18.2168072Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-2ce4398d5dbe444fb7ae31aa59e4bbfa-906245423855a749-00",
+ "traceparent": "00-6a53334a9a7b294082ce61e30b01f31b-49b15857cbbcb04d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "386a0b9964169aff23d59d5e5acdca58",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1315,60 +1164,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:28 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.6582785Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:17 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A18.2922760Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "386a0b9964169aff23d59d5e5acdca58",
- "x-ms-request-id": "2075133b-b002-001b-5a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "386a0b99-6416-9aff-23d5-9d5e5acdca58"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable73s5x53b/@Element",
- "odata.type": "chrissscratch.testtable73s5x53b",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.6582785Z\u0027\u0022",
- "odata.editLink": "testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b/$metadata#testtable73s5x53b/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A18.2922760Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "17",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:28.6582785Z",
"SomeStringProperty": "This is table entity number 17",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:18:00Z",
+ "SomeDateProperty": "2020-01-01T01:18:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90017",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "17",
- "SomeDoubleProperty0": 17.0,
+ "SomeDoubleProperty0": 17,
"SomeDoubleProperty1": 17.1,
- "SomeIntProperty": 17
+ "SomeIntProperty": 17,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:18.2922760Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-03d7f3151ab06042adfaaaad2704b616-051ccbb3ed341c48-00",
+ "traceparent": "00-bdd8a37c01d534499c8589966a959088-ab7939232021f34e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7557f49f0d68568189548be4719ea10e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1392,60 +1232,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:28 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.7003138Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:17 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A18.3629320Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "7557f49f0d68568189548be4719ea10e",
- "x-ms-request-id": "20751341-b002-001b-6021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "7557f49f-0d68-5681-8954-8be4719ea10e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable73s5x53b/@Element",
- "odata.type": "chrissscratch.testtable73s5x53b",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.7003138Z\u0027\u0022",
- "odata.editLink": "testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b/$metadata#testtable73s5x53b/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A18.3629320Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "18",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:28.7003138Z",
"SomeStringProperty": "This is table entity number 18",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:19:00Z",
+ "SomeDateProperty": "2020-01-01T01:19:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90018",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "18",
- "SomeDoubleProperty0": 18.0,
+ "SomeDoubleProperty0": 18,
"SomeDoubleProperty1": 18.1,
- "SomeIntProperty": 18
+ "SomeIntProperty": 18,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:18.3629320Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-285fe38d08abc8428eca8b6fd1f1c125-68f201a1e45b1045-00",
+ "traceparent": "00-56f2a05238d1c448bc1563b66cc267b7-29a13143fffded4f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ed0ce28bf9a870023d6281c7818f369e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:29 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1469,60 +1300,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:28 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.7423483Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:17 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A18.4387080Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ed0ce28bf9a870023d6281c7818f369e",
- "x-ms-request-id": "2075134f-b002-001b-6e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "ed0ce28b-f9a8-7002-3d62-81c7818f369e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable73s5x53b/@Element",
- "odata.type": "chrissscratch.testtable73s5x53b",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.7423483Z\u0027\u0022",
- "odata.editLink": "testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b/$metadata#testtable73s5x53b/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A18.4387080Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "19",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:28.7423483Z",
"SomeStringProperty": "This is table entity number 19",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:20:00Z",
+ "SomeDateProperty": "2020-01-01T01:20:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90019",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "19",
- "SomeDoubleProperty0": 19.0,
+ "SomeDoubleProperty0": 19,
"SomeDoubleProperty1": 19.1,
- "SomeIntProperty": 19
+ "SomeIntProperty": 19,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:18.4387080Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a3fa67d2f91b4848b098e57c4ba4fcec-a55b93f7edac5148-00",
+ "traceparent": "00-1178db2d705ffe468dc824af9d701ca7-b8f1d414ad39fa42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1c1dffeb3bfd8cf38a14afc2d91b2984",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:29 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1546,339 +1368,285 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:28 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.7923903Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:17 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A18.5153032Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "1c1dffeb3bfd8cf38a14afc2d91b2984",
- "x-ms-request-id": "20751362-b002-001b-8021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "1c1dffeb-3bfd-8cf3-8a14-afc2d91b2984"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable73s5x53b/@Element",
- "odata.type": "chrissscratch.testtable73s5x53b",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.7923903Z\u0027\u0022",
- "odata.editLink": "testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b/$metadata#testtable73s5x53b/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A18.5153032Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "20",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:28.7923903Z",
"SomeStringProperty": "This is table entity number 20",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:21:00Z",
+ "SomeDateProperty": "2020-01-01T01:21:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90020",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "20",
- "SomeDoubleProperty0": 20.0,
+ "SomeDoubleProperty0": 20,
"SomeDoubleProperty1": 20.1,
- "SomeIntProperty": 20
+ "SomeIntProperty": 20,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:18.5153032Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable73s5x53b()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20gt%20%2710%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable73s5x53b()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20gt%20%2710%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "78d28e33dcc0a6b0f2e638068bb9d4fa",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:29 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:28 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:17 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "78d28e33dcc0a6b0f2e638068bb9d4fa",
- "x-ms-request-id": "20751375-b002-001b-1321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "78d28e33-dcc0-a6b0-f2e6-38068bb9d4fa"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable73s5x53b",
"value": [
{
- "odata.type": "chrissscratch.testtable73s5x53b",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.3950604Z\u0027\u0022",
- "odata.editLink": "testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A17.8156040Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "11",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:28.3950604Z",
"SomeStringProperty": "This is table entity number 11",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:12:00Z",
+ "SomeDateProperty": "2020-01-01T01:12:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90011",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "11",
- "SomeDoubleProperty0": 11.0,
+ "SomeDoubleProperty0": 11,
"SomeDoubleProperty1": 11.1,
- "SomeIntProperty": 11
+ "SomeIntProperty": 11,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:17.8156040Z"
},
{
- "odata.type": "chrissscratch.testtable73s5x53b",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.4380966Z\u0027\u0022",
- "odata.editLink": "testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A17.8906632Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "12",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:28.4380966Z",
"SomeStringProperty": "This is table entity number 12",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:13:00Z",
+ "SomeDateProperty": "2020-01-01T01:13:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90012",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "12",
- "SomeDoubleProperty0": 12.0,
+ "SomeDoubleProperty0": 12,
"SomeDoubleProperty1": 12.1,
- "SomeIntProperty": 12
+ "SomeIntProperty": 12,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:17.8906632Z"
},
{
- "odata.type": "chrissscratch.testtable73s5x53b",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.4801323Z\u0027\u0022",
- "odata.editLink": "testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A17.9754504Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "13",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:28.4801323Z",
"SomeStringProperty": "This is table entity number 13",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:14:00Z",
+ "SomeDateProperty": "2020-01-01T01:14:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90013",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "13",
- "SomeDoubleProperty0": 13.0,
+ "SomeDoubleProperty0": 13,
"SomeDoubleProperty1": 13.1,
- "SomeIntProperty": 13
+ "SomeIntProperty": 13,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:17.9754504Z"
},
{
- "odata.type": "chrissscratch.testtable73s5x53b",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.524168Z\u0027\u0022",
- "odata.editLink": "testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A18.0518408Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "14",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:28.524168Z",
"SomeStringProperty": "This is table entity number 14",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:15:00Z",
+ "SomeDateProperty": "2020-01-01T01:15:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90014",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "14",
- "SomeDoubleProperty0": 14.0,
+ "SomeDoubleProperty0": 14,
"SomeDoubleProperty1": 14.1,
- "SomeIntProperty": 14
+ "SomeIntProperty": 14,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:18.0518408Z"
},
{
- "odata.type": "chrissscratch.testtable73s5x53b",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.5692046Z\u0027\u0022",
- "odata.editLink": "testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A18.1384712Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "15",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:28.5692046Z",
"SomeStringProperty": "This is table entity number 15",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:16:00Z",
+ "SomeDateProperty": "2020-01-01T01:16:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90015",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "15",
- "SomeDoubleProperty0": 15.0,
+ "SomeDoubleProperty0": 15,
"SomeDoubleProperty1": 15.1,
- "SomeIntProperty": 15
+ "SomeIntProperty": 15,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:18.1384712Z"
},
{
- "odata.type": "chrissscratch.testtable73s5x53b",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.6122412Z\u0027\u0022",
- "odata.editLink": "testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A18.2168072Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "16",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:28.6122412Z",
"SomeStringProperty": "This is table entity number 16",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:17:00Z",
+ "SomeDateProperty": "2020-01-01T01:17:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90016",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "16",
- "SomeDoubleProperty0": 16.0,
+ "SomeDoubleProperty0": 16,
"SomeDoubleProperty1": 16.1,
- "SomeIntProperty": 16
+ "SomeIntProperty": 16,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:18.2168072Z"
},
{
- "odata.type": "chrissscratch.testtable73s5x53b",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.6582785Z\u0027\u0022",
- "odata.editLink": "testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A18.2922760Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "17",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:28.6582785Z",
"SomeStringProperty": "This is table entity number 17",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:18:00Z",
+ "SomeDateProperty": "2020-01-01T01:18:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90017",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "17",
- "SomeDoubleProperty0": 17.0,
+ "SomeDoubleProperty0": 17,
"SomeDoubleProperty1": 17.1,
- "SomeIntProperty": 17
+ "SomeIntProperty": 17,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:18.2922760Z"
},
{
- "odata.type": "chrissscratch.testtable73s5x53b",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.7003138Z\u0027\u0022",
- "odata.editLink": "testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A18.3629320Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "18",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:28.7003138Z",
"SomeStringProperty": "This is table entity number 18",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:19:00Z",
+ "SomeDateProperty": "2020-01-01T01:19:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90018",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "18",
- "SomeDoubleProperty0": 18.0,
+ "SomeDoubleProperty0": 18,
"SomeDoubleProperty1": 18.1,
- "SomeIntProperty": 18
+ "SomeIntProperty": 18,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:18.3629320Z"
},
{
- "odata.type": "chrissscratch.testtable73s5x53b",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.7423483Z\u0027\u0022",
- "odata.editLink": "testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A18.4387080Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "19",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:28.7423483Z",
"SomeStringProperty": "This is table entity number 19",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:20:00Z",
+ "SomeDateProperty": "2020-01-01T01:20:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90019",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "19",
- "SomeDoubleProperty0": 19.0,
+ "SomeDoubleProperty0": 19,
"SomeDoubleProperty1": 19.1,
- "SomeIntProperty": 19
+ "SomeIntProperty": 19,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:18.4387080Z"
},
{
- "odata.type": "chrissscratch.testtable73s5x53b",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A28.7923903Z\u0027\u0022",
- "odata.editLink": "testtable73s5x53b(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A18.5153032Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "20",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:28.7923903Z",
"SomeStringProperty": "This is table entity number 20",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:21:00Z",
+ "SomeDateProperty": "2020-01-01T01:21:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90020",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "20",
- "SomeDoubleProperty0": 20.0,
+ "SomeDoubleProperty0": 20,
"SomeDoubleProperty1": 20.1,
- "SomeIntProperty": 20
+ "SomeIntProperty": 20,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:18.5153032Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable73s5x53b\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable73s5x53b\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-0f2bbc72ecd56d41b0427eebc5224657-0929cb8d0b4c684f-00",
+ "traceparent": "00-596cc2ddedd35f46901b098e74227513-9a92a904d643c747-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "71f8ed1d85815011ee80639349409721",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:29 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:19 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:28 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "71f8ed1d85815011ee80639349409721",
- "x-ms-request-id": "20751392-b002-001b-3021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:35:17 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "71f8ed1d-8581-5011-ee80-639349409721"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1728358603",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CustomEntityCanBeUpserted.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CustomEntityCanBeUpserted.json
index 3c129cad6741..5a9a1cae7e4f 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CustomEntityCanBeUpserted.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CustomEntityCanBeUpserted.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e11481348cc4ba4d87d4cfdc52b3e3e3-7968d84e732a5742-00",
+ "traceparent": "00-b3ccb0273b36c646bd0c97dba68cef70-87a88a99a7ee054f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b2273023ab90be95387463f35a027e01",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:43 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:05 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablejmibwiiq\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:44 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A43.6131848Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablejmibwiiq\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "b2273023ab90be95387463f35a027e01",
- "x-ms-request-id": "2074fce8-b002-001b-7c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "b2273023-ab90-be95-3874-63f35a027e01"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablejmibwiiq\u0027)",
- "odata.editLink": "Tables(\u0027testtablejmibwiiq\u0027)",
- "TableName": "testtablejmibwiiq"
+ "TableName": "testtablejmibwiiq",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablejmibwiiq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablejmibwiiq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "181",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-89e28ec64e33734282b2cee7cd74b3e4-2538a3493df1a34a-00",
+ "traceparent": "00-9c74d761a7d60c4d85e09cb354910a4e-c7d43e0348c27049-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "df6c90958bb0f1777744e22b305c529f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:44 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -73,202 +66,161 @@
},
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:05 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A05.4799075Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "df6c90958bb0f1777744e22b305c529f",
- "x-ms-request-id": "2074fcf0-b002-001b-0221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:44 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A44.2342408Z\u0027\u0022",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "df6c9095-8bb0-f177-7744-e22b305c529f"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablejmibwiiq()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablejmibwiiq()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c3be9a8d4e3eb9ce3bd6b8a79ce4147e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:44 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:05 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:44 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c3be9a8d4e3eb9ce3bd6b8a79ce4147e",
- "x-ms-request-id": "2074fcf7-b002-001b-0821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "c3be9a8d-4e3e-b9ce-3bd6-b8a79ce4147e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablejmibwiiq",
"value": [
{
- "odata.type": "chrissscratch.testtablejmibwiiq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejmibwiiq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A05.4799075Z\u0027\u0022",
- "odata.editLink": "testtablejmibwiiq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A44.2342408Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
+ "StringTypeProperty": "This is the original",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:05.4799075Z",
- "StringTypeProperty": "This is the original"
+ "Timestamp": "2020-07-17T19:34:44.2342408Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablejmibwiiq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablejmibwiiq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
- "Content-Length": "580",
+ "Content-Length": "300",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-f9ffa5bcc4fa2948b121613e612306c3-d5ee5e720ff31344-00",
+ "traceparent": "00-afc298d55a12fb46a6560480b30cec3d-05959a2b3dbe9946-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "852bb90626fda473b0c01866b3930817",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:44 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
- "odata.type": "chrissscratch.testtablejmibwiiq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejmibwiiq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A05.4799075Z\u0027\u0022",
- "odata.editLink": "testtablejmibwiiq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A44.2342408Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
+ "StringTypeProperty": "This is the original",
"SomeStringProperty": "This is new and improved!",
- "Timestamp": "2020-07-14T20:56:05.4799075Z",
- "Timestamp@odata.type": "Edm.DateTime",
- "StringTypeProperty": "This is the original"
+ "Timestamp": "2020-07-17T19:34:44.2342408Z",
+ "Timestamp@odata.type": "Edm.DateTime"
},
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:05 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A05.5739866Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "852bb90626fda473b0c01866b3930817",
- "x-ms-request-id": "2074fd0d-b002-001b-1a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:44 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A44.3915272Z\u0027\u0022",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "852bb906-26fd-a473-b0c0-1866b3930817"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablejmibwiiq()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablejmibwiiq()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "67cd54103ebf4713c1b2a4d9d2d05592",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:44 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:05 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:44 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "67cd54103ebf4713c1b2a4d9d2d05592",
- "x-ms-request-id": "2074fd18-b002-001b-2521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "67cd5410-3ebf-4713-c1b2-a4d9d2d05592"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablejmibwiiq",
"value": [
{
- "odata.type": "chrissscratch.testtablejmibwiiq",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejmibwiiq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A05.5739866Z\u0027\u0022",
- "odata.editLink": "testtablejmibwiiq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A44.3915272Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:05.5739866Z",
+ "StringTypeProperty": "This is the original",
"SomeStringProperty": "This is new and improved!",
- "StringTypeProperty": "This is the original"
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:44.3915272Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablejmibwiiq\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablejmibwiiq\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-7a694d183b0f5b49875b68a172b02be5-0423330b548e6446-00",
+ "traceparent": "00-146129cbe120ef468ade18fc2b7234c0-76211f4405e9d347-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7624632fcc3166a12719127d366806a7",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:44 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:05 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "7624632fcc3166a12719127d366806a7",
- "x-ms-request-id": "2074fd20-b002-001b-2b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:34:44 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "7624632f-cc31-66a1-2719-127d366806a7"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1571622286",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CustomEntityCanBeUpsertedAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CustomEntityCanBeUpsertedAsync.json
index 18d70d4bd154..457ad07e4dbf 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CustomEntityCanBeUpsertedAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CustomEntityCanBeUpsertedAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-db1ba0f48af7cd4fa34a07c48962a638-8c595126d9207f49-00",
+ "traceparent": "00-0c03a01f8b6ec546ab46a22b36cda8a7-38d3414dba544f4b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9465fb4267cbc94df57078d791b9b59b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:29 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:20 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:28 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablez8kugfgi\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:19 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A20.3824648Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablez8kugfgi\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "9465fb4267cbc94df57078d791b9b59b",
- "x-ms-request-id": "207513c9-b002-001b-6621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "9465fb42-67cb-c94d-f570-78d791b9b59b"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablez8kugfgi\u0027)",
- "odata.editLink": "Tables(\u0027testtablez8kugfgi\u0027)",
- "TableName": "testtablez8kugfgi"
+ "TableName": "testtablez8kugfgi",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablez8kugfgi(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablez8kugfgi(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "181",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-e7cdd35ed842904f8bab0ab3fed2cfa9-d4be07c446bd1c4b-00",
+ "traceparent": "00-15eaa036a36df94eb04dc13536d8113d-3486de56ac798845-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b6f22e8d0eeaf71fc5a55f9a0ada255c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:29 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:21 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -73,202 +66,161 @@
},
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:28 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A29.1866397Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "b6f22e8d0eeaf71fc5a55f9a0ada255c",
- "x-ms-request-id": "207513d2-b002-001b-6e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:20 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A20.9338888Z\u0027\u0022",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "b6f22e8d-0eea-f71f-c5a5-5f9a0ada255c"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablez8kugfgi()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablez8kugfgi()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4938f53acf4d3c94d914896b6415f0fc",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:29 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:21 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:29 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:20 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "4938f53acf4d3c94d914896b6415f0fc",
- "x-ms-request-id": "207513dc-b002-001b-7721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "4938f53a-cf4d-3c94-d914-896b6415f0fc"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablez8kugfgi",
"value": [
{
- "odata.type": "chrissscratch.testtablez8kugfgi",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablez8kugfgi(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A29.1866397Z\u0027\u0022",
- "odata.editLink": "testtablez8kugfgi(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A20.9338888Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
+ "StringTypeProperty": "This is the original",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:29.1866397Z",
- "StringTypeProperty": "This is the original"
+ "Timestamp": "2020-07-17T19:35:20.9338888Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablez8kugfgi(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablez8kugfgi(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
- "Content-Length": "580",
+ "Content-Length": "300",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-18eb5e8d3f11604f8f49e0e86d4705dc-b68fe2815444474f-00",
+ "traceparent": "00-91010de51d58f04a82109652fd49df4f-ec1908a09ccf1e4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d3fdd371a765ed57469d06c1ed2eeb95",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:29 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:21 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
- "odata.type": "chrissscratch.testtablez8kugfgi",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablez8kugfgi(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A29.1866397Z\u0027\u0022",
- "odata.editLink": "testtablez8kugfgi(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A20.9338888Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
+ "StringTypeProperty": "This is the original",
"SomeStringProperty": "This is new and improved!",
- "Timestamp": "2020-07-14T20:56:29.1866397Z",
- "Timestamp@odata.type": "Edm.DateTime",
- "StringTypeProperty": "This is the original"
+ "Timestamp": "2020-07-17T19:35:20.9338888Z",
+ "Timestamp@odata.type": "Edm.DateTime"
},
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:29 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A29.2677076Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "d3fdd371a765ed57469d06c1ed2eeb95",
- "x-ms-request-id": "207513ea-b002-001b-0521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:20 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A21.0774536Z\u0027\u0022",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "d3fdd371-a765-ed57-469d-06c1ed2eeb95"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablez8kugfgi()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablez8kugfgi()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c4577b53527dbdac9ab5dcd684b392af",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:29 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:21 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:29 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:20 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c4577b53527dbdac9ab5dcd684b392af",
- "x-ms-request-id": "207513fd-b002-001b-1721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "c4577b53-527d-bdac-9ab5-dcd684b392af"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablez8kugfgi",
"value": [
{
- "odata.type": "chrissscratch.testtablez8kugfgi",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablez8kugfgi(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A29.2677076Z\u0027\u0022",
- "odata.editLink": "testtablez8kugfgi(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A21.0774536Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:29.2677076Z",
+ "StringTypeProperty": "This is the original",
"SomeStringProperty": "This is new and improved!",
- "StringTypeProperty": "This is the original"
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:35:21.0774536Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablez8kugfgi\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablez8kugfgi\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-3aeffae69be2384d809401c6c6b46821-d7718cadd9181a41-00",
+ "traceparent": "00-a51cc741a0167846a8c8f6cec6dfb208-5ad9503b34f7684f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "362963b552dc92f79d4b02b0c9d24faa",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:29 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:21 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:29 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "362963b552dc92f79d4b02b0c9d24faa",
- "x-ms-request-id": "20751410-b002-001b-2a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:35:20 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "362963b5-52dc-92f7-9d4b-02b0c9d24faa"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1091797500",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CustomEntityDeleteRespectsEtag.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CustomEntityDeleteRespectsEtag.json
index 6d17414eb71f..d72650b039f2 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CustomEntityDeleteRespectsEtag.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CustomEntityDeleteRespectsEtag.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-833bf145e4ee8f41a86d0e2dd93de32f-3ab625e860e3984d-00",
+ "traceparent": "00-951e8c7c19558a4dbbd88847e52aa270-341552c5ac360043-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "cb9b5591721c92dd76032c627cb939cb",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:45 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:05 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable1p5rgl4d\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:45 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A44.8805896Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable1p5rgl4d\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "cb9b5591721c92dd76032c627cb939cb",
- "x-ms-request-id": "2074fd2a-b002-001b-3421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "cb9b5591-721c-92dd-7603-2c627cb939cb"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable1p5rgl4d\u0027)",
- "odata.editLink": "Tables(\u0027testtable1p5rgl4d\u0027)",
- "TableName": "testtable1p5rgl4d"
+ "TableName": "testtable1p5rgl4d",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable1p5rgl4d(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable1p5rgl4d(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "181",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-64c05c073d122c4ea7823005e1e76048-3b6b6c3216e97544-00",
+ "traceparent": "00-dd7761eea3f0f941aa45d100388a74b1-bd70ea3530579648-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6d8129f05b9d241ed014bf7bf4e416fa",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:06 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:45 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -73,154 +66,126 @@
},
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:05 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A05.7651448Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "6d8129f05b9d241ed014bf7bf4e416fa",
- "x-ms-request-id": "2074fd38-b002-001b-3e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:45 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A45.5272456Z\u0027\u0022",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "6d8129f0-5b9d-241e-d014-bf7bf4e416fa"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable1p5rgl4d()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable1p5rgl4d()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "13e286d13bfab87c96a44d5708060d1c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:06 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:45 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:05 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:45 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "13e286d13bfab87c96a44d5708060d1c",
- "x-ms-request-id": "2074fd3f-b002-001b-4521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "13e286d1-3bfa-b87c-96a4-4d5708060d1c"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable1p5rgl4d",
"value": [
{
- "odata.type": "chrissscratch.testtable1p5rgl4d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable1p5rgl4d(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A05.7651448Z\u0027\u0022",
- "odata.editLink": "testtable1p5rgl4d(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A45.5272456Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
+ "StringTypeProperty": "This is the original",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:05.7651448Z",
- "StringTypeProperty": "This is the original"
+ "Timestamp": "2020-07-17T19:34:45.5272456Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable1p5rgl4d(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable1p5rgl4d(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "DELETE",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"If-Match": "*",
- "traceparent": "00-2dc5a824926d474786a2ee4fb9586f9b-de80f13a345e9441-00",
+ "traceparent": "00-62bad971979c584e8ceef89d8353e4b5-4202b02547d82147-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f6daea97e2affaf47da64b5d1e17821e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:06 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:05 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "f6daea97e2affaf47da64b5d1e17821e",
- "x-ms-request-id": "2074fd4a-b002-001b-4f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:34:45 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "f6daea97-e2af-faf4-7da6-4b5d1e17821e"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable1p5rgl4d()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable1p5rgl4d()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "33aa6715b757b41cacc8d6f80ec61bc9",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:06 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:05 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:45 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "33aa6715b757b41cacc8d6f80ec61bc9",
- "x-ms-request-id": "2074fd4f-b002-001b-5421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "33aa6715-b757-b41c-acc8-d6f80ec61bc9"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable1p5rgl4d",
"value": []
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable1p5rgl4d(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable1p5rgl4d(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "181",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-ea051177fd81db488a61c192e02ca6d0-e36f65b9e88d6743-00",
+ "traceparent": "00-e52b5e05b5d3764d91c77fcc09859480-068c65e11c89f149-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "09e4a306200aee4b92e79653f01f9a7f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:06 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -234,219 +199,171 @@
},
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:05 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A05.9422922Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "09e4a306200aee4b92e79653f01f9a7f",
- "x-ms-request-id": "2074fd5f-b002-001b-6021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:45 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A45.8416136Z\u0027\u0022",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "09e4a306-200a-ee4b-92e7-9653f01f9a7f"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable1p5rgl4d()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable1p5rgl4d()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a0422e21da5bdfc5cd2549e60cfbebb6",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:06 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:05 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:45 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a0422e21da5bdfc5cd2549e60cfbebb6",
- "x-ms-request-id": "2074fd67-b002-001b-6721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "a0422e21-da5b-dfc5-cd25-49e60cfbebb6"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable1p5rgl4d",
"value": [
{
- "odata.type": "chrissscratch.testtable1p5rgl4d",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable1p5rgl4d(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A05.9422922Z\u0027\u0022",
- "odata.editLink": "testtable1p5rgl4d(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A45.8416136Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
+ "StringTypeProperty": "This is the original",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:05.9422922Z",
- "StringTypeProperty": "This is the original"
+ "Timestamp": "2020-07-17T19:34:45.8416136Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable1p5rgl4d(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable1p5rgl4d(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "DELETE",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A05.7651448Z\u0027\u0022",
- "traceparent": "00-eeac0028ac6d094e9b4eafc23bcabc07-06ec1cb2a475af4d-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T19%3A34%3A45.5272456Z\u0027\u0022",
+ "traceparent": "00-9379eaf7991cdd42b2febd272480f370-260f5d5313977e47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7a56828b7833f5131cbba06f20c9c48d",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:06 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 412,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:05 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json; odata=fullmetadata",
+ "Date": "Fri, 17 Jul 2020 19:34:45 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "7a56828b7833f5131cbba06f20c9c48d",
- "x-ms-request-id": "2074fd69-b002-001b-6921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "7a56828b-7833-f513-1cbb-a06f20c9c48d"
},
- "ResponseBody": {
- "odata.error": {
- "code": "UpdateConditionNotSatisfied",
- "message": {
- "lang": "en-US",
- "value": "The update condition specified in the request was not satisfied.\nRequestId:2074fd69-b002-001b-6921-5aea7a000000\nTime:2020-07-14T20:56:06.0334020Z"
- }
- }
- }
+ "ResponseBody": [
+ "{\u0022odata.error\u0022:{\u0022code\u0022:\u0022UpdateConditionNotSatisfied\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-us\u0022,\u0022value\u0022:\u0022The update condition specified in the request was not satisfied.\\nRequestID:7a56828b-7833-f513-1cbb-a06f20c9c48d\\n\u0022}}}\r\n"
+ ]
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable1p5rgl4d(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable1p5rgl4d(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "DELETE",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A05.9422922Z\u0027\u0022",
- "traceparent": "00-b48375a6d2646243abfc2c0eeaa85699-655d00ac64f33d4a-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T19%3A34%3A45.8416136Z\u0027\u0022",
+ "traceparent": "00-6d7b5bbcaa69b54b92c93a90fcbd65f9-660edd09d3b3664b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "dfd6562d7a842c6dde043ce4d664e297",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:06 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:05 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "dfd6562d7a842c6dde043ce4d664e297",
- "x-ms-request-id": "2074fd77-b002-001b-7121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:34:45 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "dfd6562d-7a84-2c6d-de04-3ce4d664e297"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable1p5rgl4d()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable1p5rgl4d()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6dc8e0fc20c8a84c1b4d849f3955be04",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:06 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:05 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:45 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "6dc8e0fc20c8a84c1b4d849f3955be04",
- "x-ms-request-id": "2074fd82-b002-001b-7b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "6dc8e0fc-20c8-a84c-1b4d-849f3955be04"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable1p5rgl4d",
"value": []
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable1p5rgl4d\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable1p5rgl4d\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-e2667b6586c47345b6d2f07e02826de4-4acecfc92220ae41-00",
+ "traceparent": "00-3653950c2048444797e3b7528af1a5ed-181acc57ff260845-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b5b8bc610b241031142a9c2e3c2f1eb7",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:06 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:05 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "b5b8bc610b241031142a9c2e3c2f1eb7",
- "x-ms-request-id": "2074fd90-b002-001b-0421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:34:46 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "b5b8bc61-0b24-1031-142a-9c2e3c2f1eb7"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1136464882",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CustomEntityDeleteRespectsEtagAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CustomEntityDeleteRespectsEtagAsync.json
index dc22e1e5b000..fcc7f748187e 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CustomEntityDeleteRespectsEtagAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CustomEntityDeleteRespectsEtagAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-bdcc23ce56980d469119898c5acd6df3-8a2e2e3ec4805e4c-00",
+ "traceparent": "00-e0cd42a1825dce44b0a9ca726f7c367e-de8867b307ce4e4f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "bdf51de582c207ab43ad9295ded71efd",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:29 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:21 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:29 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablehvb5cq9o\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:21 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A21.5626248Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablehvb5cq9o\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "bdf51de582c207ab43ad9295ded71efd",
- "x-ms-request-id": "20751420-b002-001b-3a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "bdf51de5-82c2-07ab-43ad-9295ded71efd"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablehvb5cq9o\u0027)",
- "odata.editLink": "Tables(\u0027testtablehvb5cq9o\u0027)",
- "TableName": "testtablehvb5cq9o"
+ "TableName": "testtablehvb5cq9o",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehvb5cq9o(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehvb5cq9o(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "181",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-fc7bbe2cc5b7014daf6194296d5acbb5-7e021b0d4b2daf4c-00",
+ "traceparent": "00-5766f9dcecebb144ac347415d85bee90-cebafcb2bd8f8a48-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b8b3b6e59315ac90ee4c14055ab392d4",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:29 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:22 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -73,154 +66,126 @@
},
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:29 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A29.4468562Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "b8b3b6e59315ac90ee4c14055ab392d4",
- "x-ms-request-id": "20751436-b002-001b-4f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:21 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A22.1087240Z\u0027\u0022",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "b8b3b6e5-9315-ac90-ee4c-14055ab392d4"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehvb5cq9o()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehvb5cq9o()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b1df2246e5f5d7057d51bdfa0ad3975a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:29 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:22 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:29 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:21 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "b1df2246e5f5d7057d51bdfa0ad3975a",
- "x-ms-request-id": "20751442-b002-001b-5b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "b1df2246-e5f5-d705-7d51-bdfa0ad3975a"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehvb5cq9o",
"value": [
{
- "odata.type": "chrissscratch.testtablehvb5cq9o",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehvb5cq9o(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A29.4468562Z\u0027\u0022",
- "odata.editLink": "testtablehvb5cq9o(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A22.1087240Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
+ "StringTypeProperty": "This is the original",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:29.4468562Z",
- "StringTypeProperty": "This is the original"
+ "Timestamp": "2020-07-17T19:35:22.1087240Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehvb5cq9o(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehvb5cq9o(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "DELETE",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"If-Match": "*",
- "traceparent": "00-4c408cd4f65c63409464f02a0564b1b4-9f3ad7eaa710d248-00",
+ "traceparent": "00-dc88ce8a2fb91644bf1961e35119fb12-285139d564a82c4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "eab7b7d10d468ad06511d4359702e8f9",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:29 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:22 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:29 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "eab7b7d10d468ad06511d4359702e8f9",
- "x-ms-request-id": "20751449-b002-001b-6221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:35:21 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "eab7b7d1-0d46-8ad0-6511-d4359702e8f9"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehvb5cq9o()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehvb5cq9o()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b498c0ff4c3effe3b1db3bc3d595a21b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:29 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:22 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:29 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:21 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "b498c0ff4c3effe3b1db3bc3d595a21b",
- "x-ms-request-id": "20751452-b002-001b-6b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "b498c0ff-4c3e-ffe3-b1db-3bc3d595a21b"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehvb5cq9o",
"value": []
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehvb5cq9o(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehvb5cq9o(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "181",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-d6cacd327df95949985315013cfda307-b448a0dcc5143847-00",
+ "traceparent": "00-5914f1fd5792f74fba956ed746d70e08-105adb055ab71d44-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a233b9b4a8fb398e52554ce411cf407a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:29 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:22 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -234,219 +199,171 @@
},
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:29 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A29.6220018Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a233b9b4a8fb398e52554ce411cf407a",
- "x-ms-request-id": "20751458-b002-001b-7121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:21 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A22.4035336Z\u0027\u0022",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "a233b9b4-a8fb-398e-5255-4ce411cf407a"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehvb5cq9o()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehvb5cq9o()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "49fbc369e33a851bd4b8386bd10cb4cf",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:29 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:22 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:29 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:21 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "49fbc369e33a851bd4b8386bd10cb4cf",
- "x-ms-request-id": "2075145f-b002-001b-7821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "49fbc369-e33a-851b-d4b8-386bd10cb4cf"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehvb5cq9o",
"value": [
{
- "odata.type": "chrissscratch.testtablehvb5cq9o",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehvb5cq9o(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A29.6220018Z\u0027\u0022",
- "odata.editLink": "testtablehvb5cq9o(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A22.4035336Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
+ "StringTypeProperty": "This is the original",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:29.6220018Z",
- "StringTypeProperty": "This is the original"
+ "Timestamp": "2020-07-17T19:35:22.4035336Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehvb5cq9o(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehvb5cq9o(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "DELETE",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A29.4468562Z\u0027\u0022",
- "traceparent": "00-fdba81b2b3052241a6008f4be3a89b54-0a3e2226a379f94f-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T19%3A35%3A22.1087240Z\u0027\u0022",
+ "traceparent": "00-edccdc167e28dd4e98db533eb8ebd83e-9a92c21d5ff46f4f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "dd81b86e45cf57fe325e62e9ffffede2",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:30 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:22 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 412,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:29 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json; odata=fullmetadata",
+ "Date": "Fri, 17 Jul 2020 19:35:21 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "dd81b86e45cf57fe325e62e9ffffede2",
- "x-ms-request-id": "20751464-b002-001b-7d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "dd81b86e-45cf-57fe-325e-62e9ffffede2"
},
- "ResponseBody": {
- "odata.error": {
- "code": "UpdateConditionNotSatisfied",
- "message": {
- "lang": "en-US",
- "value": "The update condition specified in the request was not satisfied.\nRequestId:20751464-b002-001b-7d21-5aea7a000000\nTime:2020-07-14T20:56:29.7171575Z"
- }
- }
- }
+ "ResponseBody": [
+ "{\u0022odata.error\u0022:{\u0022code\u0022:\u0022UpdateConditionNotSatisfied\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-us\u0022,\u0022value\u0022:\u0022The update condition specified in the request was not satisfied.\\nRequestID:dd81b86e-45cf-57fe-325e-62e9ffffede2\\n\u0022}}}\r\n"
+ ]
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehvb5cq9o(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehvb5cq9o(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "DELETE",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A29.6220018Z\u0027\u0022",
- "traceparent": "00-db8c54c3493a2f40863dc19a48447a87-32c71defa065d542-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T19%3A35%3A22.4035336Z\u0027\u0022",
+ "traceparent": "00-5f760ef5b1623c4cb34034aefa3b2975-b26af0da18b48b4c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "125ac09b589ad1e09eaece436f226745",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:30 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:23 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:29 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "125ac09b589ad1e09eaece436f226745",
- "x-ms-request-id": "2075146c-b002-001b-0521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:35:21 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "125ac09b-589a-d1e0-9eae-ce436f226745"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehvb5cq9o()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehvb5cq9o()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "58757da0624e24aac5a317dc803185d4",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:30 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:23 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:29 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:21 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "58757da0624e24aac5a317dc803185d4",
- "x-ms-request-id": "20751473-b002-001b-0c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "58757da0-624e-24aa-c5a3-17dc803185d4"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehvb5cq9o",
"value": []
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablehvb5cq9o\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablehvb5cq9o\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-ab551e761ec1ce43ba1793ec195cc24a-b1133a9f7d4a444f-00",
+ "traceparent": "00-3692b23481e58f4e8e8ec443eac00ac1-019543ccc9b8a847-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "11d055caa1b21534d8af3f2176bae80f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:30 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:23 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:29 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "11d055caa1b21534d8af3f2176bae80f",
- "x-ms-request-id": "20751477-b002-001b-1021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:35:21 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "11d055ca-a1b2-1534-d8af-3f2176bae80f"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1574855749",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CustomEntityMergeRespectsEtag.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CustomEntityMergeRespectsEtag.json
index 0a6f5b13064e..37d1d661c291 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CustomEntityMergeRespectsEtag.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CustomEntityMergeRespectsEtag.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-7d4e5db756aa5d459f52301df304a333-cd906a1ee2f26148-00",
+ "traceparent": "00-4bc75623b4553443a3a570f5d012cad0-460b14aaa516e842-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7f6b5053d296615321d0fa603024aa49",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:06 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:14:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,406 +24,49 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:06 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabled2nn380t\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "7f6b5053d296615321d0fa603024aa49",
- "x-ms-request-id": "2074fda0-b002-001b-1321-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabled2nn380t\u0027)",
- "odata.editLink": "Tables(\u0027testtabled2nn380t\u0027)",
- "TableName": "testtabled2nn380t"
- }
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabled2nn380t(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
- "RequestMethod": "PUT",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "Content-Length": "181",
- "Content-Type": "application/json",
- "DataServiceVersion": "3.0",
- "traceparent": "00-0cda59663f19414a859631ef930de1e0-247f350b01680643-00",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "daa0a0cb57c1eb0dd93aed73196e31de",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:06 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": {
- "StringTypeProperty": "This is the original",
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "Timestamp": "0001-01-01T00:00:00.0000000Z",
- "Timestamp@odata.type": "Edm.DateTime",
- "ETag": null
- },
- "StatusCode": 204,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:06 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A06.268564Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "daa0a0cb57c1eb0dd93aed73196e31de",
- "x-ms-request-id": "2074fdad-b002-001b-1f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": []
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabled2nn380t()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "DataServiceVersion": "3.0",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "d2955a5579b9f0c6ea1ccc8c7216101b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:06 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:06 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "d2955a5579b9f0c6ea1ccc8c7216101b",
- "x-ms-request-id": "2074fdb6-b002-001b-2721-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabled2nn380t",
- "value": [
- {
- "odata.type": "chrissscratch.testtabled2nn380t",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabled2nn380t(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A06.268564Z\u0027\u0022",
- "odata.editLink": "testtabled2nn380t(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:06.268564Z",
- "StringTypeProperty": "This is the original"
- }
- ]
- }
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabled2nn380t(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
- "RequestMethod": "PATCH",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "Content-Length": "579",
- "Content-Type": "application/json",
- "DataServiceVersion": "3.0",
- "If-Match": "*",
- "traceparent": "00-7dca0fae9c9d204e8e68e2974a1c864b-f00a81de758af240-00",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "c95ea31aa6eaf9915d94bc9866ee0862",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:06 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": {
- "odata.type": "chrissscratch.testtabled2nn380t",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabled2nn380t(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A06.268564Z\u0027\u0022",
- "odata.editLink": "testtabled2nn380t(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "SomeStringProperty": "This is new and improved!",
- "Timestamp": "2020-07-14T20:56:06.2685640Z",
- "Timestamp@odata.type": "Edm.DateTime",
- "StringTypeProperty": "This is the original"
- },
- "StatusCode": 204,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:06 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A06.3536348Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c95ea31aa6eaf9915d94bc9866ee0862",
- "x-ms-request-id": "2074fdbd-b002-001b-2d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": []
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabled2nn380t()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "DataServiceVersion": "3.0",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "cadb81c9771451b2d9b0efa58b8179c2",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:06 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:06 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "cadb81c9771451b2d9b0efa58b8179c2",
- "x-ms-request-id": "2074fdc9-b002-001b-3721-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabled2nn380t",
- "value": [
- {
- "odata.type": "chrissscratch.testtabled2nn380t",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabled2nn380t(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A06.3536348Z\u0027\u0022",
- "odata.editLink": "testtabled2nn380t(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:06.3536348Z",
- "SomeStringProperty": "This is new and improved!",
- "StringTypeProperty": "This is the original"
- }
- ]
- }
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabled2nn380t(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
- "RequestMethod": "PATCH",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "Content-Length": "590",
- "Content-Type": "application/json",
- "DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A06.268564Z\u0027\u0022",
- "traceparent": "00-431492ca089d9a4eb57753a813c4b56e-13e1904799103c41-00",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "7559d2296710aef3c89c7525bc2e89fb",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:06 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": {
- "odata.type": "chrissscratch.testtabled2nn380t",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabled2nn380t(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A06.3536348Z\u0027\u0022",
- "odata.editLink": "testtabled2nn380t(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "Timestamp": "2020-07-14T20:56:06.3536348Z",
- "Timestamp@odata.type": "Edm.DateTime",
- "SomeStringProperty": "This changed due to a matching Etag",
- "StringTypeProperty": "This is the original"
- },
- "StatusCode": 412,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:06 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "7559d2296710aef3c89c7525bc2e89fb",
- "x-ms-request-id": "2074fdd3-b002-001b-4121-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": {
- "odata.error": {
- "code": "UpdateConditionNotSatisfied",
- "message": {
- "lang": "en-US",
- "value": "The update condition specified in the request was not satisfied.\nRequestId:2074fdd3-b002-001b-4121-5aea7a000000\nTime:2020-07-14T20:56:06.4437423Z"
- }
- }
- }
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabled2nn380t(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
- "RequestMethod": "PATCH",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "Content-Length": "590",
"Content-Type": "application/json",
- "DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A06.3536348Z\u0027\u0022",
- "traceparent": "00-2873e15588563f4f9488212700791005-c8eda6911f311a46-00",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "f0c36a13463aa306f00cef3ab6ec6edc",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:06 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": {
- "odata.type": "chrissscratch.testtabled2nn380t",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabled2nn380t(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A06.3536348Z\u0027\u0022",
- "odata.editLink": "testtabled2nn380t(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "Timestamp": "2020-07-14T20:56:06.3536348Z",
- "Timestamp@odata.type": "Edm.DateTime",
- "SomeStringProperty": "This changed due to a matching Etag",
- "StringTypeProperty": "This is the original"
- },
- "StatusCode": 204,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:06 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A06.4857442Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "f0c36a13463aa306f00cef3ab6ec6edc",
- "x-ms-request-id": "2074fddc-b002-001b-4921-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": []
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabled2nn380t()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "DataServiceVersion": "3.0",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "946efa1a929561518d2c0178028d94ab",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:06 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:06 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Date": "Fri, 17 Jul 2020 21:14:02 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T21%3A14%3A03.3148936Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtabled2nn380t\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "946efa1a929561518d2c0178028d94ab",
- "x-ms-request-id": "2074fde9-b002-001b-5521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "7f6b5053-d296-6153-21d0-fa603024aa49"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabled2nn380t",
- "value": [
- {
- "odata.type": "chrissscratch.testtabled2nn380t",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabled2nn380t(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A06.4857442Z\u0027\u0022",
- "odata.editLink": "testtabled2nn380t(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:06.4857442Z",
- "SomeStringProperty": "This changed due to a matching Etag",
- "StringTypeProperty": "This is the original"
- }
- ]
+ "TableName": "testtabled2nn380t",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabled2nn380t\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtabled2nn380t\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-5bda29986e228b4aa0031d4c30a07ead-26b1918bbade7349-00",
+ "traceparent": "00-c052d49cda8de5488f66e91b158213c1-9d9dd3e6de5cc449-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "2091f42689bee287ccb5840377b9f8dc",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:06 GMT",
+ "x-ms-client-request-id": "a0a0cb6cc1da0d57ebd93aed73196e31",
+ "x-ms-date": "Fri, 17 Jul 2020 21:14:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:06 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "2091f42689bee287ccb5840377b9f8dc",
- "x-ms-request-id": "2074fdef-b002-001b-5b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 21:14:03 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "a0a0cb6c-c1da-0d57-ebd9-3aed73196e31"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1273356691",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CustomEntityMergeRespectsEtagAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CustomEntityMergeRespectsEtagAsync.json
index 01c53ead9efb..751badd8e072 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CustomEntityMergeRespectsEtagAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CustomEntityMergeRespectsEtagAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-83f9a2f0e602bf46a1df7d925469b817-724f7c196e774e4a-00",
+ "traceparent": "00-f8f38bade02f424f96cee6bc5de7b0c8-bf1989ef14ce4b42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2eadc1cc1777cd812eaf6664f9588cd5",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:30 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:04:21 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,406 +24,49 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:29 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablemr9c7acu\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "2eadc1cc1777cd812eaf6664f9588cd5",
- "x-ms-request-id": "2075147f-b002-001b-1721-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablemr9c7acu\u0027)",
- "odata.editLink": "Tables(\u0027testtablemr9c7acu\u0027)",
- "TableName": "testtablemr9c7acu"
- }
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablemr9c7acu(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
- "RequestMethod": "PUT",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "Content-Length": "181",
- "Content-Type": "application/json",
- "DataServiceVersion": "3.0",
- "traceparent": "00-158d6c14cf142e4dabae3bc0996b83ae-71339868563b244d-00",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "9e5a70667254973d61820a7285cf3ccb",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:30 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": {
- "StringTypeProperty": "This is the original",
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "Timestamp": "0001-01-01T00:00:00.0000000Z",
- "Timestamp@odata.type": "Edm.DateTime",
- "ETag": null
- },
- "StatusCode": 204,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:29 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A29.9312604Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "9e5a70667254973d61820a7285cf3ccb",
- "x-ms-request-id": "20751488-b002-001b-1f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": []
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablemr9c7acu()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "DataServiceVersion": "3.0",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "9cb8b6fbfc0d8f8001df84ce730b9167",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:30 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:29 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "9cb8b6fbfc0d8f8001df84ce730b9167",
- "x-ms-request-id": "2075148c-b002-001b-2321-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablemr9c7acu",
- "value": [
- {
- "odata.type": "chrissscratch.testtablemr9c7acu",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablemr9c7acu(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A29.9312604Z\u0027\u0022",
- "odata.editLink": "testtablemr9c7acu(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:29.9312604Z",
- "StringTypeProperty": "This is the original"
- }
- ]
- }
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablemr9c7acu(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
- "RequestMethod": "PATCH",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "Content-Length": "580",
- "Content-Type": "application/json",
- "DataServiceVersion": "3.0",
- "If-Match": "*",
- "traceparent": "00-a0aa1869b3aff64f9995881a0a4a0ed6-ae73b6c02bca654a-00",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "9091a90aaaac4e7770971694775ba8e0",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:30 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": {
- "odata.type": "chrissscratch.testtablemr9c7acu",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablemr9c7acu(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A29.9312604Z\u0027\u0022",
- "odata.editLink": "testtablemr9c7acu(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "SomeStringProperty": "This is new and improved!",
- "Timestamp": "2020-07-14T20:56:29.9312604Z",
- "Timestamp@odata.type": "Edm.DateTime",
- "StringTypeProperty": "This is the original"
- },
- "StatusCode": 204,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:29 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A30.018332Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "9091a90aaaac4e7770971694775ba8e0",
- "x-ms-request-id": "2075149b-b002-001b-3121-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": []
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablemr9c7acu()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "DataServiceVersion": "3.0",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "a2fd992938d36927f0cb9d75ee6e2355",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:30 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:29 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a2fd992938d36927f0cb9d75ee6e2355",
- "x-ms-request-id": "207514a8-b002-001b-3e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablemr9c7acu",
- "value": [
- {
- "odata.type": "chrissscratch.testtablemr9c7acu",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablemr9c7acu(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A30.018332Z\u0027\u0022",
- "odata.editLink": "testtablemr9c7acu(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:30.018332Z",
- "SomeStringProperty": "This is new and improved!",
- "StringTypeProperty": "This is the original"
- }
- ]
- }
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablemr9c7acu(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
- "RequestMethod": "PATCH",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "Content-Length": "589",
- "Content-Type": "application/json",
- "DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A29.9312604Z\u0027\u0022",
- "traceparent": "00-e5241d187b2aeb4c963b61ddc05daedf-ea84c7c5a90b1240-00",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "db67a2f0ac3d501f3e692c76e5eb18a5",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:30 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": {
- "odata.type": "chrissscratch.testtablemr9c7acu",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablemr9c7acu(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A30.018332Z\u0027\u0022",
- "odata.editLink": "testtablemr9c7acu(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "Timestamp": "2020-07-14T20:56:30.0183320Z",
- "Timestamp@odata.type": "Edm.DateTime",
- "SomeStringProperty": "This changed due to a matching Etag",
- "StringTypeProperty": "This is the original"
- },
- "StatusCode": 412,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:29 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "db67a2f0ac3d501f3e692c76e5eb18a5",
- "x-ms-request-id": "207514b4-b002-001b-4821-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": {
- "odata.error": {
- "code": "UpdateConditionNotSatisfied",
- "message": {
- "lang": "en-US",
- "value": "The update condition specified in the request was not satisfied.\nRequestId:207514b4-b002-001b-4821-5aea7a000000\nTime:2020-07-14T20:56:30.0984749Z"
- }
- }
- }
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablemr9c7acu(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
- "RequestMethod": "PATCH",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "Content-Length": "589",
"Content-Type": "application/json",
- "DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A30.018332Z\u0027\u0022",
- "traceparent": "00-9efbc88d15034144b04acb114da09ed8-8079f2d5e1a70a42-00",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "daa5a336ee0dd29381279fe00d026002",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:30 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": {
- "odata.type": "chrissscratch.testtablemr9c7acu",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablemr9c7acu(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A30.018332Z\u0027\u0022",
- "odata.editLink": "testtablemr9c7acu(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "Timestamp": "2020-07-14T20:56:30.0183320Z",
- "Timestamp@odata.type": "Edm.DateTime",
- "SomeStringProperty": "This changed due to a matching Etag",
- "StringTypeProperty": "This is the original"
- },
- "StatusCode": 204,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:29 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A30.1404327Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "daa5a336ee0dd29381279fe00d026002",
- "x-ms-request-id": "207514bc-b002-001b-5021-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": []
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablemr9c7acu()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "DataServiceVersion": "3.0",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "d4a4c073cdf47ca379ac646a0cb18404",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:30 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:29 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Date": "Fri, 17 Jul 2020 21:04:21 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T21%3A04%3A21.8073096Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablemr9c7acu\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "d4a4c073cdf47ca379ac646a0cb18404",
- "x-ms-request-id": "207514c6-b002-001b-5a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "2eadc1cc-1777-cd81-2eaf-6664f9588cd5"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablemr9c7acu",
- "value": [
- {
- "odata.type": "chrissscratch.testtablemr9c7acu",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablemr9c7acu(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A30.1404327Z\u0027\u0022",
- "odata.editLink": "testtablemr9c7acu(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:30.1404327Z",
- "SomeStringProperty": "This changed due to a matching Etag",
- "StringTypeProperty": "This is the original"
- }
- ]
+ "TableName": "testtablemr9c7acu",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablemr9c7acu\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablemr9c7acu\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-5b1d9a00e1492b41ab3905f221cf8fd7-1de867abbcdc2242-00",
+ "traceparent": "00-f315b13c6a93e44c8a3faae66503ce46-a4703a995f45c143-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "4a3ef7b349c901480f9459150c3e433b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:30 GMT",
+ "x-ms-client-request-id": "5a706635549e3d729761820a7285cf3c",
+ "x-ms-date": "Fri, 17 Jul 2020 21:04:22 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:30 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "4a3ef7b349c901480f9459150c3e433b",
- "x-ms-request-id": "207514cf-b002-001b-6321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 21:04:22 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "5a706635-549e-3d72-9761-820a7285cf3c"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "990981261",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CustomEntityUpdateRespectsEtag.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CustomEntityUpdateRespectsEtag.json
index 87dde6e9c801..7824645991d6 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CustomEntityUpdateRespectsEtag.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CustomEntityUpdateRespectsEtag.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e7385011531d514b9ba52f75391c4fd7-f8f1c36e3dabc84c-00",
+ "traceparent": "00-81ddc5e821a09e4dbde51fd37ff5ad93-36a1d3556ff3ae46-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "51ebe58914dec8aa0bc500fc3b7951f8",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:06 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:06 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablehdornlih\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:47 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A47.9277064Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablehdornlih\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "51ebe58914dec8aa0bc500fc3b7951f8",
- "x-ms-request-id": "2074fdfa-b002-001b-6521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "51ebe589-14de-c8aa-0bc5-00fc3b7951f8"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablehdornlih\u0027)",
- "odata.editLink": "Tables(\u0027testtablehdornlih\u0027)",
- "TableName": "testtablehdornlih"
+ "TableName": "testtablehdornlih",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehdornlih(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehdornlih(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "181",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-d4a46f5b90fa4749b464835d79e2cd53-436dfe4f370bb44d-00",
+ "traceparent": "00-0e5c6c20c971f84e85db1d756b9667a6-09aeef74926af244-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "13b7f7546d199ddcbf2620307658be84",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:06 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -73,356 +66,280 @@
},
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:06 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A06.6608895Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "13b7f7546d199ddcbf2620307658be84",
- "x-ms-request-id": "2074fe07-b002-001b-7121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:48 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A48.5980168Z\u0027\u0022",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "13b7f754-6d19-9ddc-bf26-20307658be84"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehdornlih()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehdornlih()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3cbeb07827beea6e3d605c36e97930bc",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:06 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:06 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:48 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "3cbeb07827beea6e3d605c36e97930bc",
- "x-ms-request-id": "2074fe12-b002-001b-7b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "3cbeb078-27be-ea6e-3d60-5c36e97930bc"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehdornlih",
"value": [
{
- "odata.type": "chrissscratch.testtablehdornlih",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehdornlih(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A06.6608895Z\u0027\u0022",
- "odata.editLink": "testtablehdornlih(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A48.5980168Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
+ "StringTypeProperty": "This is the original",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:06.6608895Z",
- "StringTypeProperty": "This is the original"
+ "Timestamp": "2020-07-17T19:34:48.5980168Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehdornlih(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehdornlih(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
- "Content-Length": "580",
+ "Content-Length": "300",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
"If-Match": "*",
- "traceparent": "00-e14174b7112f9f4e81958bd32ef2bd84-e3f2d62822ad8540-00",
+ "traceparent": "00-5fbc638f3b227f49bc84496334ac8218-e4bf13298dd9594a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ff7bf49e81da78700fb31eed8a97946c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:07 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
- "odata.type": "chrissscratch.testtablehdornlih",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehdornlih(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A06.6608895Z\u0027\u0022",
- "odata.editLink": "testtablehdornlih(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A48.5980168Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
+ "StringTypeProperty": "This is the original",
"SomeStringProperty": "This is new and improved!",
- "Timestamp": "2020-07-14T20:56:06.6608895Z",
- "Timestamp@odata.type": "Edm.DateTime",
- "StringTypeProperty": "This is the original"
+ "Timestamp": "2020-07-17T19:34:48.5980168Z",
+ "Timestamp@odata.type": "Edm.DateTime"
},
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:06 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A06.7389549Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ff7bf49e81da78700fb31eed8a97946c",
- "x-ms-request-id": "2074fe18-b002-001b-0121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:34:48 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A48.7615496Z\u0027\u0022",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "ff7bf49e-81da-7870-0fb3-1eed8a97946c"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehdornlih()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehdornlih()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c9c37742bc922cce89ccd5b911a6b445",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:07 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:06 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:48 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c9c37742bc922cce89ccd5b911a6b445",
- "x-ms-request-id": "2074fe21-b002-001b-0921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "c9c37742-bc92-2cce-89cc-d5b911a6b445"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehdornlih",
"value": [
{
- "odata.type": "chrissscratch.testtablehdornlih",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehdornlih(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A06.7389549Z\u0027\u0022",
- "odata.editLink": "testtablehdornlih(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A48.7615496Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:06.7389549Z",
+ "StringTypeProperty": "This is the original",
"SomeStringProperty": "This is new and improved!",
- "StringTypeProperty": "This is the original"
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:48.7615496Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehdornlih(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehdornlih(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
- "Content-Length": "590",
+ "Content-Length": "310",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A06.6608895Z\u0027\u0022",
- "traceparent": "00-523eec742583c74c8db27d9f73a878ff-9f89495cd09bf748-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T19%3A34%3A48.5980168Z\u0027\u0022",
+ "traceparent": "00-d64a9be5d9a86d419f183657c501bb40-6a0c3626b092214f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "819163f5beddf7a940462d0a08805fa6",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:07 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
- "odata.type": "chrissscratch.testtablehdornlih",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehdornlih(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A06.7389549Z\u0027\u0022",
- "odata.editLink": "testtablehdornlih(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A48.7615496Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp": "2020-07-14T20:56:06.7389549Z",
- "Timestamp@odata.type": "Edm.DateTime",
+ "StringTypeProperty": "This is the original",
"SomeStringProperty": "This changed due to a matching Etag",
- "StringTypeProperty": "This is the original"
+ "Timestamp": "2020-07-17T19:34:48.7615496Z",
+ "Timestamp@odata.type": "Edm.DateTime"
},
"StatusCode": 412,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:06 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json; odata=fullmetadata",
+ "Date": "Fri, 17 Jul 2020 19:34:48 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "819163f5beddf7a940462d0a08805fa6",
- "x-ms-request-id": "2074fe2b-b002-001b-1021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "819163f5-bedd-f7a9-4046-2d0a08805fa6"
},
- "ResponseBody": {
- "odata.error": {
- "code": "UpdateConditionNotSatisfied",
- "message": {
- "lang": "en-US",
- "value": "The update condition specified in the request was not satisfied.\nRequestId:2074fe2b-b002-001b-1021-5aea7a000000\nTime:2020-07-14T20:56:06.8310656Z"
- }
- }
- }
+ "ResponseBody": [
+ "{\u0022odata.error\u0022:{\u0022code\u0022:\u0022UpdateConditionNotSatisfied\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-us\u0022,\u0022value\u0022:\u0022The update condition specified in the request was not satisfied.\\nRequestID:819163f5-bedd-f7a9-4046-2d0a08805fa6\\n\u0022}}}\r\n"
+ ]
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehdornlih(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehdornlih(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
- "Content-Length": "590",
+ "Content-Length": "310",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A06.7389549Z\u0027\u0022",
- "traceparent": "00-4dca96ad910f7d4b9add1cd293fb60c1-c0ae74964ac3d541-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T19%3A34%3A48.7615496Z\u0027\u0022",
+ "traceparent": "00-de1e154026b4b1478121ce7e3f3694f2-d1f60573e9620445-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "71f3efcb67b6e22a264e760eacb66668",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:07 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
- "odata.type": "chrissscratch.testtablehdornlih",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehdornlih(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A06.7389549Z\u0027\u0022",
- "odata.editLink": "testtablehdornlih(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A48.7615496Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp": "2020-07-14T20:56:06.7389549Z",
- "Timestamp@odata.type": "Edm.DateTime",
+ "StringTypeProperty": "This is the original",
"SomeStringProperty": "This changed due to a matching Etag",
- "StringTypeProperty": "This is the original"
+ "Timestamp": "2020-07-17T19:34:48.7615496Z",
+ "Timestamp@odata.type": "Edm.DateTime"
},
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:06 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A06.8720656Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "71f3efcb67b6e22a264e760eacb66668",
- "x-ms-request-id": "2074fe37-b002-001b-1c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:34:48 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A48.9847816Z\u0027\u0022",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "71f3efcb-67b6-e22a-264e-760eacb66668"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablehdornlih()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablehdornlih()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "27f8d9fe1205838ececb894c8ec32408",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:07 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:06 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:48 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "27f8d9fe1205838ececb894c8ec32408",
- "x-ms-request-id": "2074fe41-b002-001b-2521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "27f8d9fe-1205-838e-cecb-894c8ec32408"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehdornlih",
"value": [
{
- "odata.type": "chrissscratch.testtablehdornlih",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablehdornlih(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A06.8720656Z\u0027\u0022",
- "odata.editLink": "testtablehdornlih(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A48.9847816Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:06.8720656Z",
+ "StringTypeProperty": "This is the original",
"SomeStringProperty": "This changed due to a matching Etag",
- "StringTypeProperty": "This is the original"
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:48.9847816Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablehdornlih\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablehdornlih\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-03b57716c0db434593166d9b78908053-eb8f791036dbe54d-00",
+ "traceparent": "00-7fcbb4ae5a6fdf4f83d067f7c6ab712e-a2327d195505da4d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "22ed2f6c42b28d8f39af5b8f489b4a89",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:07 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:06 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "22ed2f6c42b28d8f39af5b8f489b4a89",
- "x-ms-request-id": "2074fe4c-b002-001b-3021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:34:48 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "22ed2f6c-42b2-8d8f-39af-5b8f489b4a89"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1769163663",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CustomEntityUpdateRespectsEtagAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CustomEntityUpdateRespectsEtagAsync.json
index 6747651cf5c3..23c84fb0ffd2 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CustomEntityUpdateRespectsEtagAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/CustomEntityUpdateRespectsEtagAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1144c17ba7762042982dc85cd950698a-8405d083e1f53d44-00",
+ "traceparent": "00-c28d71bf240b904abeaf0898720e4dca-0ced3fd54cf8f342-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a25d820a5bfc4e6bcd11bf57274f2add",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:30 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:03:42 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:30 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableg00e3nvj\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 21:03:42 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T21%3A03%3A42.3059976Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableg00e3nvj\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a25d820a5bfc4e6bcd11bf57274f2add",
- "x-ms-request-id": "207514d7-b002-001b-6b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "a25d820a-5bfc-4e6b-cd11-bf57274f2add"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableg00e3nvj\u0027)",
- "odata.editLink": "Tables(\u0027testtableg00e3nvj\u0027)",
- "TableName": "testtableg00e3nvj"
+ "TableName": "testtableg00e3nvj",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableg00e3nvj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableg00e3nvj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "181",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-89166c5b8e6f4d40bb19832e331b9456-22ecebd45477dd46-00",
+ "traceparent": "00-3978e89324cb8441a55d3548d053500e-0f4a3f8f3acfe84f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a9a4e37af60d4f54a6d0c6865bd1f996",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:30 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:03:42 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -73,356 +66,280 @@
},
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:30 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A30.3315921Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a9a4e37af60d4f54a6d0c6865bd1f996",
- "x-ms-request-id": "207514e0-b002-001b-7321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 21:03:42 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T21%3A03%3A42.9571592Z\u0027\u0022",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "a9a4e37a-f60d-4f54-a6d0-c6865bd1f996"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableg00e3nvj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableg00e3nvj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "cd6c58df6bef4777af2e365fd5b98f96",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:30 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:03:43 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:30 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 21:03:42 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "cd6c58df6bef4777af2e365fd5b98f96",
- "x-ms-request-id": "207514ef-b002-001b-0121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "cd6c58df-6bef-4777-af2e-365fd5b98f96"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableg00e3nvj",
"value": [
{
- "odata.type": "chrissscratch.testtableg00e3nvj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg00e3nvj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A30.3315921Z\u0027\u0022",
- "odata.editLink": "testtableg00e3nvj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A03%3A42.9571592Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
+ "StringTypeProperty": "This is the original",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:30.3315921Z",
- "StringTypeProperty": "This is the original"
+ "Timestamp": "2020-07-17T21:03:42.9571592Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableg00e3nvj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableg00e3nvj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
- "Content-Length": "580",
+ "Content-Length": "300",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
"If-Match": "*",
- "traceparent": "00-0bcfd48943265f4a9053e7f491f31a01-de6ef3224fe0864b-00",
+ "traceparent": "00-b7872cce4d9f794ab29db86237e04d1a-4d1f45ec0e71bc4d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4a660c3495d98bfc0952568ba4c8713f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:30 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:03:43 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
- "odata.type": "chrissscratch.testtableg00e3nvj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg00e3nvj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A30.3315921Z\u0027\u0022",
- "odata.editLink": "testtableg00e3nvj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A03%3A42.9571592Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
+ "StringTypeProperty": "This is the original",
"SomeStringProperty": "This is new and improved!",
- "Timestamp": "2020-07-14T20:56:30.3315921Z",
- "Timestamp@odata.type": "Edm.DateTime",
- "StringTypeProperty": "This is the original"
+ "Timestamp": "2020-07-17T21:03:42.9571592Z",
+ "Timestamp@odata.type": "Edm.DateTime"
},
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:30 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A30.4116587Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "4a660c3495d98bfc0952568ba4c8713f",
- "x-ms-request-id": "207514f8-b002-001b-0a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 21:03:42 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T21%3A03%3A43.1146504Z\u0027\u0022",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "4a660c34-95d9-8bfc-0952-568ba4c8713f"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableg00e3nvj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableg00e3nvj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f647c1c50fbe0fb56c5dfadfbff47aec",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:30 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:03:43 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:30 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 21:03:42 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "f647c1c50fbe0fb56c5dfadfbff47aec",
- "x-ms-request-id": "20751503-b002-001b-1521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "f647c1c5-0fbe-0fb5-6c5d-fadfbff47aec"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableg00e3nvj",
"value": [
{
- "odata.type": "chrissscratch.testtableg00e3nvj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg00e3nvj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A30.4116587Z\u0027\u0022",
- "odata.editLink": "testtableg00e3nvj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A03%3A43.1146504Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:30.4116587Z",
+ "StringTypeProperty": "This is the original",
"SomeStringProperty": "This is new and improved!",
- "StringTypeProperty": "This is the original"
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T21:03:43.1146504Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableg00e3nvj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableg00e3nvj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
- "Content-Length": "590",
+ "Content-Length": "310",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A30.3315921Z\u0027\u0022",
- "traceparent": "00-b97319301abf9e409e8e9e1de9412a40-3b16a77e5d1a7148-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T21%3A03%3A42.9571592Z\u0027\u0022",
+ "traceparent": "00-c9bb6ae84b7eec469f9e629473a4db8c-ef9428e1e3a2b947-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4f513041ae6a49bd5be0c49c14eca2e6",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:30 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:03:43 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
- "odata.type": "chrissscratch.testtableg00e3nvj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg00e3nvj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A30.4116587Z\u0027\u0022",
- "odata.editLink": "testtableg00e3nvj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A03%3A43.1146504Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp": "2020-07-14T20:56:30.4116587Z",
- "Timestamp@odata.type": "Edm.DateTime",
+ "StringTypeProperty": "This is the original",
"SomeStringProperty": "This changed due to a matching Etag",
- "StringTypeProperty": "This is the original"
+ "Timestamp": "2020-07-17T21:03:43.1146504Z",
+ "Timestamp@odata.type": "Edm.DateTime"
},
"StatusCode": 412,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:30 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json; odata=fullmetadata",
+ "Date": "Fri, 17 Jul 2020 21:03:42 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "4f513041ae6a49bd5be0c49c14eca2e6",
- "x-ms-request-id": "2075150b-b002-001b-1d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "4f513041-ae6a-49bd-5be0-c49c14eca2e6"
},
- "ResponseBody": {
- "odata.error": {
- "code": "UpdateConditionNotSatisfied",
- "message": {
- "lang": "en-US",
- "value": "The update condition specified in the request was not satisfied.\nRequestId:2075150b-b002-001b-1d21-5aea7a000000\nTime:2020-07-14T20:56:30.4958043Z"
- }
- }
- }
+ "ResponseBody": [
+ "{\u0022odata.error\u0022:{\u0022code\u0022:\u0022UpdateConditionNotSatisfied\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-us\u0022,\u0022value\u0022:\u0022The update condition specified in the request was not satisfied.\\nRequestID:4f513041-ae6a-49bd-5be0-c49c14eca2e6\\n\u0022}}}\r\n"
+ ]
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableg00e3nvj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableg00e3nvj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
- "Content-Length": "590",
+ "Content-Length": "310",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A30.4116587Z\u0027\u0022",
- "traceparent": "00-cc1ba22556ad0a4a9919049c2215ba5d-26fd5235f649884e-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T21%3A03%3A43.1146504Z\u0027\u0022",
+ "traceparent": "00-83dc11d15c296543b89ec0f6a2be57db-bfef30661ef9e54f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1499f6bc987224d85657de7c9b1dcc14",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:30 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:03:43 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
- "odata.type": "chrissscratch.testtableg00e3nvj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg00e3nvj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A30.4116587Z\u0027\u0022",
- "odata.editLink": "testtableg00e3nvj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A03%3A43.1146504Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp": "2020-07-14T20:56:30.4116587Z",
- "Timestamp@odata.type": "Edm.DateTime",
+ "StringTypeProperty": "This is the original",
"SomeStringProperty": "This changed due to a matching Etag",
- "StringTypeProperty": "This is the original"
+ "Timestamp": "2020-07-17T21:03:43.1146504Z",
+ "Timestamp@odata.type": "Edm.DateTime"
},
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:30 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A30.5347611Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "1499f6bc987224d85657de7c9b1dcc14",
- "x-ms-request-id": "20751511-b002-001b-2321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 21:03:42 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T21%3A03%3A43.3536520Z\u0027\u0022",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "1499f6bc-9872-24d8-5657-de7c9b1dcc14"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableg00e3nvj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableg00e3nvj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "744a6ad7227617d503fe9add4b18fb80",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:30 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:03:43 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:30 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 21:03:42 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "744a6ad7227617d503fe9add4b18fb80",
- "x-ms-request-id": "20751515-b002-001b-2721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "744a6ad7-2276-17d5-03fe-9add4b18fb80"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableg00e3nvj",
"value": [
{
- "odata.type": "chrissscratch.testtableg00e3nvj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg00e3nvj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A30.5347611Z\u0027\u0022",
- "odata.editLink": "testtableg00e3nvj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A03%3A43.3536520Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:30.5347611Z",
+ "StringTypeProperty": "This is the original",
"SomeStringProperty": "This changed due to a matching Etag",
- "StringTypeProperty": "This is the original"
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T21:03:43.3536520Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableg00e3nvj\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableg00e3nvj\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-43cca9f43ead704ba887f2c16f64e08a-e0ea1b145f06594e-00",
+ "traceparent": "00-b99adeda51c59942ae052035087d987f-1c24a0740b361b4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c82213ba665ba87a582df913d041ae3e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:30 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:03:43 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:30 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c82213ba665ba87a582df913d041ae3e",
- "x-ms-request-id": "2075151c-b002-001b-2e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 21:03:42 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "c82213ba-665b-a87a-582d-f913d041ae3e"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "344015580",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityCanBeUpserted.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityCanBeUpserted.json
index 13201c97633a..1955d6e46864 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityCanBeUpserted.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityCanBeUpserted.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8ba8bcb1aa760b4ca5cf141eda78c146-08d65b44839f1946-00",
+ "traceparent": "00-4ba12388a984da429ee0943668d13316-478dcdd61846024e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "73962defbd44fec86760fb621a7dfdec",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:07 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:06 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable0d5myo2r\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:49 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A49.4678024Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable0d5myo2r\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "73962defbd44fec86760fb621a7dfdec",
- "x-ms-request-id": "2074fe57-b002-001b-3a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "73962def-bd44-fec8-6760-fb621a7dfdec"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable0d5myo2r\u0027)",
- "odata.editLink": "Tables(\u0027testtable0d5myo2r\u0027)",
- "TableName": "testtable0d5myo2r"
+ "TableName": "testtable0d5myo2r",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable0d5myo2r(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable0d5myo2r(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "88",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-cf57959caf7e82469d79d24a2bd73a54-b23dd07071542747-00",
+ "traceparent": "00-511920c433ea0a41bd0daafc04d88afa-287717c42517d346-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "19e4936c743a1b7be64db399df575476",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:07 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -70,200 +63,159 @@
},
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:06 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A07.0702317Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "19e4936c743a1b7be64db399df575476",
- "x-ms-request-id": "2074fe66-b002-001b-4521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:49 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A50.0903944Z\u0027\u0022",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "19e4936c-743a-1b7b-e64d-b399df575476"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable0d5myo2r()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable0d5myo2r()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2b4dc4b7073d6d197cf88cebf3b948e6",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:07 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:06 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:49 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "2b4dc4b7073d6d197cf88cebf3b948e6",
- "x-ms-request-id": "2074fe71-b002-001b-4f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "2b4dc4b7-073d-6d19-7cf8-8cebf3b948e6"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable0d5myo2r",
"value": [
{
- "odata.type": "chrissscratch.testtable0d5myo2r",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable0d5myo2r(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A07.0702317Z\u0027\u0022",
- "odata.editLink": "testtable0d5myo2r(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A50.0903944Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
+ "SomeStringProperty": "This is the original",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:07.0702317Z",
- "SomeStringProperty": "This is the original"
+ "Timestamp": "2020-07-17T19:34:50.0903944Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable0d5myo2r(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable0d5myo2r(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
- "Content-Length": "536",
+ "Content-Length": "256",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-89c7edfaef87ba479e9f89260ab917b2-97b0f869c0cac240-00",
+ "traceparent": "00-d73bd3ec2bdbc44b9c79a3ad250d42ed-fd84e2f49e02d34f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "abb21daec8feb9b51b575e7015658709",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:07 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
- "odata.type": "chrissscratch.testtable0d5myo2r",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable0d5myo2r(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A07.0702317Z\u0027\u0022",
- "odata.editLink": "testtable0d5myo2r(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A50.0903944Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp": "2020-07-14T20:56:07.0702317Z",
- "Timestamp@odata.type": "Edm.DateTime",
- "SomeStringProperty": "This is new and improved!"
+ "SomeStringProperty": "This is new and improved!",
+ "Timestamp": "2020-07-17T19:34:50.0903944Z",
+ "Timestamp@odata.type": "Edm.DateTime"
},
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:06 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A07.1593045Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "abb21daec8feb9b51b575e7015658709",
- "x-ms-request-id": "2074fe7a-b002-001b-5721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:49 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A50.2417416Z\u0027\u0022",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "abb21dae-c8fe-b9b5-1b57-5e7015658709"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable0d5myo2r()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable0d5myo2r()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b863eba7c0af65407a779c41e78f282d",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:07 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:07 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:49 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "b863eba7c0af65407a779c41e78f282d",
- "x-ms-request-id": "2074fe81-b002-001b-5e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "b863eba7-c0af-6540-7a77-9c41e78f282d"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable0d5myo2r",
"value": [
{
- "odata.type": "chrissscratch.testtable0d5myo2r",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable0d5myo2r(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A07.1593045Z\u0027\u0022",
- "odata.editLink": "testtable0d5myo2r(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A50.2417416Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
+ "SomeStringProperty": "This is new and improved!",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:07.1593045Z",
- "SomeStringProperty": "This is new and improved!"
+ "Timestamp": "2020-07-17T19:34:50.2417416Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable0d5myo2r\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable0d5myo2r\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-51704174080df0409df9734d38c8d685-5b412dee0de2014c-00",
+ "traceparent": "00-aa964248953b184b9e03a0193c685e86-9c1acb3805e9d441-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c2ebcc05a8a5ee770f9310e6a9a85817",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:07 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:07 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c2ebcc05a8a5ee770f9310e6a9a85817",
- "x-ms-request-id": "2074fe8e-b002-001b-6a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:34:49 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "c2ebcc05-a8a5-ee77-0f93-10e6a9a85817"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1904516550",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityCanBeUpsertedAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityCanBeUpsertedAsync.json
index 2f7d00fa55b9..7ac7309c160f 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityCanBeUpsertedAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityCanBeUpsertedAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6e7dd2c30ab92c48a9ab4d47d385b9e8-4a80370e742a1742-00",
+ "traceparent": "00-f315f48fa812ae48a6eff70dfee3586e-aaf13cc2aeaabc49-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a4eeee75937f70f7d44d59d1babaf4b1",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:30 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:30 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablek5jkxq24\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:37 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A37.0369032Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablek5jkxq24\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a4eeee75937f70f7d44d59d1babaf4b1",
- "x-ms-request-id": "20751526-b002-001b-3821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "a4eeee75-937f-70f7-d44d-59d1babaf4b1"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablek5jkxq24\u0027)",
- "odata.editLink": "Tables(\u0027testtablek5jkxq24\u0027)",
- "TableName": "testtablek5jkxq24"
+ "TableName": "testtablek5jkxq24",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablek5jkxq24(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablek5jkxq24(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "88",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-eceb8674ba7f114baeac7ac0ebce0895-c05e848436312a47-00",
+ "traceparent": "00-da6099097addb44ca6c5c66a542089d3-7534804681ace94a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6b7ad9d613054422e9968267b729035a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:30 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -70,200 +63,159 @@
},
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:30 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A30.7039018Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "6b7ad9d613054422e9968267b729035a",
- "x-ms-request-id": "20751531-b002-001b-4121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:37 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A37.6092168Z\u0027\u0022",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "6b7ad9d6-1305-4422-e996-8267b729035a"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablek5jkxq24()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablek5jkxq24()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "095f48fe4988654707ffb92fafc37ca4",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:31 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:38 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:30 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:37 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "095f48fe4988654707ffb92fafc37ca4",
- "x-ms-request-id": "20751537-b002-001b-4721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "095f48fe-4988-6547-07ff-b92fafc37ca4"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablek5jkxq24",
"value": [
{
- "odata.type": "chrissscratch.testtablek5jkxq24",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablek5jkxq24(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A30.7039018Z\u0027\u0022",
- "odata.editLink": "testtablek5jkxq24(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A37.6092168Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
+ "SomeStringProperty": "This is the original",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:30.7039018Z",
- "SomeStringProperty": "This is the original"
+ "Timestamp": "2020-07-17T19:35:37.6092168Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablek5jkxq24(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablek5jkxq24(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
- "Content-Length": "536",
+ "Content-Length": "256",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-37d36c6f9b4434418c393e9d5e08a20f-0b88a432b7a9bc4f-00",
+ "traceparent": "00-8c5e055971309147a1f1a10e78b50597-6ed376061889de45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "07fa09547e96da6fcb5f96fc74081d24",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:31 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:38 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
- "odata.type": "chrissscratch.testtablek5jkxq24",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablek5jkxq24(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A30.7039018Z\u0027\u0022",
- "odata.editLink": "testtablek5jkxq24(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A37.6092168Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp": "2020-07-14T20:56:30.7039018Z",
- "Timestamp@odata.type": "Edm.DateTime",
- "SomeStringProperty": "This is new and improved!"
+ "SomeStringProperty": "This is new and improved!",
+ "Timestamp": "2020-07-17T19:35:37.6092168Z",
+ "Timestamp@odata.type": "Edm.DateTime"
},
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:30 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A30.7849688Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "07fa09547e96da6fcb5f96fc74081d24",
- "x-ms-request-id": "20751542-b002-001b-5221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:37 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A37.7524744Z\u0027\u0022",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "07fa0954-7e96-da6f-cb5f-96fc74081d24"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablek5jkxq24()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablek5jkxq24()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "72bc7656a8948c75921464055af29525",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:31 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:38 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:30 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:37 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "72bc7656a8948c75921464055af29525",
- "x-ms-request-id": "2075154e-b002-001b-5c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "72bc7656-a894-8c75-9214-64055af29525"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablek5jkxq24",
"value": [
{
- "odata.type": "chrissscratch.testtablek5jkxq24",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablek5jkxq24(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A30.7849688Z\u0027\u0022",
- "odata.editLink": "testtablek5jkxq24(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A37.7524744Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
+ "SomeStringProperty": "This is new and improved!",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:30.7849688Z",
- "SomeStringProperty": "This is new and improved!"
+ "Timestamp": "2020-07-17T19:35:37.7524744Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablek5jkxq24\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablek5jkxq24\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-ccdfe2efedfa2e40af7a9cdddd56ebfd-95c74722d4e30447-00",
+ "traceparent": "00-a587ed96c67a75408c93079980507d29-3f9811650955fd4b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ad13dd1afb2f80c3d8853e28b34af0fe",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:31 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:38 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:30 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ad13dd1afb2f80c3d8853e28b34af0fe",
- "x-ms-request-id": "2075155f-b002-001b-6c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:35:37 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "ad13dd1a-fb2f-80c3-d885-3e28b34af0fe"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1683442861",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityDeleteRespectsEtag.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityDeleteRespectsEtag.json
index 91a3b46f37c6..a5fd5f1ca523 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityDeleteRespectsEtag.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityDeleteRespectsEtag.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d8bc830bc0710a4d89aaa6a81209a7c4-e7292341c896d547-00",
+ "traceparent": "00-b6e02c2ff52b5b47a6080d92b7890937-7d73883739a49a4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b903f1d10763767cecfc37dd34b1e596",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:07 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:07 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablexzo4cb8p\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:51 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A50.7419656Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablexzo4cb8p\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "b903f1d10763767cecfc37dd34b1e596",
- "x-ms-request-id": "2074fe97-b002-001b-7321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "b903f1d1-0763-767c-ecfc-37dd34b1e596"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablexzo4cb8p\u0027)",
- "odata.editLink": "Tables(\u0027testtablexzo4cb8p\u0027)",
- "TableName": "testtablexzo4cb8p"
+ "TableName": "testtablexzo4cb8p",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablexzo4cb8p(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablexzo4cb8p(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "88",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-16c1089525b6d14c868fa9c921b96459-abfc5a22d19d1746-00",
+ "traceparent": "00-c35cf7b55c475145a22249e634ce435b-396818237b43ab49-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7416c8b1f3dad0d0737c01940e37146a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:07 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -70,154 +63,126 @@
},
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:07 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A07.3584711Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "7416c8b1f3dad0d0737c01940e37146a",
- "x-ms-request-id": "2074fea0-b002-001b-7921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:51 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A51.3910792Z\u0027\u0022",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "7416c8b1-f3da-d0d0-737c-01940e37146a"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablexzo4cb8p()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablexzo4cb8p()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1cdccd32c06b8de3bf7d292604e98a4d",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:07 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:07 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:51 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "1cdccd32c06b8de3bf7d292604e98a4d",
- "x-ms-request-id": "2074feaa-b002-001b-0221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "1cdccd32-c06b-8de3-bf7d-292604e98a4d"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablexzo4cb8p",
"value": [
{
- "odata.type": "chrissscratch.testtablexzo4cb8p",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablexzo4cb8p(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A07.3584711Z\u0027\u0022",
- "odata.editLink": "testtablexzo4cb8p(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A51.3910792Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
+ "SomeStringProperty": "This is the original",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:07.3584711Z",
- "SomeStringProperty": "This is the original"
+ "Timestamp": "2020-07-17T19:34:51.3910792Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablexzo4cb8p(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablexzo4cb8p(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "DELETE",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"If-Match": "*",
- "traceparent": "00-90c182854a275d498a2f2846d23474b3-98ad5f2bd4d39d40-00",
+ "traceparent": "00-fdefe4ce26a4b54fa2939b9f11db95e7-7c85f1599a640446-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0f0afe0fcf80fef732e8f08b7ae1dec5",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:07 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:07 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "0f0afe0fcf80fef732e8f08b7ae1dec5",
- "x-ms-request-id": "2074feb2-b002-001b-0a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:34:51 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "0f0afe0f-cf80-fef7-32e8-f08b7ae1dec5"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablexzo4cb8p()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablexzo4cb8p()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e40173227909f05fe489b45cc9a9cc89",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:07 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:07 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:51 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "e40173227909f05fe489b45cc9a9cc89",
- "x-ms-request-id": "2074feba-b002-001b-1221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "e4017322-7909-f05f-e489-b45cc9a9cc89"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablexzo4cb8p",
"value": []
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablexzo4cb8p(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablexzo4cb8p(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "88",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-93b6701a45574a4fb61fcbfd57a6e7bf-e28bf9225cccf048-00",
+ "traceparent": "00-23c1f75194f06e40802684f1eaecfc10-92552f801362c047-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1085b3f1052c63ead5dde983cf5812de",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:07 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -228,219 +193,171 @@
},
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:07 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A07.517603Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "1085b3f1052c63ead5dde983cf5812de",
- "x-ms-request-id": "2074fec2-b002-001b-1921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:51 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A51.6831240Z\u0027\u0022",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "1085b3f1-052c-63ea-d5dd-e983cf5812de"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablexzo4cb8p()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablexzo4cb8p()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9104649fa6e795449e1a2af61a9a3588",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:07 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:07 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:51 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "9104649fa6e795449e1a2af61a9a3588",
- "x-ms-request-id": "2074fecb-b002-001b-2221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "9104649f-a6e7-9544-9e1a-2af61a9a3588"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablexzo4cb8p",
"value": [
{
- "odata.type": "chrissscratch.testtablexzo4cb8p",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablexzo4cb8p(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A07.517603Z\u0027\u0022",
- "odata.editLink": "testtablexzo4cb8p(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A51.6831240Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
+ "SomeStringProperty": "This is the original",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:07.517603Z",
- "SomeStringProperty": "This is the original"
+ "Timestamp": "2020-07-17T19:34:51.6831240Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablexzo4cb8p(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablexzo4cb8p(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "DELETE",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A07.3584711Z\u0027\u0022",
- "traceparent": "00-9de8d158aae8ec49ba051c7a352f9997-5b0a4758a9e3804c-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T19%3A34%3A51.3910792Z\u0027\u0022",
+ "traceparent": "00-1ddbbd089eccd0408d7472ff56808685-1fbdb1a2abf64947-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c799671ccd5b1d98899e0e2b8fdc208c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:07 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 412,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:07 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json; odata=fullmetadata",
+ "Date": "Fri, 17 Jul 2020 19:34:51 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c799671ccd5b1d98899e0e2b8fdc208c",
- "x-ms-request-id": "2074fed6-b002-001b-2d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "c799671c-cd5b-1d98-899e-0e2b8fdc208c"
},
- "ResponseBody": {
- "odata.error": {
- "code": "UpdateConditionNotSatisfied",
- "message": {
- "lang": "en-US",
- "value": "The update condition specified in the request was not satisfied.\nRequestId:2074fed6-b002-001b-2d21-5aea7a000000\nTime:2020-07-14T20:56:07.6007096Z"
- }
- }
- }
+ "ResponseBody": [
+ "{\u0022odata.error\u0022:{\u0022code\u0022:\u0022UpdateConditionNotSatisfied\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-us\u0022,\u0022value\u0022:\u0022The update condition specified in the request was not satisfied.\\nRequestID:c799671c-cd5b-1d98-899e-0e2b8fdc208c\\n\u0022}}}\r\n"
+ ]
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablexzo4cb8p(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablexzo4cb8p(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "DELETE",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A07.517603Z\u0027\u0022",
- "traceparent": "00-6b7cb48ca8e4d34d9ee1ac5c88a4b16d-2970648bc3804e4c-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T19%3A34%3A51.6831240Z\u0027\u0022",
+ "traceparent": "00-dbb522ed296a8c489cf951a5c7bf90f0-c9290cf0f876ee44-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "64bdd6773ba54aa16ff07112daf3483b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:07 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:07 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "64bdd6773ba54aa16ff07112daf3483b",
- "x-ms-request-id": "2074fee7-b002-001b-3e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:34:51 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "64bdd677-3ba5-4aa1-6ff0-7112daf3483b"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablexzo4cb8p()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablexzo4cb8p()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "686760a84bbed182cbe70749971805c2",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:07 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:07 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:51 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "686760a84bbed182cbe70749971805c2",
- "x-ms-request-id": "2074feed-b002-001b-4321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "686760a8-4bbe-d182-cbe7-0749971805c2"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablexzo4cb8p",
"value": []
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablexzo4cb8p\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablexzo4cb8p\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-73c20c996b20e84fa98cce5d8a4c66cc-25219b551b58bb41-00",
+ "traceparent": "00-1d8c3dd4ae3e1c4d9f36d3d58fccc3f4-7ebc249d73828a45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "447f9ef9d0dde0e3c54f576b5b864295",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:08 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:07 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "447f9ef9d0dde0e3c54f576b5b864295",
- "x-ms-request-id": "2074fef6-b002-001b-4c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:34:51 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "447f9ef9-d0dd-e0e3-c54f-576b5b864295"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1822279371",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityDeleteRespectsEtagAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityDeleteRespectsEtagAsync.json
index 63e502845062..3af1645aa0d8 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityDeleteRespectsEtagAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityDeleteRespectsEtagAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-559d68fd5d33d04b9e4939d546583e2b-940e92d3fb8e034f-00",
+ "traceparent": "00-cda53bc33c1e1147be5a0d4b2b198fbd-b5d7eecbd11a414b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "276a499b4e745dc89fb5d6977332608e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:31 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:44 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:30 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable33jki576\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:45 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A44.6990856Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable33jki576\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "276a499b4e745dc89fb5d6977332608e",
- "x-ms-request-id": "20751571-b002-001b-7e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "276a499b-4e74-5dc8-9fb5-d6977332608e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable33jki576\u0027)",
- "odata.editLink": "Tables(\u0027testtable33jki576\u0027)",
- "TableName": "testtable33jki576"
+ "TableName": "testtable33jki576",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable33jki576(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable33jki576(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "88",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-bd5739fb3f363a469d9d24a0345476a1-745da641085e9b45-00",
+ "traceparent": "00-a3f6b41ae2865341b7f0be350e7c74f2-c1c7671a5c73ed4b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "95d4420bcf4413848438045e3094ec25",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:31 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:45 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -70,154 +63,126 @@
},
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:30 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A30.9561116Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "95d4420bcf4413848438045e3094ec25",
- "x-ms-request-id": "20751581-b002-001b-0d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:45 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A45.4721032Z\u0027\u0022",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "95d4420b-cf44-1384-8438-045e3094ec25"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable33jki576()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable33jki576()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1bd91dba6b51018cc23c79d4d4161f70",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:31 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:45 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:30 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:45 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "1bd91dba6b51018cc23c79d4d4161f70",
- "x-ms-request-id": "20751586-b002-001b-1221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "1bd91dba-6b51-018c-c23c-79d4d4161f70"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable33jki576",
"value": [
{
- "odata.type": "chrissscratch.testtable33jki576",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable33jki576(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A30.9561116Z\u0027\u0022",
- "odata.editLink": "testtable33jki576(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A45.4721032Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
+ "SomeStringProperty": "This is the original",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:30.9561116Z",
- "SomeStringProperty": "This is the original"
+ "Timestamp": "2020-07-17T20:17:45.4721032Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable33jki576(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable33jki576(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "DELETE",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"If-Match": "*",
- "traceparent": "00-0d9682c5d69b7b46a36ac7bac08b6e46-699dd44c11e5e940-00",
+ "traceparent": "00-3ca3f074ce124146a314e92fac7275ac-c1af995dccfc8e4d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4a6367241cd17a56e514ef16c3fe6f20",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:31 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:45 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:30 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "4a6367241cd17a56e514ef16c3fe6f20",
- "x-ms-request-id": "20751590-b002-001b-1c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:17:45 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "4a636724-1cd1-7a56-e514-ef16c3fe6f20"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable33jki576()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable33jki576()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "15b872ea7286a048b5d3d20755af3e6d",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:31 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:30 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:45 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "15b872ea7286a048b5d3d20755af3e6d",
- "x-ms-request-id": "2075159b-b002-001b-2721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "15b872ea-7286-a048-b5d3-d20755af3e6d"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable33jki576",
"value": []
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable33jki576(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable33jki576(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "88",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-00d47076db6c21479734660a6e17387a-5fba131e82cb3a4d-00",
+ "traceparent": "00-cba149cdfe02cf48b763c136e8e57290-8cc78014bac8db49-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c93a9418a1319d54c65f353c7b763ec3",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:31 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -228,219 +193,171 @@
},
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:30 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A31.1162448Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c93a9418a1319d54c65f353c7b763ec3",
- "x-ms-request-id": "207515a4-b002-001b-2e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:45 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A45.8843656Z\u0027\u0022",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "c93a9418-a131-9d54-c65f-353c7b763ec3"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable33jki576()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable33jki576()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "61ea58cd0a5db1e91fc394fd494f2435",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:31 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:30 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:45 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "61ea58cd0a5db1e91fc394fd494f2435",
- "x-ms-request-id": "207515aa-b002-001b-3321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "61ea58cd-0a5d-b1e9-1fc3-94fd494f2435"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable33jki576",
"value": [
{
- "odata.type": "chrissscratch.testtable33jki576",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable33jki576(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A31.1162448Z\u0027\u0022",
- "odata.editLink": "testtable33jki576(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A45.8843656Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
+ "SomeStringProperty": "This is the original",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:31.1162448Z",
- "SomeStringProperty": "This is the original"
+ "Timestamp": "2020-07-17T20:17:45.8843656Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable33jki576(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable33jki576(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "DELETE",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A30.9561116Z\u0027\u0022",
- "traceparent": "00-5082ff0891a9824fb8831a7df2e74f3b-f790de99180f2c4d-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T20%3A17%3A45.4721032Z\u0027\u0022",
+ "traceparent": "00-cf6ca77ed9bfa34887ef899fe2f5e7f3-27887a5571628447-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2ffd82d5a6c348ef1d1b4f273c0b243f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:31 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 412,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:30 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json; odata=fullmetadata",
+ "Date": "Fri, 17 Jul 2020 20:17:45 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "2ffd82d5a6c348ef1d1b4f273c0b243f",
- "x-ms-request-id": "207515b5-b002-001b-3d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "2ffd82d5-a6c3-48ef-1d1b-4f273c0b243f"
},
- "ResponseBody": {
- "odata.error": {
- "code": "UpdateConditionNotSatisfied",
- "message": {
- "lang": "en-US",
- "value": "The update condition specified in the request was not satisfied.\nRequestId:207515b5-b002-001b-3d21-5aea7a000000\nTime:2020-07-14T20:56:31.1963859Z"
- }
- }
- }
+ "ResponseBody": [
+ "{\u0022odata.error\u0022:{\u0022code\u0022:\u0022UpdateConditionNotSatisfied\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-us\u0022,\u0022value\u0022:\u0022The update condition specified in the request was not satisfied.\\nRequestID:2ffd82d5-a6c3-48ef-1d1b-4f273c0b243f\\n\u0022}}}\r\n"
+ ]
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable33jki576(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable33jki576(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "DELETE",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A31.1162448Z\u0027\u0022",
- "traceparent": "00-198748692d02964dbb0da431fca6f57e-c0cc9520cc3c0246-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T20%3A17%3A45.8843656Z\u0027\u0022",
+ "traceparent": "00-3083a5ce9c7e084c894b4a907b28ed9f-84ddd534f37db147-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "fc390f95ddc50e0fab89aa6d0d565476",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:31 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:31 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "fc390f95ddc50e0fab89aa6d0d565476",
- "x-ms-request-id": "207515b8-b002-001b-4021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:17:45 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "fc390f95-ddc5-0e0f-ab89-aa6d0d565476"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable33jki576()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable33jki576()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f967003a0e78270069a14442bac17513",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:31 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:31 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:46 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "f967003a0e78270069a14442bac17513",
- "x-ms-request-id": "207515bf-b002-001b-4721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "f967003a-0e78-2700-69a1-4442bac17513"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable33jki576",
"value": []
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable33jki576\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable33jki576\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-ca7675798b7387459de4d34077a866d1-aad4a3db545b1042-00",
+ "traceparent": "00-3e56f73db4ffc042b5c77ac98d06e4cf-0012595c3f16df4b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3a68549f2815f87072ee833afb823bc7",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:31 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:31 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "3a68549f2815f87072ee833afb823bc7",
- "x-ms-request-id": "207515cb-b002-001b-5321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:17:46 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "3a68549f-2815-f870-72ee-833afb823bc7"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1349879286",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityMergeDoesPartialPropertyUpdates.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityMergeDoesPartialPropertyUpdates.json
index ba4c2e5f2e30..3f92e44d2b74 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityMergeDoesPartialPropertyUpdates.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityMergeDoesPartialPropertyUpdates.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-5e22e0bcbe1d0b408d02394daba5bee3-052586b578b8db4b-00",
+ "traceparent": "00-94bdb73f3df98c429351ebbcaa5e31d2-e26ca3626d2ea54a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9236a22d101a015a89c7124831509a8d",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:08 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:16:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,331 +24,49 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:07 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable4bf0nn80\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "9236a22d101a015a89c7124831509a8d",
- "x-ms-request-id": "2074ff05-b002-001b-5b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable4bf0nn80\u0027)",
- "odata.editLink": "Tables(\u0027testtable4bf0nn80\u0027)",
- "TableName": "testtable4bf0nn80"
- }
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable4bf0nn80(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
- "RequestMethod": "PUT",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "Content-Length": "88",
- "Content-Type": "application/json",
- "DataServiceVersion": "3.0",
- "traceparent": "00-e87108667af1604db3a2b1fb7af6698d-b7ddc2ce1aa31a43-00",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "69618bebd442043924d20d5ecbf79b67",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:08 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": {
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "SomeStringProperty": "This is the original"
- },
- "StatusCode": 204,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:07 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A07.8148507Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "69618bebd442043924d20d5ecbf79b67",
- "x-ms-request-id": "2074ff10-b002-001b-6421-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": []
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable4bf0nn80()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "DataServiceVersion": "3.0",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "317123b9973d0853ac3c0ef459bcfefd",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:08 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:07 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "317123b9973d0853ac3c0ef459bcfefd",
- "x-ms-request-id": "2074ff19-b002-001b-6d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable4bf0nn80",
- "value": [
- {
- "odata.type": "chrissscratch.testtable4bf0nn80",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable4bf0nn80(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A07.8148507Z\u0027\u0022",
- "odata.editLink": "testtable4bf0nn80(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:07.8148507Z",
- "SomeStringProperty": "This is the original"
- }
- ]
- }
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable4bf0nn80(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
- "RequestMethod": "PATCH",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "Content-Length": "80",
- "Content-Type": "application/json",
- "DataServiceVersion": "3.0",
- "traceparent": "00-753bd811530c2043bfd09e03918b5f90-3e8c47e7301b394b-00",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "33e836b53fa1ceeafc8ef53d4ca2bdd0",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:08 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": {
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "MergedProperty": "This was merged!"
- },
- "StatusCode": 204,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:07 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A07.9029239Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "33e836b53fa1ceeafc8ef53d4ca2bdd0",
- "x-ms-request-id": "2074ff21-b002-001b-7521-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": []
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable4bf0nn80()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "DataServiceVersion": "3.0",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "2c77e0775c29537e3759bd06c545aa68",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:08 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:07 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "2c77e0775c29537e3759bd06c545aa68",
- "x-ms-request-id": "2074ff29-b002-001b-7d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable4bf0nn80",
- "value": [
- {
- "odata.type": "chrissscratch.testtable4bf0nn80",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable4bf0nn80(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A07.9029239Z\u0027\u0022",
- "odata.editLink": "testtable4bf0nn80(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:07.9029239Z",
- "MergedProperty": "This was merged!",
- "SomeStringProperty": "This is the original"
- }
- ]
- }
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable4bf0nn80(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
- "RequestMethod": "PATCH",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "Content-Length": "89",
"Content-Type": "application/json",
- "DataServiceVersion": "3.0",
- "traceparent": "00-e1c2839341769b47bf8d1f1ef2f7274b-20387e0637c66149-00",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "95a810d4670f7ac639a334afa116bb09",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:08 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": {
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "MergedProperty": "merged value was updated!"
- },
- "StatusCode": 204,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:07 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A07.9889947Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "95a810d4670f7ac639a334afa116bb09",
- "x-ms-request-id": "2074ff31-b002-001b-0521-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": []
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable4bf0nn80()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "DataServiceVersion": "3.0",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "787d3e7ed14559d3b794fb4782e408b7",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:08 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:07 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Date": "Fri, 17 Jul 2020 20:16:50 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A16%3A50.5224200Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable4bf0nn80\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "787d3e7ed14559d3b794fb4782e408b7",
- "x-ms-request-id": "2074ff3a-b002-001b-0e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "9236a22d-101a-015a-89c7-124831509a8d"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable4bf0nn80",
- "value": [
- {
- "odata.type": "chrissscratch.testtable4bf0nn80",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable4bf0nn80(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A07.9889947Z\u0027\u0022",
- "odata.editLink": "testtable4bf0nn80(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:07.9889947Z",
- "MergedProperty": "merged value was updated!",
- "SomeStringProperty": "This is the original"
- }
- ]
+ "TableName": "testtable4bf0nn80",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable4bf0nn80\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable4bf0nn80\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-728a6446f7d14d4692656a96faff9aa7-36880ed055f4db40-00",
+ "traceparent": "00-042c6fec73a1f744b28dfdff88547de9-014837274647cd4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "3c688de328fa0fc01afcf38627cfb221",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:08 GMT",
+ "x-ms-client-request-id": "618bebbc426939d40424d20d5ecbf79b",
+ "x-ms-date": "Fri, 17 Jul 2020 20:16:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:07 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "3c688de328fa0fc01afcf38627cfb221",
- "x-ms-request-id": "2074ff42-b002-001b-1621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:16:50 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "618bebbc-4269-39d4-0424-d20d5ecbf79b"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1120922963",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityMergeDoesPartialPropertyUpdatesAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityMergeDoesPartialPropertyUpdatesAsync.json
index 1b0cf2b58993..2a6719ea05e9 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityMergeDoesPartialPropertyUpdatesAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityMergeDoesPartialPropertyUpdatesAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-7001f83758febf4ab04c24eaad2ec167-9dad3967c7f7af4b-00",
+ "traceparent": "00-ea043a025f1a674d88ec0cdd52c7bed2-932d2ab6799fb245-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2895f2c10eb768788ca1852056aa272d",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:31 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,331 +24,49 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:31 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable8l6hz07y\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "2895f2c10eb768788ca1852056aa272d",
- "x-ms-request-id": "207515d4-b002-001b-5c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable8l6hz07y\u0027)",
- "odata.editLink": "Tables(\u0027testtable8l6hz07y\u0027)",
- "TableName": "testtable8l6hz07y"
- }
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable8l6hz07y(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
- "RequestMethod": "PUT",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "Content-Length": "88",
- "Content-Type": "application/json",
- "DataServiceVersion": "3.0",
- "traceparent": "00-ce4dd547c531dc45bb92edf2661d52f9-523ee92a1a0df542-00",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "c0f6950ac8184d6d20ba185363dd55da",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:31 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": {
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "SomeStringProperty": "This is the original"
- },
- "StatusCode": 204,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:31 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A31.4295054Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c0f6950ac8184d6d20ba185363dd55da",
- "x-ms-request-id": "207515dc-b002-001b-6221-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": []
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable8l6hz07y()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "DataServiceVersion": "3.0",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "56340ccc114a7de7ecac594172c99926",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:31 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:31 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "56340ccc114a7de7ecac594172c99926",
- "x-ms-request-id": "207515f7-b002-001b-7a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable8l6hz07y",
- "value": [
- {
- "odata.type": "chrissscratch.testtable8l6hz07y",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable8l6hz07y(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A31.4295054Z\u0027\u0022",
- "odata.editLink": "testtable8l6hz07y(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:31.4295054Z",
- "SomeStringProperty": "This is the original"
- }
- ]
- }
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable8l6hz07y(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
- "RequestMethod": "PATCH",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "Content-Length": "80",
- "Content-Type": "application/json",
- "DataServiceVersion": "3.0",
- "traceparent": "00-5c2246f7c8d9634cb2d25bd21267971d-05b284d82f79e444-00",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "34c667150d7429a927db97545f1428c4",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:31 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": {
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "MergedProperty": "This was merged!"
- },
- "StatusCode": 204,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:31 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A31.5686233Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "34c667150d7429a927db97545f1428c4",
- "x-ms-request-id": "207515ff-b002-001b-0221-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": []
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable8l6hz07y()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "DataServiceVersion": "3.0",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "9d894630d6f3f825ad79d36b6f2bda57",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:31 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:31 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "9d894630d6f3f825ad79d36b6f2bda57",
- "x-ms-request-id": "20751601-b002-001b-0421-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable8l6hz07y",
- "value": [
- {
- "odata.type": "chrissscratch.testtable8l6hz07y",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable8l6hz07y(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A31.5686233Z\u0027\u0022",
- "odata.editLink": "testtable8l6hz07y(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:31.5686233Z",
- "MergedProperty": "This was merged!",
- "SomeStringProperty": "This is the original"
- }
- ]
- }
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable8l6hz07y(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
- "RequestMethod": "PATCH",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "Content-Length": "89",
"Content-Type": "application/json",
- "DataServiceVersion": "3.0",
- "traceparent": "00-a1e719f85a44b549864c2b2ef38dad0c-19637b1d24030c41-00",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "fc3df1212016be65630a2e6f7a931dd7",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:31 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": {
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "MergedProperty": "merged value was updated!"
- },
- "StatusCode": 204,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:31 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A31.649689Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "fc3df1212016be65630a2e6f7a931dd7",
- "x-ms-request-id": "2075160b-b002-001b-0d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": []
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable8l6hz07y()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "DataServiceVersion": "3.0",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "2c119583fb3f3f3341cd87fb393dbafb",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:31 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:31 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Date": "Fri, 17 Jul 2020 20:17:47 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A46.8161032Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable8l6hz07y\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "2c119583fb3f3f3341cd87fb393dbafb",
- "x-ms-request-id": "20751617-b002-001b-1921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "2895f2c1-0eb7-6878-8ca1-852056aa272d"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable8l6hz07y",
- "value": [
- {
- "odata.type": "chrissscratch.testtable8l6hz07y",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable8l6hz07y(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A31.649689Z\u0027\u0022",
- "odata.editLink": "testtable8l6hz07y(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:31.649689Z",
- "MergedProperty": "merged value was updated!",
- "SomeStringProperty": "This is the original"
- }
- ]
+ "TableName": "testtable8l6hz07y",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable8l6hz07y\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable8l6hz07y\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-c6e043cb7dadac4bb58c078ec2bc60aa-a273094010b4004c-00",
+ "traceparent": "00-ab908c1467db8841848e9c2da9d37f55-7e31678bd120974f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "6d3340002cd70fade0cb3ae8a7b67e19",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:32 GMT",
+ "x-ms-client-request-id": "f6950a7018c06dc84d20ba185363dd55",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:47 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:31 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "6d3340002cd70fade0cb3ae8a7b67e19",
- "x-ms-request-id": "2075161f-b002-001b-2121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:17:47 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "f6950a70-18c0-6dc8-4d20-ba185363dd55"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1355505478",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityMergeRespectsEtag.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityMergeRespectsEtag.json
index 4b870914a54f..4d79108042dc 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityMergeRespectsEtag.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityMergeRespectsEtag.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-64c5a6c22c2d67498d664dd0cba8ee7c-dd78ee82d353534c-00",
+ "traceparent": "00-02b86eb6b6dc244eaea249f30455d54c-aeb46506e53e0945-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d6ba7705190c35e88dae9a4284c6532c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:08 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:11 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,398 +24,49 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:07 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableq6v37yiv\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "d6ba7705190c35e88dae9a4284c6532c",
- "x-ms-request-id": "2074ff4f-b002-001b-2221-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableq6v37yiv\u0027)",
- "odata.editLink": "Tables(\u0027testtableq6v37yiv\u0027)",
- "TableName": "testtableq6v37yiv"
- }
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableq6v37yiv(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
- "RequestMethod": "PUT",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "Content-Length": "88",
- "Content-Type": "application/json",
- "DataServiceVersion": "3.0",
- "traceparent": "00-42c5e64f5763a84596929e9385b09d5e-f3241f8808210d41-00",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "c26b4785fdf2473cff10ce40799ecf72",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:08 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": {
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "SomeStringProperty": "This is the original"
- },
- "StatusCode": 204,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:07 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A08.1671446Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c26b4785fdf2473cff10ce40799ecf72",
- "x-ms-request-id": "2074ff58-b002-001b-2a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": []
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableq6v37yiv()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "DataServiceVersion": "3.0",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "f1a0354458ad4051ff21ebc62e73df79",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:08 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:08 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "f1a0354458ad4051ff21ebc62e73df79",
- "x-ms-request-id": "2074ff5d-b002-001b-2f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableq6v37yiv",
- "value": [
- {
- "odata.type": "chrissscratch.testtableq6v37yiv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableq6v37yiv(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A08.1671446Z\u0027\u0022",
- "odata.editLink": "testtableq6v37yiv(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:08.1671446Z",
- "SomeStringProperty": "This is the original"
- }
- ]
- }
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableq6v37yiv(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
- "RequestMethod": "PATCH",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "Content-Length": "536",
- "Content-Type": "application/json",
- "DataServiceVersion": "3.0",
- "If-Match": "*",
- "traceparent": "00-dc525fdd35461440882bab438ca3dfb4-cd3385e18f3bf04e-00",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "53a2794f3b4d79137d8f0c0919f51310",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:08 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": {
- "odata.type": "chrissscratch.testtableq6v37yiv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableq6v37yiv(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A08.1671446Z\u0027\u0022",
- "odata.editLink": "testtableq6v37yiv(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "Timestamp": "2020-07-14T20:56:08.1671446Z",
- "Timestamp@odata.type": "Edm.DateTime",
- "SomeStringProperty": "This is new and improved!"
- },
- "StatusCode": 204,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:08 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A08.2502124Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "53a2794f3b4d79137d8f0c0919f51310",
- "x-ms-request-id": "2074ff6c-b002-001b-3b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": []
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableq6v37yiv()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "DataServiceVersion": "3.0",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "9140d0ca3ab32d8ff62ac2d01276188c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:08 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:08 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "9140d0ca3ab32d8ff62ac2d01276188c",
- "x-ms-request-id": "2074ff77-b002-001b-4521-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableq6v37yiv",
- "value": [
- {
- "odata.type": "chrissscratch.testtableq6v37yiv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableq6v37yiv(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A08.2502124Z\u0027\u0022",
- "odata.editLink": "testtableq6v37yiv(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:08.2502124Z",
- "SomeStringProperty": "This is new and improved!"
- }
- ]
- }
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableq6v37yiv(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
- "RequestMethod": "PATCH",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "Content-Length": "546",
- "Content-Type": "application/json",
- "DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A08.1671446Z\u0027\u0022",
- "traceparent": "00-804a5e8c47a0af4a92cef13d239e779f-2d13e13ba016e24b-00",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "fff154317cfb09242127731d4b47270a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:08 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": {
- "odata.type": "chrissscratch.testtableq6v37yiv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableq6v37yiv(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A08.2502124Z\u0027\u0022",
- "odata.editLink": "testtableq6v37yiv(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "Timestamp": "2020-07-14T20:56:08.2502124Z",
- "Timestamp@odata.type": "Edm.DateTime",
- "SomeStringProperty": "This changed due to a matching Etag"
- },
- "StatusCode": 412,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:08 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "fff154317cfb09242127731d4b47270a",
- "x-ms-request-id": "2074ff80-b002-001b-4d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": {
- "odata.error": {
- "code": "UpdateConditionNotSatisfied",
- "message": {
- "lang": "en-US",
- "value": "The update condition specified in the request was not satisfied.\nRequestId:2074ff80-b002-001b-4d21-5aea7a000000\nTime:2020-07-14T20:56:08.3453321Z"
- }
- }
- }
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableq6v37yiv(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
- "RequestMethod": "PATCH",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "Content-Length": "546",
"Content-Type": "application/json",
- "DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A08.2502124Z\u0027\u0022",
- "traceparent": "00-b27db90e04611149a465033f1a970eba-d99fbb6ac48c6c42-00",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "5efbda0d4e3314c6e9755d2378426607",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:08 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": {
- "odata.type": "chrissscratch.testtableq6v37yiv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableq6v37yiv(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A08.2502124Z\u0027\u0022",
- "odata.editLink": "testtableq6v37yiv(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "Timestamp": "2020-07-14T20:56:08.2502124Z",
- "Timestamp@odata.type": "Edm.DateTime",
- "SomeStringProperty": "This changed due to a matching Etag"
- },
- "StatusCode": 204,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:08 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A08.3893277Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "5efbda0d4e3314c6e9755d2378426607",
- "x-ms-request-id": "2074ff89-b002-001b-5621-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": []
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableq6v37yiv()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "DataServiceVersion": "3.0",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "c5d8807614044e14ab366f8cc672e1ae",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:08 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:08 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Date": "Fri, 17 Jul 2020 20:17:12 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A12.2769928Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableq6v37yiv\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c5d8807614044e14ab366f8cc672e1ae",
- "x-ms-request-id": "2074ff8b-b002-001b-5821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "d6ba7705-190c-35e8-8dae-9a4284c6532c"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableq6v37yiv",
- "value": [
- {
- "odata.type": "chrissscratch.testtableq6v37yiv",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableq6v37yiv(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A08.3893277Z\u0027\u0022",
- "odata.editLink": "testtableq6v37yiv(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:08.3893277Z",
- "SomeStringProperty": "This changed due to a matching Etag"
- }
- ]
+ "TableName": "testtableq6v37yiv",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableq6v37yiv\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableq6v37yiv\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-a288eb151ceab04ca267742959527df1-15025d0dc4f0714c-00",
+ "traceparent": "00-68eb8b2a65af724397f65933ac41a54b-2e57cc4f531acc43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "37c3b803ba7be2598edc15861e0090df",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:08 GMT",
+ "x-ms-client-request-id": "6b47853df2c23cfd47ff10ce40799ecf",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:08 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "37c3b803ba7be2598edc15861e0090df",
- "x-ms-request-id": "2074ff9a-b002-001b-6721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:17:12 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "6b47853d-f2c2-3cfd-47ff-10ce40799ecf"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1024462870",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityMergeRespectsEtagAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityMergeRespectsEtagAsync.json
index fc62e3d41e4c..d51c0314d23e 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityMergeRespectsEtagAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityMergeRespectsEtagAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-da7c5b0fb6933d47b4f1bb044735193d-5c52c36627361c42-00",
+ "traceparent": "00-425dd4af38d8da499b91ed06c795fd0d-514424292f421149-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "27ffcee854e6debf59fe6bd9efe2b12b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:32 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:47 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,398 +24,49 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:31 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableusyze6ui\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "27ffcee854e6debf59fe6bd9efe2b12b",
- "x-ms-request-id": "20751627-b002-001b-2921-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableusyze6ui\u0027)",
- "odata.editLink": "Tables(\u0027testtableusyze6ui\u0027)",
- "TableName": "testtableusyze6ui"
- }
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableusyze6ui(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
- "RequestMethod": "PUT",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "Content-Length": "88",
- "Content-Type": "application/json",
- "DataServiceVersion": "3.0",
- "traceparent": "00-04f20c3fcf04774cb0887fe9f2097e63-cb19f639d1782a49-00",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "409d6db614021b9f2b79472bb2cdb92e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:32 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": {
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "SomeStringProperty": "This is the original"
- },
- "StatusCode": 204,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:31 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A31.8258359Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "409d6db614021b9f2b79472bb2cdb92e",
- "x-ms-request-id": "2075162f-b002-001b-3021-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": []
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableusyze6ui()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "DataServiceVersion": "3.0",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "d1de03dad9db5c591a9b31050b14ec8b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:32 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:31 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "d1de03dad9db5c591a9b31050b14ec8b",
- "x-ms-request-id": "2075163a-b002-001b-3b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableusyze6ui",
- "value": [
- {
- "odata.type": "chrissscratch.testtableusyze6ui",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableusyze6ui(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A31.8258359Z\u0027\u0022",
- "odata.editLink": "testtableusyze6ui(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:31.8258359Z",
- "SomeStringProperty": "This is the original"
- }
- ]
- }
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableusyze6ui(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
- "RequestMethod": "PATCH",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "Content-Length": "536",
- "Content-Type": "application/json",
- "DataServiceVersion": "3.0",
- "If-Match": "*",
- "traceparent": "00-18fe8f1d6d662846a207906a0b586c7b-185df2e5a84a344e-00",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "b936d6005ce0b9e55f0cbbdb78b3a630",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:32 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": {
- "odata.type": "chrissscratch.testtableusyze6ui",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableusyze6ui(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A31.8258359Z\u0027\u0022",
- "odata.editLink": "testtableusyze6ui(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "Timestamp": "2020-07-14T20:56:31.8258359Z",
- "Timestamp@odata.type": "Edm.DateTime",
- "SomeStringProperty": "This is new and improved!"
- },
- "StatusCode": 204,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:31 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A31.9109058Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "b936d6005ce0b9e55f0cbbdb78b3a630",
- "x-ms-request-id": "20751645-b002-001b-4621-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": []
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableusyze6ui()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "DataServiceVersion": "3.0",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "de14abb25ad2dc9814412667e39a0f16",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:32 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:31 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "de14abb25ad2dc9814412667e39a0f16",
- "x-ms-request-id": "20751650-b002-001b-5121-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableusyze6ui",
- "value": [
- {
- "odata.type": "chrissscratch.testtableusyze6ui",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableusyze6ui(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A31.9109058Z\u0027\u0022",
- "odata.editLink": "testtableusyze6ui(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:31.9109058Z",
- "SomeStringProperty": "This is new and improved!"
- }
- ]
- }
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableusyze6ui(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
- "RequestMethod": "PATCH",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "Content-Length": "546",
- "Content-Type": "application/json",
- "DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A31.8258359Z\u0027\u0022",
- "traceparent": "00-0d9e28017839ff47831319618de1c9c8-9dd515b004a44e4d-00",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "db2abb8cff967e4d1d2571cf1e7de367",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:32 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": {
- "odata.type": "chrissscratch.testtableusyze6ui",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableusyze6ui(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A31.9109058Z\u0027\u0022",
- "odata.editLink": "testtableusyze6ui(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "Timestamp": "2020-07-14T20:56:31.9109058Z",
- "Timestamp@odata.type": "Edm.DateTime",
- "SomeStringProperty": "This changed due to a matching Etag"
- },
- "StatusCode": 412,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:31 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "db2abb8cff967e4d1d2571cf1e7de367",
- "x-ms-request-id": "20751667-b002-001b-6721-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": {
- "odata.error": {
- "code": "UpdateConditionNotSatisfied",
- "message": {
- "lang": "en-US",
- "value": "The update condition specified in the request was not satisfied.\nRequestId:20751667-b002-001b-6721-5aea7a000000\nTime:2020-07-14T20:56:32.0290772Z"
- }
- }
- }
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableusyze6ui(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
- "RequestMethod": "PATCH",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "Content-Length": "546",
"Content-Type": "application/json",
- "DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A31.9109058Z\u0027\u0022",
- "traceparent": "00-363fdd594925db4a93da73b59ba1ffa4-4c6df666ad331e4c-00",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "605300f40effa6b83e5aa59e367ed5c5",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:32 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": {
- "odata.type": "chrissscratch.testtableusyze6ui",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableusyze6ui(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A31.9109058Z\u0027\u0022",
- "odata.editLink": "testtableusyze6ui(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "Timestamp": "2020-07-14T20:56:31.9109058Z",
- "Timestamp@odata.type": "Edm.DateTime",
- "SomeStringProperty": "This changed due to a matching Etag"
- },
- "StatusCode": 204,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:31 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A32.068037Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "605300f40effa6b83e5aa59e367ed5c5",
- "x-ms-request-id": "20751673-b002-001b-7221-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": []
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableusyze6ui()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "DataServiceVersion": "3.0",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "bc4ea5fcca88b2995d96c0ade8c8be96",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:32 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:31 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Date": "Fri, 17 Jul 2020 20:17:48 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A47.7314568Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableusyze6ui\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "bc4ea5fcca88b2995d96c0ade8c8be96",
- "x-ms-request-id": "20751681-b002-001b-8021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "27ffcee8-54e6-debf-59fe-6bd9efe2b12b"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableusyze6ui",
- "value": [
- {
- "odata.type": "chrissscratch.testtableusyze6ui",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableusyze6ui(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A32.068037Z\u0027\u0022",
- "odata.editLink": "testtableusyze6ui(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "1",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:32.068037Z",
- "SomeStringProperty": "This changed due to a matching Etag"
- }
- ]
+ "TableName": "testtableusyze6ui",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableusyze6ui\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableusyze6ui\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-ccb4ee1bdf738344ac9112dd9f60c8db-7f751c320ad86a48-00",
+ "traceparent": "00-9949c410bbe13a41b9650ef63401976d-06fd9c8d7781e842-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "e272be5eaf477e1603849d3c5aaf479f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:32 GMT",
+ "x-ms-client-request-id": "9d6db67302409f141b2b79472bb2cdb9",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:31 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "e272be5eaf477e1603849d3c5aaf479f",
- "x-ms-request-id": "2075168c-b002-001b-0b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:17:48 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "9d6db673-0240-9f14-1b2b-79472bb2cdb9"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1363187159",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityUpdateRespectsEtag.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityUpdateRespectsEtag.json
index 25608bb620a3..7370f86f7d29 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityUpdateRespectsEtag.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityUpdateRespectsEtag.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-39004746386bb64bb1c507bcdac35428-780b83777b0a214a-00",
+ "traceparent": "00-7c78fcc019d599488d9013d0f6fedf98-2d1497353b6b5d4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5bffaa2fb66ff882867a7207063a5924",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:08 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:55 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:08 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablefg4w5djl\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:54 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A54.7291144Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablefg4w5djl\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "5bffaa2fb66ff882867a7207063a5924",
- "x-ms-request-id": "2074ffa5-b002-001b-7221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "5bffaa2f-b66f-f882-867a-7207063a5924"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablefg4w5djl\u0027)",
- "odata.editLink": "Tables(\u0027testtablefg4w5djl\u0027)",
- "TableName": "testtablefg4w5djl"
+ "TableName": "testtablefg4w5djl",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablefg4w5djl(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablefg4w5djl(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "88",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-a063e15fcd55824d86e2da749b493d95-df6520113eed3a40-00",
+ "traceparent": "00-59240c1c55bf974badbd3d3db27ed287-84db3961dd96b345-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "33744f559fa3221abc8f8fa3af446847",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:08 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:55 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -70,351 +63,275 @@
},
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:08 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A08.5904955Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "33744f559fa3221abc8f8fa3af446847",
- "x-ms-request-id": "2074ffb2-b002-001b-7d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:54 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A55.3754632Z\u0027\u0022",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "33744f55-9fa3-221a-bc8f-8fa3af446847"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablefg4w5djl()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablefg4w5djl()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1bc2b06f2f33ade3b8f9d91104229308",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:08 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:55 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:08 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:54 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "1bc2b06f2f33ade3b8f9d91104229308",
- "x-ms-request-id": "2074ffba-b002-001b-0521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "1bc2b06f-2f33-ade3-b8f9-d91104229308"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablefg4w5djl",
"value": [
{
- "odata.type": "chrissscratch.testtablefg4w5djl",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablefg4w5djl(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A08.5904955Z\u0027\u0022",
- "odata.editLink": "testtablefg4w5djl(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A55.3754632Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
+ "SomeStringProperty": "This is the original",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:08.5904955Z",
- "SomeStringProperty": "This is the original"
+ "Timestamp": "2020-07-17T19:34:55.3754632Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablefg4w5djl(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablefg4w5djl(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
- "Content-Length": "536",
+ "Content-Length": "256",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
"If-Match": "*",
- "traceparent": "00-8d6809952eb94e478634e24fdbcd90ec-ac9ccddfcc430c4e-00",
+ "traceparent": "00-b9fe3b95f5ffbe4ab9d9328b993f271e-0f60a1b5c7e1c746-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3a67df7a331d0a8ce439b226f255d635",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:08 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:55 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
- "odata.type": "chrissscratch.testtablefg4w5djl",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablefg4w5djl(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A08.5904955Z\u0027\u0022",
- "odata.editLink": "testtablefg4w5djl(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A55.3754632Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp": "2020-07-14T20:56:08.5904955Z",
- "Timestamp@odata.type": "Edm.DateTime",
- "SomeStringProperty": "This is new and improved!"
+ "SomeStringProperty": "This is new and improved!",
+ "Timestamp": "2020-07-17T19:34:55.3754632Z",
+ "Timestamp@odata.type": "Edm.DateTime"
},
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:08 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A08.698585Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "3a67df7a331d0a8ce439b226f255d635",
- "x-ms-request-id": "2074ffc0-b002-001b-0b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:34:54 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A55.5182088Z\u0027\u0022",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "3a67df7a-331d-0a8c-e439-b226f255d635"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablefg4w5djl()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablefg4w5djl()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8997c00a0996251c6cc77aaac6081e9a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:09 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:55 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:08 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:55 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "8997c00a0996251c6cc77aaac6081e9a",
- "x-ms-request-id": "2074ffca-b002-001b-1521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "8997c00a-0996-251c-6cc7-7aaac6081e9a"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablefg4w5djl",
"value": [
{
- "odata.type": "chrissscratch.testtablefg4w5djl",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablefg4w5djl(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A08.698585Z\u0027\u0022",
- "odata.editLink": "testtablefg4w5djl(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A55.5182088Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
+ "SomeStringProperty": "This is new and improved!",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:08.698585Z",
- "SomeStringProperty": "This is new and improved!"
+ "Timestamp": "2020-07-17T19:34:55.5182088Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablefg4w5djl(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablefg4w5djl(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
- "Content-Length": "545",
+ "Content-Length": "266",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A08.5904955Z\u0027\u0022",
- "traceparent": "00-9e242e68dc2b5d4da75c7d84ba46ad37-94c2b27d9f9fe742-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T19%3A34%3A55.3754632Z\u0027\u0022",
+ "traceparent": "00-648445a92a8c56408d43a4821c71e874-a2521cdc80922440-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "cf2987fb2edc3b2924b736fa7cbcba63",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:09 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:56 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
- "odata.type": "chrissscratch.testtablefg4w5djl",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablefg4w5djl(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A08.698585Z\u0027\u0022",
- "odata.editLink": "testtablefg4w5djl(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A55.5182088Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp": "2020-07-14T20:56:08.6985850Z",
- "Timestamp@odata.type": "Edm.DateTime",
- "SomeStringProperty": "This changed due to a matching Etag"
+ "SomeStringProperty": "This changed due to a matching Etag",
+ "Timestamp": "2020-07-17T19:34:55.5182088Z",
+ "Timestamp@odata.type": "Edm.DateTime"
},
"StatusCode": 412,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:08 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json; odata=fullmetadata",
+ "Date": "Fri, 17 Jul 2020 19:34:55 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "cf2987fb2edc3b2924b736fa7cbcba63",
- "x-ms-request-id": "2074ffd4-b002-001b-1f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "cf2987fb-2edc-3b29-24b7-36fa7cbcba63"
},
- "ResponseBody": {
- "odata.error": {
- "code": "UpdateConditionNotSatisfied",
- "message": {
- "lang": "en-US",
- "value": "The update condition specified in the request was not satisfied.\nRequestId:2074ffd4-b002-001b-1f21-5aea7a000000\nTime:2020-07-14T20:56:08.7816966Z"
- }
- }
- }
+ "ResponseBody": [
+ "{\u0022odata.error\u0022:{\u0022code\u0022:\u0022UpdateConditionNotSatisfied\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-us\u0022,\u0022value\u0022:\u0022The update condition specified in the request was not satisfied.\\nRequestID:cf2987fb-2edc-3b29-24b7-36fa7cbcba63\\n\u0022}}}\r\n"
+ ]
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablefg4w5djl(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablefg4w5djl(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
- "Content-Length": "545",
+ "Content-Length": "266",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A08.698585Z\u0027\u0022",
- "traceparent": "00-e10c93d3d964084aae0deffc8668228c-8afd0323d4d04147-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T19%3A34%3A55.5182088Z\u0027\u0022",
+ "traceparent": "00-35a6526059867742af9ecae2ba41a3a0-950b87109f94164e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4307a322098a7071c342cd56b8e143db",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:09 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:56 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
- "odata.type": "chrissscratch.testtablefg4w5djl",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablefg4w5djl(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A08.698585Z\u0027\u0022",
- "odata.editLink": "testtablefg4w5djl(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A55.5182088Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp": "2020-07-14T20:56:08.6985850Z",
- "Timestamp@odata.type": "Edm.DateTime",
- "SomeStringProperty": "This changed due to a matching Etag"
+ "SomeStringProperty": "This changed due to a matching Etag",
+ "Timestamp": "2020-07-17T19:34:55.5182088Z",
+ "Timestamp@odata.type": "Edm.DateTime"
},
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:08 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A08.8186849Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "4307a322098a7071c342cd56b8e143db",
- "x-ms-request-id": "2074ffde-b002-001b-2921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:34:55 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A55.7659144Z\u0027\u0022",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "4307a322-098a-7071-c342-cd56b8e143db"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablefg4w5djl()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablefg4w5djl()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6b2b181a062cdc59965b64dfd322a8af",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:09 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:56 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:08 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:55 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "6b2b181a062cdc59965b64dfd322a8af",
- "x-ms-request-id": "2074ffee-b002-001b-3921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "6b2b181a-062c-dc59-965b-64dfd322a8af"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablefg4w5djl",
"value": [
{
- "odata.type": "chrissscratch.testtablefg4w5djl",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablefg4w5djl(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A08.8186849Z\u0027\u0022",
- "odata.editLink": "testtablefg4w5djl(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A55.7659144Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
+ "SomeStringProperty": "This changed due to a matching Etag",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:08.8186849Z",
- "SomeStringProperty": "This changed due to a matching Etag"
+ "Timestamp": "2020-07-17T19:34:55.7659144Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablefg4w5djl\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablefg4w5djl\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-7ddb3e599ed7d841a5aa0c76b219c3eb-dc82bc4df81b9748-00",
+ "traceparent": "00-a8c03bd928f4c64b9684608323a0fb63-f702ea4118a43542-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2387170cda01f10f16b80c9a60d38343",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:09 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:56 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:08 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "2387170cda01f10f16b80c9a60d38343",
- "x-ms-request-id": "2074fff6-b002-001b-4021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:34:55 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "2387170c-da01-f10f-16b8-0c9a60d38343"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1013994619",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityUpdateRespectsEtagAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityUpdateRespectsEtagAsync.json
index faebf70b921f..0e0739b27ae6 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityUpdateRespectsEtagAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/EntityUpdateRespectsEtagAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1bd8fb45435c5d43a092784b3c40d330-35e72f26c7b6d244-00",
+ "traceparent": "00-fbfd5416d092a6418d9066afbee931e8-67405391a6bb5e43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4358b16263d05d16d1f0908f293333bc",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:32 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:31 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabledh7amrw0\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:59 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A59.0584328Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtabledh7amrw0\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "4358b16263d05d16d1f0908f293333bc",
- "x-ms-request-id": "20751696-b002-001b-1521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "4358b162-63d0-5d16-d1f0-908f293333bc"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabledh7amrw0\u0027)",
- "odata.editLink": "Tables(\u0027testtabledh7amrw0\u0027)",
- "TableName": "testtabledh7amrw0"
+ "TableName": "testtabledh7amrw0",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabledh7amrw0(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtabledh7amrw0(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "88",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-d4a81cbe4d39ba4aab52283fc37a8b4d-61bc546e68a58540-00",
+ "traceparent": "00-87a53b00af9174479282fcbdecc4440e-ce45437391981846-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ea86100497e135710faf101b76a4697d",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:32 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:35:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -70,351 +63,275 @@
},
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:32 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A32.2431822Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ea86100497e135710faf101b76a4697d",
- "x-ms-request-id": "207516a2-b002-001b-1f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:59 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A59.6141576Z\u0027\u0022",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "ea861004-97e1-3571-0faf-101b76a4697d"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabledh7amrw0()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtabledh7amrw0()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c6f169c830c63cad4c1e5775ce66b1a5",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:32 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:32 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:59 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c6f169c830c63cad4c1e5775ce66b1a5",
- "x-ms-request-id": "207516af-b002-001b-2c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "c6f169c8-30c6-3cad-4c1e-5775ce66b1a5"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabledh7amrw0",
"value": [
{
- "odata.type": "chrissscratch.testtabledh7amrw0",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabledh7amrw0(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A32.2431822Z\u0027\u0022",
- "odata.editLink": "testtabledh7amrw0(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A59.6141576Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
+ "SomeStringProperty": "This is the original",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:32.2431822Z",
- "SomeStringProperty": "This is the original"
+ "Timestamp": "2020-07-17T19:35:59.6141576Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabledh7amrw0(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtabledh7amrw0(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
- "Content-Length": "536",
+ "Content-Length": "256",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
"If-Match": "*",
- "traceparent": "00-0ebffd59669ae149bf7e20f460a6042f-ff14dad18cb0474f-00",
+ "traceparent": "00-5b3e443f6bd50343ab65862c49f2dcca-34fed85e1e11d644-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e34d88a13e881980e70dc1b305415b4c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:32 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
- "odata.type": "chrissscratch.testtabledh7amrw0",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabledh7amrw0(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A32.2431822Z\u0027\u0022",
- "odata.editLink": "testtabledh7amrw0(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A59.6141576Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp": "2020-07-14T20:56:32.2431822Z",
- "Timestamp@odata.type": "Edm.DateTime",
- "SomeStringProperty": "This is new and improved!"
+ "SomeStringProperty": "This is new and improved!",
+ "Timestamp": "2020-07-17T19:35:59.6141576Z",
+ "Timestamp@odata.type": "Edm.DateTime"
},
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:32 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A32.3252505Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "e34d88a13e881980e70dc1b305415b4c",
- "x-ms-request-id": "207516be-b002-001b-3921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:35:59 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A59.7673480Z\u0027\u0022",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "e34d88a1-3e88-1980-e70d-c1b305415b4c"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabledh7amrw0()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtabledh7amrw0()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ca601227f542d43863499dc23ffb66a8",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:32 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:32 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:59 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ca601227f542d43863499dc23ffb66a8",
- "x-ms-request-id": "207516cf-b002-001b-4821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "ca601227-f542-d438-6349-9dc23ffb66a8"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabledh7amrw0",
"value": [
{
- "odata.type": "chrissscratch.testtabledh7amrw0",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabledh7amrw0(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A32.3252505Z\u0027\u0022",
- "odata.editLink": "testtabledh7amrw0(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A59.7673480Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
+ "SomeStringProperty": "This is new and improved!",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:32.3252505Z",
- "SomeStringProperty": "This is new and improved!"
+ "Timestamp": "2020-07-17T19:35:59.7673480Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabledh7amrw0(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtabledh7amrw0(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
- "Content-Length": "546",
+ "Content-Length": "266",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A32.2431822Z\u0027\u0022",
- "traceparent": "00-bdd645455cf5124aa6c3e68a52973f90-c1c589cafe5f7246-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T19%3A35%3A59.6141576Z\u0027\u0022",
+ "traceparent": "00-3c888ab108cdef47a888a983f1ccd1bb-b3ac8791705b994e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ee7a6bfd85578af4e8d7dfb96ef9370b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:32 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
- "odata.type": "chrissscratch.testtabledh7amrw0",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabledh7amrw0(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A32.3252505Z\u0027\u0022",
- "odata.editLink": "testtabledh7amrw0(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A59.7673480Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp": "2020-07-14T20:56:32.3252505Z",
- "Timestamp@odata.type": "Edm.DateTime",
- "SomeStringProperty": "This changed due to a matching Etag"
+ "SomeStringProperty": "This changed due to a matching Etag",
+ "Timestamp": "2020-07-17T19:35:59.7673480Z",
+ "Timestamp@odata.type": "Edm.DateTime"
},
"StatusCode": 412,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:32 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json; odata=fullmetadata",
+ "Date": "Fri, 17 Jul 2020 19:35:59 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ee7a6bfd85578af4e8d7dfb96ef9370b",
- "x-ms-request-id": "207516dc-b002-001b-5421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "ee7a6bfd-8557-8af4-e8d7-dfb96ef9370b"
},
- "ResponseBody": {
- "odata.error": {
- "code": "UpdateConditionNotSatisfied",
- "message": {
- "lang": "en-US",
- "value": "The update condition specified in the request was not satisfied.\nRequestId:207516dc-b002-001b-5421-5aea7a000000\nTime:2020-07-14T20:56:32.4123954Z"
- }
- }
- }
+ "ResponseBody": [
+ "{\u0022odata.error\u0022:{\u0022code\u0022:\u0022UpdateConditionNotSatisfied\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-us\u0022,\u0022value\u0022:\u0022The update condition specified in the request was not satisfied.\\nRequestID:ee7a6bfd-8557-8af4-e8d7-dfb96ef9370b\\n\u0022}}}\r\n"
+ ]
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabledh7amrw0(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtabledh7amrw0(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
- "Content-Length": "546",
+ "Content-Length": "266",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A32.3252505Z\u0027\u0022",
- "traceparent": "00-79f2fa7c12545a4e8c4a9ddccd9204da-1c359db1ff9fb84d-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T19%3A35%3A59.7673480Z\u0027\u0022",
+ "traceparent": "00-23ae1dcd6092b1458fc43c7dc21fab34-740852b7a40cdb48-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "bc4e0bc3e705ab635078803fa0bed9eb",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:32 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
- "odata.type": "chrissscratch.testtabledh7amrw0",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabledh7amrw0(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A32.3252505Z\u0027\u0022",
- "odata.editLink": "testtabledh7amrw0(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A59.7673480Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp": "2020-07-14T20:56:32.3252505Z",
- "Timestamp@odata.type": "Edm.DateTime",
- "SomeStringProperty": "This changed due to a matching Etag"
+ "SomeStringProperty": "This changed due to a matching Etag",
+ "Timestamp": "2020-07-17T19:35:59.7673480Z",
+ "Timestamp@odata.type": "Edm.DateTime"
},
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:32 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A32.4523567Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "bc4e0bc3e705ab635078803fa0bed9eb",
- "x-ms-request-id": "207516e9-b002-001b-6121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:35:59 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A59.9997960Z\u0027\u0022",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "bc4e0bc3-e705-ab63-5078-803fa0bed9eb"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabledh7amrw0()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtabledh7amrw0()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9ab619a66dc6a2f41dd6e26a167f6569",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:32 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:32 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:35:59 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "9ab619a66dc6a2f41dd6e26a167f6569",
- "x-ms-request-id": "207516f3-b002-001b-6b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "9ab619a6-6dc6-a2f4-1dd6-e26a167f6569"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabledh7amrw0",
"value": [
{
- "odata.type": "chrissscratch.testtabledh7amrw0",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabledh7amrw0(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A32.4523567Z\u0027\u0022",
- "odata.editLink": "testtabledh7amrw0(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A35%3A59.9997960Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "1",
+ "SomeStringProperty": "This changed due to a matching Etag",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:32.4523567Z",
- "SomeStringProperty": "This changed due to a matching Etag"
+ "Timestamp": "2020-07-17T19:35:59.9997960Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabledh7amrw0\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtabledh7amrw0\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-b2a27242ac310d499b0e47b06c7c02eb-482c29d6bbf7734d-00",
+ "traceparent": "00-8758c7b67fd4784b821c622886c3c4f4-37d40f0bbec4e547-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "34ff9212aaad16a208ce9ede04b5e92a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:32 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:32 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "34ff9212aaad16a208ce9ede04b5e92a",
- "x-ms-request-id": "207516fb-b002-001b-7221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:35:59 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "34ff9212-aaad-16a2-08ce-9ede04b5e92a"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "663282429",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/GetAccessPoliciesReturnsPolicies.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/GetAccessPoliciesReturnsPolicies.json
index de8c876722c5..7395bc5231d1 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/GetAccessPoliciesReturnsPolicies.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/GetAccessPoliciesReturnsPolicies.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-69c3363751fdbb4a9a89e469761709b9-e166efa3df77bb44-00",
+ "traceparent": "00-03d2078a5e085540ba1ce778aa6d1708-4c69a93113d74441-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0a628c997fd7cc02b004a3e34d73de56",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:09 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:56 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,128 +24,49 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:08 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablemylg8nep\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:56 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A56.2552840Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablemylg8nep\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "0a628c997fd7cc02b004a3e34d73de56",
- "x-ms-request-id": "2074fffa-b002-001b-4421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "0a628c99-7fd7-cc02-b004-a3e34d73de56"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablemylg8nep\u0027)",
- "odata.editLink": "Tables(\u0027testtablemylg8nep\u0027)",
- "TableName": "testtablemylg8nep"
+ "TableName": "testtablemylg8nep",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablemylg8nep?comp=acl",
- "RequestMethod": "PUT",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "Content-Length": "239",
- "Content-Type": "application/xml",
- "traceparent": "00-d28655d0360d7a479c91c79e6b11cc64-a0b484330f776f4e-00",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "361aac6158c732f16a71a7d24595f0fc",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:09 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": "\uFEFF\u003CSignedIdentifiers\u003E\u003CSignedIdentifier\u003E\u003CId\u003EMyPolicy\u003C/Id\u003E\u003CAccessPolicy\u003E\u003CStart\u003E2020-01-01T01:01:00.0000000Z\u003C/Start\u003E\u003CExpiry\u003E2021-01-01T01:01:00.0000000Z\u003C/Expiry\u003E\u003CPermission\u003Er\u003C/Permission\u003E\u003C/AccessPolicy\u003E\u003C/SignedIdentifier\u003E\u003C/SignedIdentifiers\u003E",
- "StatusCode": 204,
- "ResponseHeaders": {
- "Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:08 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-client-request-id": "361aac6158c732f16a71a7d24595f0fc",
- "x-ms-request-id": "20750006-b002-001b-4e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": []
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablemylg8nep?comp=acl",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "traceparent": "00-5869d4cd3191c34098dde9ed412b129a-c66010ed6f6b584a-00",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "7557d7f2ed2dd9840d8010f7ca947acc",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:09 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Content-Type": "application/xml",
- "Date": "Tue, 14 Jul 2020 20:56:08 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "x-ms-client-request-id": "7557d7f2ed2dd9840d8010f7ca947acc",
- "x-ms-request-id": "20750020-b002-001b-6321-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CSignedIdentifiers\u003E\u003CSignedIdentifier\u003E\u003CId\u003EMyPolicy\u003C/Id\u003E\u003CAccessPolicy\u003E\u003CStart\u003E2020-01-01T01:01:00.0000000Z\u003C/Start\u003E\u003CExpiry\u003E2021-01-01T01:01:00.0000000Z\u003C/Expiry\u003E\u003CPermission\u003Er\u003C/Permission\u003E\u003C/AccessPolicy\u003E\u003C/SignedIdentifier\u003E\u003C/SignedIdentifiers\u003E"
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablemylg8nep\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablemylg8nep\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-81fa9643012e9c43950238e315bfba6c-444e3aa9747f2746-00",
+ "traceparent": "00-609d22a0557cad4c9ad60afc964b0045-f7ae3d43273ac64f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "a4e837401a7541c19a2f9f65d830861a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:09 GMT",
+ "x-ms-client-request-id": "361aac6158c732f16a71a7d24595f0fc",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:57 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:09 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a4e837401a7541c19a2f9f65d830861a",
- "x-ms-request-id": "20750034-b002-001b-7521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:34:56 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "361aac61-58c7-32f1-6a71-a7d24595f0fc"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1473915832",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/GetAccessPoliciesReturnsPoliciesAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/GetAccessPoliciesReturnsPoliciesAsync.json
index 790a24c540c5..4ab3dcfa1043 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/GetAccessPoliciesReturnsPoliciesAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/GetAccessPoliciesReturnsPoliciesAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1b073f96c2d0f8489d14be62104212b3-2d1ba4f2acc6ab4e-00",
+ "traceparent": "00-4ebd048afbbfe545914b1b67b2ca830b-ace7500675eaa94f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "71f70dc74d083f69e89526e2ac369500",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:32 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:04:31 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,128 +24,49 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:32 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablejlxcegva\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 21:04:32 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T21%3A04%3A31.7581320Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablejlxcegva\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "71f70dc74d083f69e89526e2ac369500",
- "x-ms-request-id": "2075170b-b002-001b-0221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "71f70dc7-4d08-3f69-e895-26e2ac369500"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablejlxcegva\u0027)",
- "odata.editLink": "Tables(\u0027testtablejlxcegva\u0027)",
- "TableName": "testtablejlxcegva"
+ "TableName": "testtablejlxcegva",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablejlxcegva?comp=acl",
- "RequestMethod": "PUT",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "Content-Length": "239",
- "Content-Type": "application/xml",
- "traceparent": "00-bc3b35513309164da8d209609b40f498-1e8354529a27a24b-00",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "90d3513f856a975418ca8d7ae39a23bd",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:32 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": "\uFEFF\u003CSignedIdentifiers\u003E\u003CSignedIdentifier\u003E\u003CId\u003EMyPolicy\u003C/Id\u003E\u003CAccessPolicy\u003E\u003CStart\u003E2020-01-01T01:01:00.0000000Z\u003C/Start\u003E\u003CExpiry\u003E2021-01-01T01:01:00.0000000Z\u003C/Expiry\u003E\u003CPermission\u003Er\u003C/Permission\u003E\u003C/AccessPolicy\u003E\u003C/SignedIdentifier\u003E\u003C/SignedIdentifiers\u003E",
- "StatusCode": 204,
- "ResponseHeaders": {
- "Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:32 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-client-request-id": "90d3513f856a975418ca8d7ae39a23bd",
- "x-ms-request-id": "20751720-b002-001b-1421-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": []
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablejlxcegva?comp=acl",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "traceparent": "00-aff0868dc75e9e47a193991452dfecd9-5b9c74f3963abe46-00",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "7dd095f6626c3e51b2291f2048c46084",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:32 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Content-Type": "application/xml",
- "Date": "Tue, 14 Jul 2020 20:56:32 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "x-ms-client-request-id": "7dd095f6626c3e51b2291f2048c46084",
- "x-ms-request-id": "20751730-b002-001b-2421-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CSignedIdentifiers\u003E\u003CSignedIdentifier\u003E\u003CId\u003EMyPolicy\u003C/Id\u003E\u003CAccessPolicy\u003E\u003CStart\u003E2020-01-01T01:01:00.0000000Z\u003C/Start\u003E\u003CExpiry\u003E2021-01-01T01:01:00.0000000Z\u003C/Expiry\u003E\u003CPermission\u003Er\u003C/Permission\u003E\u003C/AccessPolicy\u003E\u003C/SignedIdentifier\u003E\u003C/SignedIdentifiers\u003E"
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablejlxcegva\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablejlxcegva\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-4676d1722d9b654a9f86f772908dd960-cc3617b308b2984f-00",
+ "traceparent": "00-70b8b19e6939484eb603f4c497d0b9c0-e0dd3c3d61fb794b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "b8f053ccae1c4276b860593dbfee5c4e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:33 GMT",
+ "x-ms-client-request-id": "90d3513f856a975418ca8d7ae39a23bd",
+ "x-ms-date": "Fri, 17 Jul 2020 21:04:32 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:32 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "b8f053ccae1c4276b860593dbfee5c4e",
- "x-ms-request-id": "20751738-b002-001b-2c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 21:04:32 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "90d3513f-856a-9754-18ca-8d7ae39a23bd"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1946992165",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/QueryReturnsEntitiesWithoutOdataAnnoations.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/QueryReturnsEntitiesWithoutOdataAnnoations.json
index bef370fa4ba4..463fe1180c0a 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/QueryReturnsEntitiesWithoutOdataAnnoations.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/QueryReturnsEntitiesWithoutOdataAnnoations.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8fabebda802ae946ac92236bc3233de1-0edf2842c1a4fc4e-00",
+ "traceparent": "00-da58641ccfbd174c9be1d7382a5af1f0-da3ac573dcde9f40-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2d56dc16bdfba0b801d81a741de05a9c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:09 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:57 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:09 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable0b06l8rw\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:56 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A57.1692040Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable0b06l8rw\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "2d56dc16bdfba0b801d81a741de05a9c",
- "x-ms-request-id": "2075003e-b002-001b-7f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "2d56dc16-bdfb-a0b8-01d8-1a741de05a9c"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable0b06l8rw\u0027)",
- "odata.editLink": "Tables(\u0027testtable0b06l8rw\u0027)",
- "TableName": "testtable0b06l8rw"
+ "TableName": "testtable0b06l8rw",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable0b06l8rw(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable0b06l8rw(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-c3723e9a271e0c4a970ba036038ec290-0aae50c935990041-00",
+ "traceparent": "00-14db3a29394bec42a22b1c271ee6d89f-a5d48012ebe9de43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e0112fa49099a29f838da3cfaaaf04e7",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:09 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:58 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -83,117 +76,94 @@
},
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:09 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A09.3561328Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "e0112fa49099a29f838da3cfaaaf04e7",
- "x-ms-request-id": "20750048-b002-001b-0721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:57 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A57.7665032Z\u0027\u0022",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "e0112fa4-9099-a29f-838d-a3cfaaaf04e7"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable0b06l8rw()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%2701%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable0b06l8rw()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%2701%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d351b53ca60bffd50ed4edba399bf629",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:09 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:58 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:09 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:34:57 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "d351b53ca60bffd50ed4edba399bf629",
- "x-ms-request-id": "20750054-b002-001b-1121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "d351b53c-a60b-ffd5-0ed4-edba399bf629"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable0b06l8rw",
"value": [
{
- "odata.type": "chrissscratch.testtable0b06l8rw",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable0b06l8rw(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A09.3561328Z\u0027\u0022",
- "odata.editLink": "testtable0b06l8rw(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A34%3A57.7665032Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:09.3561328Z",
- "SomeBinaryProperty@odata.type": "Edm.Binary",
- "SomeBinaryProperty": "AQIDBAU=",
+ "SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:02:00Z",
- "SomeDoubleProperty0": 1.0,
- "SomeDoubleProperty1": 1.1,
+ "SomeDateProperty": "2020-01-01T01:02:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
+ "SomeBinaryProperty@odata.type": "Edm.Binary",
+ "SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "1",
+ "SomeDoubleProperty0": 1,
+ "SomeDoubleProperty1": 1.1,
"SomeIntProperty": 1,
- "SomeStringProperty": "This is table entity number 01"
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:34:57.7665032Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable0b06l8rw\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable0b06l8rw\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-d7ad30731438c046b93fca9829913751-d6477fa45df5554c-00",
+ "traceparent": "00-86b73e2e4334be45a5f72ec9fa440d8d-b3801e5354935241-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a4135e9daadb86d73cb3aa6e1ae9f652",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:09 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:34:58 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:09 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a4135e9daadb86d73cb3aa6e1ae9f652",
- "x-ms-request-id": "20750059-b002-001b-1621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:34:57 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "a4135e9d-aadb-86d7-3cb3-aa6e1ae9f652"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1393542951",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/QueryReturnsEntitiesWithoutOdataAnnoationsAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/QueryReturnsEntitiesWithoutOdataAnnoationsAsync.json
index 24c123d7e59c..3ffa0de32f35 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/QueryReturnsEntitiesWithoutOdataAnnoationsAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/QueryReturnsEntitiesWithoutOdataAnnoationsAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c8ace2896a7a8b4da2b8d52dff97a6fe-c71310fa25d4c841-00",
+ "traceparent": "00-bd40cf41d098104b84e6089fb677ff90-c86b9fcac6c0904d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8f41eb6b85eeec0502e4e2789d785465",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:33 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:12 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:32 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablexy5vyjzn\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:13 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A12.5647880Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablexy5vyjzn\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "8f41eb6b85eeec0502e4e2789d785465",
- "x-ms-request-id": "20751744-b002-001b-3821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "8f41eb6b-85ee-ec05-02e4-e2789d785465"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablexy5vyjzn\u0027)",
- "odata.editLink": "Tables(\u0027testtablexy5vyjzn\u0027)",
- "TableName": "testtablexy5vyjzn"
+ "TableName": "testtablexy5vyjzn",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablexy5vyjzn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablexy5vyjzn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-0ffba186ecfd1f46863d2bcb50075f84-460f31b8d76c4044-00",
+ "traceparent": "00-66457b3dbd9a094990f971a13619133a-ea7fe5d1e59a3a42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1653bb10316e89ebcc6c234e5cfe2396",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:33 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -83,117 +76,94 @@
},
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:32 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A32.8757084Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "1653bb10316e89ebcc6c234e5cfe2396",
- "x-ms-request-id": "20751757-b002-001b-4a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:13 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A13.1325960Z\u0027\u0022",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "1653bb10-316e-89eb-cc6c-234e5cfe2396"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablexy5vyjzn()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%2701%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablexy5vyjzn()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%2701%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0e10c27e7ceb6ff8a808a52cb0252c24",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:33 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:32 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:13 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "0e10c27e7ceb6ff8a808a52cb0252c24",
- "x-ms-request-id": "2075175f-b002-001b-5221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "0e10c27e-7ceb-6ff8-a808-a52cb0252c24"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablexy5vyjzn",
"value": [
{
- "odata.type": "chrissscratch.testtablexy5vyjzn",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablexy5vyjzn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A32.8757084Z\u0027\u0022",
- "odata.editLink": "testtablexy5vyjzn(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A13.1325960Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:32.8757084Z",
- "SomeBinaryProperty@odata.type": "Edm.Binary",
- "SomeBinaryProperty": "AQIDBAU=",
+ "SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:02:00Z",
- "SomeDoubleProperty0": 1.0,
- "SomeDoubleProperty1": 1.1,
+ "SomeDateProperty": "2020-01-01T01:02:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
+ "SomeBinaryProperty@odata.type": "Edm.Binary",
+ "SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "1",
+ "SomeDoubleProperty0": 1,
+ "SomeDoubleProperty1": 1.1,
"SomeIntProperty": 1,
- "SomeStringProperty": "This is table entity number 01"
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:13.1325960Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablexy5vyjzn\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablexy5vyjzn\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-7c82f4ac5ee9eb488769cb048cd394b7-35bd8b7712f3f74d-00",
+ "traceparent": "00-bcfaf1d3496ebc4d8f0709270cdd63c0-2063e477f614d043-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "69a78a985994394bffb7c38261b69004",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:33 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:32 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "69a78a985994394bffb7c38261b69004",
- "x-ms-request-id": "20751766-b002-001b-5921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:36:13 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "69a78a98-5994-394b-ffb7-c38261b69004"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "887630860",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/UpsertedEntitiesAreRoundtrippedWithProperOdataAnnoations.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/UpsertedEntitiesAreRoundtrippedWithProperOdataAnnoations.json
index 42ca93ff0985..084d11037e9b 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/UpsertedEntitiesAreRoundtrippedWithProperOdataAnnoations.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/UpsertedEntitiesAreRoundtrippedWithProperOdataAnnoations.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d048b88bc59e574ebec7550308c0afc6-6aff834d35f3b945-00",
+ "traceparent": "00-d4f94b7ee6a3214d91d14dac5cdc5fa4-f76876664656f045-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "071507a44597d1e6922e6c02259ba54e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:09 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:05:32 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:09 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableusxiz4l0\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 21:05:33 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T21%3A05%3A33.0189320Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableusxiz4l0\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "071507a44597d1e6922e6c02259ba54e",
- "x-ms-request-id": "20750061-b002-001b-1e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "071507a4-4597-d1e6-922e-6c02259ba54e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableusxiz4l0\u0027)",
- "odata.editLink": "Tables(\u0027testtableusxiz4l0\u0027)",
- "TableName": "testtableusxiz4l0"
+ "TableName": "testtableusxiz4l0",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableusxiz4l0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableusxiz4l0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-90d5b7f584fd754b9833386a23d27de5-37a2058e4029aa46-00",
+ "traceparent": "00-db5c49aaa213774b819b471e94f8cce6-a143f832ff7e3a48-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "dd07784c3f3bb3dc22bb2f16f89efda4",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:09 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:05:33 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -83,117 +76,94 @@
},
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:09 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A09.5472914Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "dd07784c3f3bb3dc22bb2f16f89efda4",
- "x-ms-request-id": "20750067-b002-001b-2321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 21:05:33 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T21%3A05%3A33.7429000Z\u0027\u0022",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "dd07784c-3f3b-b3dc-22bb-2f16f89efda4"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableusxiz4l0()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%2701%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableusxiz4l0()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%2701%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a7caf870611be7d7ee83b56855f23ecd",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:09 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:05:33 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:09 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 21:05:33 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a7caf870611be7d7ee83b56855f23ecd",
- "x-ms-request-id": "2075006e-b002-001b-2a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "a7caf870-611b-e7d7-ee83-b56855f23ecd"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableusxiz4l0",
"value": [
{
- "odata.type": "chrissscratch.testtableusxiz4l0",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableusxiz4l0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A09.5472914Z\u0027\u0022",
- "odata.editLink": "testtableusxiz4l0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A05%3A33.7429000Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:09.5472914Z",
- "SomeBinaryProperty@odata.type": "Edm.Binary",
- "SomeBinaryProperty": "AQIDBAU=",
+ "SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:02:00Z",
- "SomeDoubleProperty0": 1.0,
- "SomeDoubleProperty1": 1.1,
+ "SomeDateProperty": "2020-01-01T01:02:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
+ "SomeBinaryProperty@odata.type": "Edm.Binary",
+ "SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "1",
+ "SomeDoubleProperty0": 1,
+ "SomeDoubleProperty1": 1.1,
"SomeIntProperty": 1,
- "SomeStringProperty": "This is table entity number 01"
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T21:05:33.7429000Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableusxiz4l0\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableusxiz4l0\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-b59711fa50671644a9a73c6485fb347f-afcc06b7bd6aec47-00",
+ "traceparent": "00-b66285c1086ba843a62b0b94fd7bec2d-de193f2410b26c4b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "274219f1432464b12a62e5dc16cfd8f3",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:09 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:05:34 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:09 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "274219f1432464b12a62e5dc16cfd8f3",
- "x-ms-request-id": "20750078-b002-001b-3221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 21:05:33 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "274219f1-4324-64b1-2a62-e5dc16cfd8f3"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "831497240",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/UpsertedEntitiesAreRoundtrippedWithProperOdataAnnoationsAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/UpsertedEntitiesAreRoundtrippedWithProperOdataAnnoationsAsync.json
index 0a2bc25cf61e..89a5ba840f70 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/UpsertedEntitiesAreRoundtrippedWithProperOdataAnnoationsAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/UpsertedEntitiesAreRoundtrippedWithProperOdataAnnoationsAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-0e86fd1d2acdee42a9718b73c849d7be-5da70a9e64955045-00",
+ "traceparent": "00-991ef881ae5f674883b381bc056ff0ea-0cb74c1a1c6aff49-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f71a0c39bfecb39aa5f76426576ae851",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:33 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:05:23 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:32 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablebulnnez8\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 21:05:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T21%3A05%3A24.0121352Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablebulnnez8\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "f71a0c39bfecb39aa5f76426576ae851",
- "x-ms-request-id": "20751775-b002-001b-6821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "f71a0c39-bfec-b39a-a5f7-6426576ae851"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablebulnnez8\u0027)",
- "odata.editLink": "Tables(\u0027testtablebulnnez8\u0027)",
- "TableName": "testtablebulnnez8"
+ "TableName": "testtablebulnnez8",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablebulnnez8(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablebulnnez8(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-25f0fe2c131ecc44b37d3b9f1e357dc9-0d0dd5737405ef41-00",
+ "traceparent": "00-ee2684c1e340264f8ece07407ba5ec6f-5e9fd6de3a0d6442-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b48622a90d1b9ac129255ae54907647c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:33 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:05:24 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -83,117 +76,94 @@
},
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:32 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.0528558Z\u0027\u0022",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "b48622a90d1b9ac129255ae54907647c",
- "x-ms-request-id": "20751789-b002-001b-7a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 21:05:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T21%3A05%3A24.7852552Z\u0027\u0022",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "b48622a9-0d1b-9ac1-2925-5ae54907647c"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablebulnnez8()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%2701%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablebulnnez8()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%2701%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "80e1661ef65310fc7209d0f0178de878",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:33 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:05:24 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:32 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 21:05:24 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "80e1661ef65310fc7209d0f0178de878",
- "x-ms-request-id": "20751792-b002-001b-0321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "80e1661e-f653-10fc-7209-d0f0178de878"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablebulnnez8",
"value": [
{
- "odata.type": "chrissscratch.testtablebulnnez8",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablebulnnez8(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A33.0528558Z\u0027\u0022",
- "odata.editLink": "testtablebulnnez8(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T21%3A05%3A24.7852552Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:33.0528558Z",
- "SomeBinaryProperty@odata.type": "Edm.Binary",
- "SomeBinaryProperty": "AQIDBAU=",
+ "SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:02:00Z",
- "SomeDoubleProperty0": 1.0,
- "SomeDoubleProperty1": 1.1,
+ "SomeDateProperty": "2020-01-01T01:02:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
+ "SomeBinaryProperty@odata.type": "Edm.Binary",
+ "SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "1",
+ "SomeDoubleProperty0": 1,
+ "SomeDoubleProperty1": 1.1,
"SomeIntProperty": 1,
- "SomeStringProperty": "This is table entity number 01"
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T21:05:24.7852552Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablebulnnez8\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablebulnnez8\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-a91d5ce4dcf3ce4fbc3d82049c13200a-cc6def91d0f58e49-00",
+ "traceparent": "00-70a865648f14a5469cb45aa16f6257c3-e17ca923694b804f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "21e7c4be93a72b744a80cdc664b56a9e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:33 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 21:05:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:32 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "21e7c4be93a72b744a80cdc664b56a9e",
- "x-ms-request-id": "207517a4-b002-001b-1521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 21:05:24 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "21e7c4be-93a7-2b74-4a80-cdc664b56a9e"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "903576920",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/ValidateSasCredentials.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/ValidateSasCredentials.json
index 487e0558aabd..99a68aa238cc 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/ValidateSasCredentials.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/ValidateSasCredentials.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-491f372f119cf948b2108d3f8686c819-90d196836b9b7e41-00",
+ "traceparent": "00-329dc471df6a534c838695ab17e78740-0f4960dd89a39348-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1f331e3e9a500d82349fae7c218be0a1",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:09 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 23:59:44 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,36 +24,28 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:09 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable40a3okww\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 23:59:45 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T23%3A59%3A45.5851528Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable40a3okww\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "1f331e3e9a500d82349fae7c218be0a1",
- "x-ms-request-id": "20750085-b002-001b-3f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "1f331e3e-9a50-0d82-349f-ae7c218be0a1"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable40a3okww\u0027)",
- "odata.editLink": "Tables(\u0027testtable40a3okww\u0027)",
- "TableName": "testtable40a3okww"
+ "TableName": "testtable40a3okww",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable40a3okww()?tn=testtable40a3okww\u0026sv=2019-02-02\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=r\u0026sig=Sanitized\u0026$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable40a3okww()?tn=testtable40a3okww\u0026sv=2017-07-29\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=r\u0026sig=Sanitized\u0026$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4c487467e97142d968c1f658db203c3d",
"x-ms-return-client-request-id": "true",
@@ -61,35 +54,28 @@
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:09 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 23:59:45 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "4c487467e97142d968c1f658db203c3d",
- "x-ms-request-id": "20750095-b002-001b-4e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "4c487467-e971-42d9-68c1-f658db203c3d"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable40a3okww",
"value": []
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable40a3okww(PartitionKey=\u0027partition\u0027,RowKey=\u002701\u0027)?tn=testtable40a3okww\u0026sv=2019-02-02\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=r\u0026sig=Sanitized\u0026$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable40a3okww(PartitionKey=\u0027partition\u0027,RowKey=\u002701\u0027)?tn=testtable40a3okww\u0026sv=2017-07-29\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=r\u0026sig=Sanitized\u0026$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Content-Length": "611",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-84c6498bed1d2b43b68ce95951941cf5-cae05cbd83724a4e-00",
+ "traceparent": "00-195d73a5728d9c478a7c086b5310cbf3-0161370045741c44-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d31b0cdedf78fc3b22fdac8c509c481c",
"x-ms-return-client-request-id": "true",
@@ -115,66 +101,46 @@
},
"StatusCode": 403,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:09 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 23:59:45 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "d31b0cdedf78fc3b22fdac8c509c481c",
- "x-ms-request-id": "207500a1-b002-001b-5a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "d31b0cde-df78-fc3b-22fd-ac8c509c481c"
},
- "ResponseBody": {
- "odata.error": {
- "code": "AuthorizationPermissionMismatch",
- "message": {
- "lang": "en-US",
- "value": "This request is not authorized to perform this operation using this permission.\nRequestId:207500a1-b002-001b-5a21-5aea7a000000\nTime:2020-07-14T20:56:09.7805321Z"
- }
- }
- }
+ "ResponseBody": [
+ "{\u0022odata.error\u0022:{\u0022code\u0022:\u0022Forbidden\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-us\u0022,\u0022value\u0022:\u0022This request is not authorized to perform this operation using this permission.\\r\\nActivityId: d31b0cde-df78-fc3b-22fd-ac8c509c481c, documentdb-dotnet-sdk/2.11.0 Host/64-bit MicrosoftWindowsNT/6.2.9200.0\\nRequestID:d31b0cde-df78-fc3b-22fd-ac8c509c481c\\n\u0022}}}\r\n"
+ ]
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable40a3okww\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable40a3okww\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-ab44743a0d13224b84fb117ee2656c00-7a01532ac562124e-00",
+ "traceparent": "00-67f264b0e8210e41bc8feae4b1dc75c6-45f3ef9f43047c4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "497f0365bcee552144f0b68fa42a3114",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 23:59:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:09 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "497f0365bcee552144f0b68fa42a3114",
- "x-ms-request-id": "207500ab-b002-001b-6421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 23:59:45 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "497f0365-bcee-5521-44f0-b68fa42a3114"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "441910135",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/ValidateSasCredentialsAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/ValidateSasCredentialsAsync.json
index 657426cc9f2b..8a393d6c9f1c 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/ValidateSasCredentialsAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(CosmosTable)/ValidateSasCredentialsAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c1f6655c896314419452d4c5bdf8b611-cc7b5e83f8fc4a42-00",
+ "traceparent": "00-2c49b4f1dd676f4d9a9951e67fc04f53-1ef07c90dddba84a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "db3d1dd74bffa1186db3bc888f3c4bc8",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:33 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 23:59:47 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,36 +24,28 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:32 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabledh0dtm1j\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 23:59:47 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T23%3A59%3A47.5053576Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtabledh0dtm1j\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "db3d1dd74bffa1186db3bc888f3c4bc8",
- "x-ms-request-id": "207517b5-b002-001b-2621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "db3d1dd7-4bff-a118-6db3-bc888f3c4bc8"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabledh0dtm1j\u0027)",
- "odata.editLink": "Tables(\u0027testtabledh0dtm1j\u0027)",
- "TableName": "testtabledh0dtm1j"
+ "TableName": "testtabledh0dtm1j",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabledh0dtm1j()?tn=testtabledh0dtm1j\u0026sv=2019-02-02\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=r\u0026sig=Sanitized\u0026$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtabledh0dtm1j()?tn=testtabledh0dtm1j\u0026sv=2017-07-29\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=r\u0026sig=Sanitized\u0026$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "37cf4007ce08ff537907c7ee1c7173b6",
"x-ms-return-client-request-id": "true",
@@ -61,35 +54,28 @@
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:33 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 23:59:47 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "37cf4007ce08ff537907c7ee1c7173b6",
- "x-ms-request-id": "207517c3-b002-001b-3321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "37cf4007-ce08-ff53-7907-c7ee1c7173b6"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabledh0dtm1j",
"value": []
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabledh0dtm1j(PartitionKey=\u0027partition\u0027,RowKey=\u002701\u0027)?tn=testtabledh0dtm1j\u0026sv=2019-02-02\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=r\u0026sig=Sanitized\u0026$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtabledh0dtm1j(PartitionKey=\u0027partition\u0027,RowKey=\u002701\u0027)?tn=testtabledh0dtm1j\u0026sv=2017-07-29\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=r\u0026sig=Sanitized\u0026$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Content-Length": "611",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-eb75c42d9f4456488ba23a8a19c43581-f783392bd6896e4f-00",
+ "traceparent": "00-a880760dd30db54a80dec3111d274fa7-d2ef0442f21ccd4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "626ae29be287f761bb38056746a7b745",
"x-ms-return-client-request-id": "true",
@@ -115,66 +101,46 @@
},
"StatusCode": 403,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:33 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 23:59:47 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "626ae29be287f761bb38056746a7b745",
- "x-ms-request-id": "207517ce-b002-001b-3d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "626ae29b-e287-f761-bb38-056746a7b745"
},
- "ResponseBody": {
- "odata.error": {
- "code": "AuthorizationPermissionMismatch",
- "message": {
- "lang": "en-US",
- "value": "This request is not authorized to perform this operation using this permission.\nRequestId:207517ce-b002-001b-3d21-5aea7a000000\nTime:2020-07-14T20:56:33.2751111Z"
- }
- }
- }
+ "ResponseBody": [
+ "{\u0022odata.error\u0022:{\u0022code\u0022:\u0022Forbidden\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-us\u0022,\u0022value\u0022:\u0022This request is not authorized to perform this operation using this permission.\\r\\nActivityId: 626ae29b-e287-f761-bb38-056746a7b745, documentdb-dotnet-sdk/2.11.0 Host/64-bit MicrosoftWindowsNT/6.2.9200.0\\nRequestID:626ae29b-e287-f761-bb38-056746a7b745\\n\u0022}}}\r\n"
+ ]
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabledh0dtm1j\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtabledh0dtm1j\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-9a45763f1591a649b86d472049e5fa92-d438189a57be5140-00",
+ "traceparent": "00-df9ef5ab9d778b48a3ffa191ff608aed-39e6954997c5554e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d47ebb4c9c2208d0c93e62f8842a85fc",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:33 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 23:59:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:33 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "d47ebb4c9c2208d0c93e62f8842a85fc",
- "x-ms-request-id": "207517d6-b002-001b-4521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 23:59:47 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "d47ebb4c-9c22-08d0-c93e-62f8842a85fc"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1359918957",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreateEntityReturnsEntitiesWithoutOdataAnnoations.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreateEntityReturnsEntitiesWithoutOdataAnnoations.json
index d370592880bc..9ce5f9552992 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreateEntityReturnsEntitiesWithoutOdataAnnoations.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreateEntityReturnsEntitiesWithoutOdataAnnoations.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-269e4371aea08643ac59ab7f38fd81db-8bdfbdfe800e8b44-00",
+ "traceparent": "00-47bcff1e4263da4bad412e5262d00b2a-66f0a5b6fb553345-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "083cef81f8de6056179db11883b1a16c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:46 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableefs9yxbb\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "083cef81f8de6056179db11883b1a16c",
- "x-ms-request-id": "207507ba-b002-001b-0521-5aea7a000000",
+ "x-ms-request-id": "9b330a7e-4002-002c-7386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableefs9yxbb?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1313f31c86414248afd7c92bb01f5cde-4103f37add6be44c-00",
+ "traceparent": "00-64cb182b34853c46991707dfe76aad5c-50303e519ad5d646-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4a2e62f4e6697988dbac8af0c1dd14a7",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:47 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -85,8 +87,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:17 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A17.3968883Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:46 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.9334267Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableefs9yxbb(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -95,19 +97,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "4a2e62f4e6697988dbac8af0c1dd14a7",
- "x-ms-request-id": "207507c9-b002-001b-1221-5aea7a000000",
+ "x-ms-request-id": "9b330a88-4002-002c-7c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableefs9yxbb/@Element",
"odata.type": "chrissscratch.testtableefs9yxbb",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableefs9yxbb(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A17.3968883Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.9334267Z\u0027\u0022",
"odata.editLink": "testtableefs9yxbb(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:17.3968883Z",
+ "Timestamp": "2020-07-17T22:08:46.9334267Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:02:00Z",
@@ -128,13 +130,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-9972d38cc4d7ad42843f98201634c791-03e4e2e7b2c4ff4d-00",
+ "traceparent": "00-0fec2c0dfd33b5498a33158e2601967f-c402c206cfedf748-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "297b25bcb694b31730275739f7de5277",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:47 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -143,14 +145,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:46 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "297b25bcb694b31730275739f7de5277",
- "x-ms-request-id": "207507d5-b002-001b-1e21-5aea7a000000",
+ "x-ms-request-id": "9b330a91-4002-002c-0586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreateEntityReturnsEntitiesWithoutOdataAnnoationsAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreateEntityReturnsEntitiesWithoutOdataAnnoationsAsync.json
index 46b3c5dfca47..efecad3333fa 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreateEntityReturnsEntitiesWithoutOdataAnnoationsAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreateEntityReturnsEntitiesWithoutOdataAnnoationsAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-554e82de0f81b848a4410e648b515b31-7a32509de1be604c-00",
+ "traceparent": "00-e3d1954e23f87e46b7aa746b56313a5a-ae9bf749f49bfe43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0d9fe3f6c64567f79f48300c3cc81e11",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:40 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:59 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabledwac9mdv\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0d9fe3f6c64567f79f48300c3cc81e11",
- "x-ms-request-id": "20751fae-b002-001b-1621-5aea7a000000",
+ "x-ms-request-id": "9b331506-4002-002c-7e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtabledwac9mdv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-82eea055d0548d4192eeca639fa7a3a2-c310645eaac0384b-00",
+ "traceparent": "00-8f944e86d099f04190371c649722f413-ebba2dca1fb0084f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0d071b69a913453eb175d57aa4428854",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -85,8 +87,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:40 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A41.0555708Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:59 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.8832112Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtabledwac9mdv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -95,19 +97,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0d071b69a913453eb175d57aa4428854",
- "x-ms-request-id": "20751fbb-b002-001b-2221-5aea7a000000",
+ "x-ms-request-id": "9b331511-4002-002c-0886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabledwac9mdv/@Element",
"odata.type": "chrissscratch.testtabledwac9mdv",
"odata.id": "https://chrissscratch.table.core.windows.net/testtabledwac9mdv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A41.0555708Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.8832112Z\u0027\u0022",
"odata.editLink": "testtabledwac9mdv(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:41.0555708Z",
+ "Timestamp": "2020-07-17T22:08:59.8832112Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:02:00Z",
@@ -128,13 +130,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-ab2333c77f502e46ad886f4c544f0022-119db94ddc43a24d-00",
+ "traceparent": "00-53e2f21b521f9546a43357d282df303a-983053db0ace9c46-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3369034bd9fc4e0b7f219aaa067c6b04",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -143,14 +145,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:40 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:59 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "3369034bd9fc4e0b7f219aaa067c6b04",
- "x-ms-request-id": "20751fbf-b002-001b-2621-5aea7a000000",
+ "x-ms-request-id": "9b33151b-4002-002c-1086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedCustomEntitiesAreRoundtrippedProprly.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedCustomEntitiesAreRoundtrippedProprly.json
index 7204ee2eacdc..1b412a8a1181 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedCustomEntitiesAreRoundtrippedProprly.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedCustomEntitiesAreRoundtrippedProprly.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-306f2b62b4dacb4b82b8f3e47484a985-6be9e0ddce441543-00",
+ "traceparent": "00-a759bb338ed7194cb6be3f206438917e-222466819a478f42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ea2a7c14ac129444bb92eed50090af04",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:43 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:14 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:43 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable9k9pvnd0\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ea2a7c14ac129444bb92eed50090af04",
- "x-ms-request-id": "20750593-b002-001b-7f21-5aea7a000000",
+ "x-ms-request-id": "9b3307c8-4002-002c-7a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable9k9pvnd0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-738f01c237949a458cba9a880b60c552-930b9467a7d2ec4b-00",
+ "traceparent": "00-d86d032fcb74754bb86deb1a7a7d5c16-4dcaaf6bc47e954e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5c87c9555e0b52fa4b6cc4f805778767",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:44 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -88,8 +90,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:14 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A14.8077294Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:43 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A44.0450252Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable9k9pvnd0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -98,19 +100,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "5c87c9555e0b52fa4b6cc4f805778767",
- "x-ms-request-id": "207505a0-b002-001b-0b21-5aea7a000000",
+ "x-ms-request-id": "9b3307e1-4002-002c-1186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable9k9pvnd0/@Element",
"odata.type": "chrissscratch.testtable9k9pvnd0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable9k9pvnd0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A14.8077294Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A44.0450252Z\u0027\u0022",
"odata.editLink": "testtable9k9pvnd0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:14.8077294Z",
+ "Timestamp": "2020-07-17T22:08:44.0450252Z",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:02:00Z",
@@ -130,14 +132,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable9k9pvnd0()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%2701%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "976591fd666fe885610e21e9e758ceb1",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:44 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -146,7 +149,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:14 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:43 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -154,7 +157,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "976591fd666fe885610e21e9e758ceb1",
- "x-ms-request-id": "207505a7-b002-001b-1221-5aea7a000000",
+ "x-ms-request-id": "9b3307f1-4002-002c-1f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -163,12 +166,12 @@
{
"odata.type": "chrissscratch.testtable9k9pvnd0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable9k9pvnd0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A14.8077294Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A44.0450252Z\u0027\u0022",
"odata.editLink": "testtable9k9pvnd0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:14.8077294Z",
+ "Timestamp": "2020-07-17T22:08:44.0450252Z",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:02:00Z",
@@ -192,13 +195,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-2d7fea23c3d08748ab5b908d5c2e25c8-ced3eb3299653c41-00",
+ "traceparent": "00-69edf5f646685c4dbf80572e91309dd5-f990e9188ff1cf4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "13ae55fd3414b67e82d89fa5e74c8e43",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:44 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -207,14 +210,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:14 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:43 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "13ae55fd3414b67e82d89fa5e74c8e43",
- "x-ms-request-id": "207505af-b002-001b-1921-5aea7a000000",
+ "x-ms-request-id": "9b330802-4002-002c-2f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedCustomEntitiesAreRoundtrippedProprlyAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedCustomEntitiesAreRoundtrippedProprlyAsync.json
index a9c690bfbb1d..f1a417ff8b47 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedCustomEntitiesAreRoundtrippedProprlyAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedCustomEntitiesAreRoundtrippedProprlyAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c22e7f80b8a34e4786200fe27b812369-8a9e83ab35bbe14e-00",
+ "traceparent": "00-9a2e61b96fffc047a73a4677179ff245-627ec3383cfebe45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ba89bb3f30ce89a7e1a412592ffadcd7",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:38 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:57 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:38 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:56 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable3i7uq1ko\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ba89bb3f30ce89a7e1a412592ffadcd7",
- "x-ms-request-id": "20751d2b-b002-001b-3821-5aea7a000000",
+ "x-ms-request-id": "9b3312d6-4002-002c-6a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable3i7uq1ko?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-19be8d1dcfbde64fa60e23ee4ec27cc7-b6e69b5abaf36b44-00",
+ "traceparent": "00-109206b8b3342a4f8c351f6e40395eec-58fc1608e30cdf4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "865eec6e4fd55592d37bbf6052a46698",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:38 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:57 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -88,8 +90,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:38 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A38.3903574Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:56 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A57.2690318Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable3i7uq1ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -98,19 +100,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "865eec6e4fd55592d37bbf6052a46698",
- "x-ms-request-id": "20751d3d-b002-001b-4821-5aea7a000000",
+ "x-ms-request-id": "9b3312e4-4002-002c-7786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3i7uq1ko/@Element",
"odata.type": "chrissscratch.testtable3i7uq1ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3i7uq1ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A38.3903574Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A57.2690318Z\u0027\u0022",
"odata.editLink": "testtable3i7uq1ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:38.3903574Z",
+ "Timestamp": "2020-07-17T22:08:57.2690318Z",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:02:00Z",
@@ -130,14 +132,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable3i7uq1ko()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%2701%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7253288d77486cde181bad0297c7b19e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:38 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:57 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -146,7 +149,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:38 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:56 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -154,7 +157,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "7253288d77486cde181bad0297c7b19e",
- "x-ms-request-id": "20751d52-b002-001b-5b21-5aea7a000000",
+ "x-ms-request-id": "9b3312ee-4002-002c-7f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -163,12 +166,12 @@
{
"odata.type": "chrissscratch.testtable3i7uq1ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3i7uq1ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A38.3903574Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A57.2690318Z\u0027\u0022",
"odata.editLink": "testtable3i7uq1ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:38.3903574Z",
+ "Timestamp": "2020-07-17T22:08:57.2690318Z",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:02:00Z",
@@ -192,13 +195,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-80f87273dbbd264b8bedbcea5d143457-0361dd26147f3a4b-00",
+ "traceparent": "00-4d90fab776a17e45b2574585f1ff9fe8-180b6bc203722646-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "cd77afb6e132efc32834e6527147373d",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:38 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:57 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -207,14 +210,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:38 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:56 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "cd77afb6e132efc32834e6527147373d",
- "x-ms-request-id": "20751d5d-b002-001b-6621-5aea7a000000",
+ "x-ms-request-id": "9b3312f1-4002-002c-0286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedCustomEntitiesCanBeQueriedWithAndWithoutPagination(5).json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedCustomEntitiesCanBeQueriedWithAndWithoutPagination(5).json
index 22d4b50e10d0..15674d4543d6 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedCustomEntitiesCanBeQueriedWithAndWithoutPagination(5).json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedCustomEntitiesCanBeQueriedWithAndWithoutPagination(5).json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1e3d0a438dad124a8b137353aa90f8fb-51ae650a07b90148-00",
+ "traceparent": "00-3d1d613639c8554296bd24b0c172b634-af34b68296274d4f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "74d5b0e3c2f5bfb3e4568ab3ebe4149b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:22 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:52 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable8822lm1f\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "74d5b0e3c2f5bfb3e4568ab3ebe4149b",
- "x-ms-request-id": "20750c7d-b002-001b-6c21-5aea7a000000",
+ "x-ms-request-id": "9b330f8a-4002-002c-4686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable8822lm1f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-511d7c6e5830464baa4cf36814aaa2d3-5cf8546c9569c746-00",
+ "traceparent": "00-803214df05b9b945bca3fe4da15a4831-15140dec7ad7204d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7145937be23706ca4368e2bfa7b259f9",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -88,8 +90,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:22 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.6682897Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:52 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.898392Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -98,19 +100,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "7145937be23706ca4368e2bfa7b259f9",
- "x-ms-request-id": "20750c83-b002-001b-7121-5aea7a000000",
+ "x-ms-request-id": "9b330f9b-4002-002c-5686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable8822lm1f/@Element",
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.6682897Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.898392Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.6682897Z",
+ "Timestamp": "2020-07-17T22:08:52.898392Z",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:02:00Z",
@@ -130,17 +132,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable8822lm1f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-2ed534835baf5d4e8d84a504798d1244-49ae4bdd25b84247-00",
+ "traceparent": "00-6eed631467f5804c876dd4e16bbb1927-aadef6ffc4029046-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0d6ded91fbc9cf40da8202ba8538012e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:23 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -169,8 +172,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:22 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.7123261Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:52 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.9554399Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -179,19 +182,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0d6ded91fbc9cf40da8202ba8538012e",
- "x-ms-request-id": "20750c8a-b002-001b-7821-5aea7a000000",
+ "x-ms-request-id": "9b330fa5-4002-002c-6086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable8822lm1f/@Element",
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.7123261Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.9554399Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"PartitionKey": "somPartition",
"RowKey": "02",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.7123261Z",
+ "Timestamp": "2020-07-17T22:08:52.9554399Z",
"StringTypeProperty": "This is table entity number 02",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:03:00Z",
@@ -211,17 +214,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable8822lm1f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-96285b6cd3866943899c884b39e833b9-829e6287b0344746-00",
+ "traceparent": "00-a4506f427d977642a16473f48a9a24b0-aa2aa6fa9794144a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "de6f6272176500dce5cf308ce0f41832",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:23 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -250,8 +254,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:22 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.7613671Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:52 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.9954727Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -260,19 +264,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "de6f6272176500dce5cf308ce0f41832",
- "x-ms-request-id": "20750c9b-b002-001b-0721-5aea7a000000",
+ "x-ms-request-id": "9b330fa9-4002-002c-6486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable8822lm1f/@Element",
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.7613671Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.9954727Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"PartitionKey": "somPartition",
"RowKey": "03",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.7613671Z",
+ "Timestamp": "2020-07-17T22:08:52.9954727Z",
"StringTypeProperty": "This is table entity number 03",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:04:00Z",
@@ -292,17 +296,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable8822lm1f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-bf591a56d5ebb34da9884dd63306250c-544ef7bd7aa82e4d-00",
+ "traceparent": "00-382d2868c7382f4cab9abc60aae5b90f-e3bb50934e636946-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "fe2191fc07767fd1537697b5df10800a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:23 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -331,8 +336,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:22 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.800401Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:52 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.041511Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -341,19 +346,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "fe2191fc07767fd1537697b5df10800a",
- "x-ms-request-id": "20750ca3-b002-001b-0f21-5aea7a000000",
+ "x-ms-request-id": "9b330faf-4002-002c-6a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable8822lm1f/@Element",
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.800401Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.041511Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"PartitionKey": "somPartition",
"RowKey": "04",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.800401Z",
+ "Timestamp": "2020-07-17T22:08:53.041511Z",
"StringTypeProperty": "This is table entity number 04",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:05:00Z",
@@ -373,17 +378,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable8822lm1f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d602a9d0b00c3f4d9c2af19068db5bfd-e6ef7ba641cfce43-00",
+ "traceparent": "00-bc17e04446bccb46b7a974255ce5a6db-cab074c11970014e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "444cb3677b437a94106d27facbb3efe6",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:23 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -412,8 +418,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:22 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.8454374Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:52 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.0905518Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -422,19 +428,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "444cb3677b437a94106d27facbb3efe6",
- "x-ms-request-id": "20750cac-b002-001b-1821-5aea7a000000",
+ "x-ms-request-id": "9b330fb7-4002-002c-6f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable8822lm1f/@Element",
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.8454374Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.0905518Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"PartitionKey": "somPartition",
"RowKey": "05",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.8454374Z",
+ "Timestamp": "2020-07-17T22:08:53.0905518Z",
"StringTypeProperty": "This is table entity number 05",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:06:00Z",
@@ -454,17 +460,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable8822lm1f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-5169cb9efb0fde4d858118aef15d6c6c-0a872dbd64f29d47-00",
+ "traceparent": "00-fca44df70d016b4292c4e135204dba0c-b826fe734c91814b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f4bdd06a03176ab891ef8bef802720d5",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:23 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -493,8 +500,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:22 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.8904751Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:52 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.1355905Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -503,19 +510,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f4bdd06a03176ab891ef8bef802720d5",
- "x-ms-request-id": "20750cbf-b002-001b-2821-5aea7a000000",
+ "x-ms-request-id": "9b330fcb-4002-002c-8086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable8822lm1f/@Element",
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.8904751Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.1355905Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"PartitionKey": "somPartition",
"RowKey": "06",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.8904751Z",
+ "Timestamp": "2020-07-17T22:08:53.1355905Z",
"StringTypeProperty": "This is table entity number 06",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:07:00Z",
@@ -535,17 +542,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable8822lm1f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-fe240dda932ea346928cb0f7063ecbea-cde718198b5db74f-00",
+ "traceparent": "00-16944a936e9c754bb9063bdcbfb7b146-e0201e420fdef642-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2c25254ed3a780eefda7ed09dfd6b39f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:23 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -574,8 +582,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:22 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.9355144Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:52 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.1916371Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -584,19 +592,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "2c25254ed3a780eefda7ed09dfd6b39f",
- "x-ms-request-id": "20750ccb-b002-001b-3421-5aea7a000000",
+ "x-ms-request-id": "9b330fdb-4002-002c-0f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable8822lm1f/@Element",
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.9355144Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.1916371Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"PartitionKey": "somPartition",
"RowKey": "07",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.9355144Z",
+ "Timestamp": "2020-07-17T22:08:53.1916371Z",
"StringTypeProperty": "This is table entity number 07",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:08:00Z",
@@ -616,17 +624,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable8822lm1f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-3a149003da07254ab2eefdd67bc406db-ac6556f50fdb4549-00",
+ "traceparent": "00-3bc7a95ff0359540b7d79159adb39372-a3f1c97f407ee749-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0f4bb0868c5264f3fbe2b253efa4fae8",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:23 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -655,8 +664,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:22 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.9935617Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:52 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.2366733Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -665,19 +674,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0f4bb0868c5264f3fbe2b253efa4fae8",
- "x-ms-request-id": "20750cd5-b002-001b-3c21-5aea7a000000",
+ "x-ms-request-id": "9b330fe5-4002-002c-1986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable8822lm1f/@Element",
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.9935617Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.2366733Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"PartitionKey": "somPartition",
"RowKey": "08",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.9935617Z",
+ "Timestamp": "2020-07-17T22:08:53.2366733Z",
"StringTypeProperty": "This is table entity number 08",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:09:00Z",
@@ -697,17 +706,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable8822lm1f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8d283bcdf1e6da48b81e85201cafb2c1-c705ad99c0cc6d48-00",
+ "traceparent": "00-12ad8ad57d738b4ba1ec149b7e63650a-0f36c7fbb556fb41-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a5ac514cc28e963ee13df66f15af8abb",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:23 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -736,8 +746,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:22 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A23.0385998Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:52 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.2907182Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -746,19 +756,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "a5ac514cc28e963ee13df66f15af8abb",
- "x-ms-request-id": "20750cdc-b002-001b-4321-5aea7a000000",
+ "x-ms-request-id": "9b330fee-4002-002c-2286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable8822lm1f/@Element",
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A23.0385998Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.2907182Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"PartitionKey": "somPartition",
"RowKey": "09",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:23.0385998Z",
+ "Timestamp": "2020-07-17T22:08:53.2907182Z",
"StringTypeProperty": "This is table entity number 09",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:10:00Z",
@@ -778,17 +788,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable8822lm1f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-62984f75f67b1449acf59d653ade2c2a-2a467f646a00a94d-00",
+ "traceparent": "00-4c9c1bd1e1fc51459dd2ddda4f27cbf7-f963e0cb4d2a3949-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "cf68ec3b11dcc18332c131c5219b9058",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:23 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -817,8 +828,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:22 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A23.0776316Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:52 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.3357552Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -827,19 +838,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "cf68ec3b11dcc18332c131c5219b9058",
- "x-ms-request-id": "20750ce9-b002-001b-4f21-5aea7a000000",
+ "x-ms-request-id": "9b330ff5-4002-002c-2886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable8822lm1f/@Element",
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A23.0776316Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.3357552Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"PartitionKey": "somPartition",
"RowKey": "10",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:23.0776316Z",
+ "Timestamp": "2020-07-17T22:08:53.3357552Z",
"StringTypeProperty": "This is table entity number 10",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:11:00Z",
@@ -859,17 +870,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable8822lm1f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e94ad8c3e80e714690de31c60146051c-360a3d20c8bae741-00",
+ "traceparent": "00-cff6513e59dc414d8936a24dbe928654-aa6e1969c44eb14c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8ebc05ad0e29c31171b42d1595844f4b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:23 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -898,8 +910,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:22 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A23.1226696Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:52 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.3958067Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -908,19 +920,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "8ebc05ad0e29c31171b42d1595844f4b",
- "x-ms-request-id": "20750cf6-b002-001b-5a21-5aea7a000000",
+ "x-ms-request-id": "9b331001-4002-002c-3386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable8822lm1f/@Element",
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A23.1226696Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.3958067Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"PartitionKey": "somPartition",
"RowKey": "11",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:23.1226696Z",
+ "Timestamp": "2020-07-17T22:08:53.3958067Z",
"StringTypeProperty": "This is table entity number 11",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:12:00Z",
@@ -940,17 +952,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable8822lm1f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9ee39934a3e88b48971f8369510c896b-a2f1eea2cf451249-00",
+ "traceparent": "00-4663c5cd4ff94d44a2b3b047643bbe2e-b716db4321b6fd49-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0317f7572a3c3a0ccdeb73cc90797546",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:23 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -979,8 +992,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:22 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A23.1677077Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:52 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.4358407Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -989,19 +1002,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0317f7572a3c3a0ccdeb73cc90797546",
- "x-ms-request-id": "20750d05-b002-001b-6921-5aea7a000000",
+ "x-ms-request-id": "9b33100c-4002-002c-3e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable8822lm1f/@Element",
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A23.1677077Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.4358407Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"PartitionKey": "somPartition",
"RowKey": "12",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:23.1677077Z",
+ "Timestamp": "2020-07-17T22:08:53.4358407Z",
"StringTypeProperty": "This is table entity number 12",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:13:00Z",
@@ -1021,17 +1034,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable8822lm1f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a09568ac4df3a845baa713629ef622c5-cad66e725fbced4b-00",
+ "traceparent": "00-47071513c17bd14c9be0c7b44df648c0-2a9fe1827782eb4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "10c29eacfcf22d91daa45d27e46e2bad",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:23 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1060,8 +1074,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:23 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A23.2207525Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:52 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.4818788Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1070,19 +1084,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "10c29eacfcf22d91daa45d27e46e2bad",
- "x-ms-request-id": "20750d14-b002-001b-7721-5aea7a000000",
+ "x-ms-request-id": "9b33101a-4002-002c-4c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable8822lm1f/@Element",
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A23.2207525Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.4818788Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"PartitionKey": "somPartition",
"RowKey": "13",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:23.2207525Z",
+ "Timestamp": "2020-07-17T22:08:53.4818788Z",
"StringTypeProperty": "This is table entity number 13",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:14:00Z",
@@ -1102,17 +1116,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable8822lm1f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-5c644b75d101f24d91f665f885cd930d-6fff2681182aeb4b-00",
+ "traceparent": "00-074f62f5c9210543b97e76d171d6d14d-7ad59a7695fbcf48-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "296ee6728d83821cf882c03e9a4433f8",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:23 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1141,8 +1156,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:23 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A23.2637881Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:52 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.5219119Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1151,19 +1166,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "296ee6728d83821cf882c03e9a4433f8",
- "x-ms-request-id": "20750d23-b002-001b-0621-5aea7a000000",
+ "x-ms-request-id": "9b331023-4002-002c-5586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable8822lm1f/@Element",
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A23.2637881Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.5219119Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"PartitionKey": "somPartition",
"RowKey": "14",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:23.2637881Z",
+ "Timestamp": "2020-07-17T22:08:53.5219119Z",
"StringTypeProperty": "This is table entity number 14",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:15:00Z",
@@ -1183,17 +1198,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable8822lm1f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-31e689d191ccc84cbb214befe4c1642e-edb25a41e5dc444d-00",
+ "traceparent": "00-f3e9450642c8044999ce921104ffe92c-3ed14a10de9f7d40-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f768e63f3ec25a5966e92997cde4565f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:23 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1222,8 +1238,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:23 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A23.3068236Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:52 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.5689509Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1232,19 +1248,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f768e63f3ec25a5966e92997cde4565f",
- "x-ms-request-id": "20750d2b-b002-001b-0e21-5aea7a000000",
+ "x-ms-request-id": "9b331032-4002-002c-6486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable8822lm1f/@Element",
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A23.3068236Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.5689509Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"PartitionKey": "somPartition",
"RowKey": "15",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:23.3068236Z",
+ "Timestamp": "2020-07-17T22:08:53.5689509Z",
"StringTypeProperty": "This is table entity number 15",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:16:00Z",
@@ -1264,17 +1280,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable8822lm1f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-97952dc19f11e445bbdc69af79f78d1b-23bc9d123f960a40-00",
+ "traceparent": "00-fdec2efb9905fc458d5434161a38f551-4a82d5e69d3d7c4b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "aa5ac5bf4b0b1fc2813f17703b529396",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:23 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1303,8 +1320,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:23 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A23.3498596Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:52 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.613989Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1313,19 +1330,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "aa5ac5bf4b0b1fc2813f17703b529396",
- "x-ms-request-id": "20750d37-b002-001b-1921-5aea7a000000",
+ "x-ms-request-id": "9b331041-4002-002c-7386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable8822lm1f/@Element",
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A23.3498596Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.613989Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"PartitionKey": "somPartition",
"RowKey": "16",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:23.3498596Z",
+ "Timestamp": "2020-07-17T22:08:53.613989Z",
"StringTypeProperty": "This is table entity number 16",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:17:00Z",
@@ -1345,17 +1362,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable8822lm1f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-98166f91eeb6264fad1cf457ec8d0764-8e4f8e8c0f1a954b-00",
+ "traceparent": "00-d84e90d58a3fa041abdf0ef710fc2742-8826851db752b441-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "fde86571340533eb8c13c39a6385b514",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:23 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1384,8 +1402,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:23 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A23.3948968Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:52 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.6590263Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1394,19 +1412,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "fde86571340533eb8c13c39a6385b514",
- "x-ms-request-id": "20750d44-b002-001b-2621-5aea7a000000",
+ "x-ms-request-id": "9b331052-4002-002c-0486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable8822lm1f/@Element",
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A23.3948968Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.6590263Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"PartitionKey": "somPartition",
"RowKey": "17",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:23.3948968Z",
+ "Timestamp": "2020-07-17T22:08:53.6590263Z",
"StringTypeProperty": "This is table entity number 17",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:18:00Z",
@@ -1426,17 +1444,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable8822lm1f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-926a3aa7699751469bf96b510a384757-103c87e460dc684d-00",
+ "traceparent": "00-4d73547d91700449954b19bfa3d4d085-a78385841dfd2440-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d47f602b88eaf4ed2349758227e91e13",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:23 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1465,8 +1484,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:23 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A23.4389345Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:52 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.7110699Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1475,19 +1494,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d47f602b88eaf4ed2349758227e91e13",
- "x-ms-request-id": "20750d4e-b002-001b-3021-5aea7a000000",
+ "x-ms-request-id": "9b33105d-4002-002c-0f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable8822lm1f/@Element",
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A23.4389345Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.7110699Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"PartitionKey": "somPartition",
"RowKey": "18",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:23.4389345Z",
+ "Timestamp": "2020-07-17T22:08:53.7110699Z",
"StringTypeProperty": "This is table entity number 18",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:19:00Z",
@@ -1507,17 +1526,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable8822lm1f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a30e0c7f77d3fc4596a9d001068584bd-d31aeb2eaa93e34d-00",
+ "traceparent": "00-10889d20708d1041993ca1465387527d-47b57d4e131b804c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6725925658fc8b59da261ef78828bbfc",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:23 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1546,8 +1566,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:23 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A23.4839713Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:52 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.7551072Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1556,19 +1576,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "6725925658fc8b59da261ef78828bbfc",
- "x-ms-request-id": "20750d5d-b002-001b-3e21-5aea7a000000",
+ "x-ms-request-id": "9b331069-4002-002c-1a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable8822lm1f/@Element",
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A23.4839713Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.7551072Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"PartitionKey": "somPartition",
"RowKey": "19",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:23.4839713Z",
+ "Timestamp": "2020-07-17T22:08:53.7551072Z",
"StringTypeProperty": "This is table entity number 19",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:20:00Z",
@@ -1588,17 +1608,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable8822lm1f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-7d72ac149ccac349a9126e006cee52fa-eeae1e219bf4ed40-00",
+ "traceparent": "00-be94d9424719634f8b140aa6b8dd97d2-137ce44842aca442-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "db440289bfd3e9ab78f4dabbbe680ba3",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:23 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1627,8 +1648,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:23 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A23.5270081Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:52 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.7971424Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1637,19 +1658,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "db440289bfd3e9ab78f4dabbbe680ba3",
- "x-ms-request-id": "20750d68-b002-001b-4721-5aea7a000000",
+ "x-ms-request-id": "9b331075-4002-002c-2586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable8822lm1f/@Element",
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A23.5270081Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.7971424Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"PartitionKey": "somPartition",
"RowKey": "20",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:23.5270081Z",
+ "Timestamp": "2020-07-17T22:08:53.7971424Z",
"StringTypeProperty": "This is table entity number 20",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:21:00Z",
@@ -1669,14 +1690,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable8822lm1f()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d043b0f44e60d31807f3f9c36af56bfb",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:23 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1685,7 +1707,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:23 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:53 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1695,7 +1717,7 @@
"x-ms-client-request-id": "d043b0f44e60d31807f3f9c36af56bfb",
"x-ms-continuation-NextPartitionKey": "1!16!c29tUGFydGl0aW9u",
"x-ms-continuation-NextRowKey": "1!4!MDY-",
- "x-ms-request-id": "20750d70-b002-001b-4f21-5aea7a000000",
+ "x-ms-request-id": "9b33107c-4002-002c-2b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1704,12 +1726,12 @@
{
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.6682897Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.898392Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.6682897Z",
+ "Timestamp": "2020-07-17T22:08:52.898392Z",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:02:00Z",
@@ -1727,12 +1749,12 @@
{
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.7123261Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.9554399Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"PartitionKey": "somPartition",
"RowKey": "02",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.7123261Z",
+ "Timestamp": "2020-07-17T22:08:52.9554399Z",
"StringTypeProperty": "This is table entity number 02",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:03:00Z",
@@ -1750,12 +1772,12 @@
{
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.7613671Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.9954727Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"PartitionKey": "somPartition",
"RowKey": "03",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.7613671Z",
+ "Timestamp": "2020-07-17T22:08:52.9954727Z",
"StringTypeProperty": "This is table entity number 03",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:04:00Z",
@@ -1773,12 +1795,12 @@
{
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.800401Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.041511Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"PartitionKey": "somPartition",
"RowKey": "04",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.800401Z",
+ "Timestamp": "2020-07-17T22:08:53.041511Z",
"StringTypeProperty": "This is table entity number 04",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:05:00Z",
@@ -1796,12 +1818,12 @@
{
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.8454374Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.0905518Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"PartitionKey": "somPartition",
"RowKey": "05",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.8454374Z",
+ "Timestamp": "2020-07-17T22:08:53.0905518Z",
"StringTypeProperty": "This is table entity number 05",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:06:00Z",
@@ -1823,14 +1845,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable8822lm1f()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextPartitionKey=1%2116%21c29tUGFydGl0aW9u\u0026NextRowKey=1%214%21MDY-",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "25f9798e43a4973fe73bef087e9ecd71",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:23 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1839,7 +1862,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:23 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:53 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1849,7 +1872,7 @@
"x-ms-client-request-id": "25f9798e43a4973fe73bef087e9ecd71",
"x-ms-continuation-NextPartitionKey": "1!16!c29tUGFydGl0aW9u",
"x-ms-continuation-NextRowKey": "1!4!MTE-",
- "x-ms-request-id": "20750d81-b002-001b-5f21-5aea7a000000",
+ "x-ms-request-id": "9b33108b-4002-002c-3886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1858,12 +1881,12 @@
{
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.8904751Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.1355905Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"PartitionKey": "somPartition",
"RowKey": "06",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.8904751Z",
+ "Timestamp": "2020-07-17T22:08:53.1355905Z",
"StringTypeProperty": "This is table entity number 06",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:07:00Z",
@@ -1881,12 +1904,12 @@
{
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.9355144Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.1916371Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"PartitionKey": "somPartition",
"RowKey": "07",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.9355144Z",
+ "Timestamp": "2020-07-17T22:08:53.1916371Z",
"StringTypeProperty": "This is table entity number 07",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:08:00Z",
@@ -1904,12 +1927,12 @@
{
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.9935617Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.2366733Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"PartitionKey": "somPartition",
"RowKey": "08",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.9935617Z",
+ "Timestamp": "2020-07-17T22:08:53.2366733Z",
"StringTypeProperty": "This is table entity number 08",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:09:00Z",
@@ -1927,12 +1950,12 @@
{
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A23.0385998Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.2907182Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"PartitionKey": "somPartition",
"RowKey": "09",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:23.0385998Z",
+ "Timestamp": "2020-07-17T22:08:53.2907182Z",
"StringTypeProperty": "This is table entity number 09",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:10:00Z",
@@ -1950,12 +1973,12 @@
{
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A23.0776316Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.3357552Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"PartitionKey": "somPartition",
"RowKey": "10",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:23.0776316Z",
+ "Timestamp": "2020-07-17T22:08:53.3357552Z",
"StringTypeProperty": "This is table entity number 10",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:11:00Z",
@@ -1977,14 +2000,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable8822lm1f()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextPartitionKey=1%2116%21c29tUGFydGl0aW9u\u0026NextRowKey=1%214%21MTE-",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d7037a1beae43b9bea71d3e0c5e77f83",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:24 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:54 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1993,7 +2017,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:23 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:53 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -2003,7 +2027,7 @@
"x-ms-client-request-id": "d7037a1beae43b9bea71d3e0c5e77f83",
"x-ms-continuation-NextPartitionKey": "1!16!c29tUGFydGl0aW9u",
"x-ms-continuation-NextRowKey": "1!4!MTY-",
- "x-ms-request-id": "20750da6-b002-001b-0221-5aea7a000000",
+ "x-ms-request-id": "9b33109a-4002-002c-4786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -2012,12 +2036,12 @@
{
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A23.1226696Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.3958067Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"PartitionKey": "somPartition",
"RowKey": "11",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:23.1226696Z",
+ "Timestamp": "2020-07-17T22:08:53.3958067Z",
"StringTypeProperty": "This is table entity number 11",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:12:00Z",
@@ -2035,12 +2059,12 @@
{
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A23.1677077Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.4358407Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"PartitionKey": "somPartition",
"RowKey": "12",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:23.1677077Z",
+ "Timestamp": "2020-07-17T22:08:53.4358407Z",
"StringTypeProperty": "This is table entity number 12",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:13:00Z",
@@ -2058,12 +2082,12 @@
{
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A23.2207525Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.4818788Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"PartitionKey": "somPartition",
"RowKey": "13",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:23.2207525Z",
+ "Timestamp": "2020-07-17T22:08:53.4818788Z",
"StringTypeProperty": "This is table entity number 13",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:14:00Z",
@@ -2081,12 +2105,12 @@
{
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A23.2637881Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.5219119Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"PartitionKey": "somPartition",
"RowKey": "14",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:23.2637881Z",
+ "Timestamp": "2020-07-17T22:08:53.5219119Z",
"StringTypeProperty": "This is table entity number 14",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:15:00Z",
@@ -2104,12 +2128,12 @@
{
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A23.3068236Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.5689509Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"PartitionKey": "somPartition",
"RowKey": "15",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:23.3068236Z",
+ "Timestamp": "2020-07-17T22:08:53.5689509Z",
"StringTypeProperty": "This is table entity number 15",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:16:00Z",
@@ -2131,14 +2155,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable8822lm1f()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextPartitionKey=1%2116%21c29tUGFydGl0aW9u\u0026NextRowKey=1%214%21MTY-",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "442dde88e66fb1ff70ace9255e105569",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:24 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:54 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2147,7 +2172,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:23 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:53 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -2155,7 +2180,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "442dde88e66fb1ff70ace9255e105569",
- "x-ms-request-id": "20750dcc-b002-001b-2721-5aea7a000000",
+ "x-ms-request-id": "9b3310ab-4002-002c-5786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -2164,12 +2189,12 @@
{
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A23.3498596Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.613989Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"PartitionKey": "somPartition",
"RowKey": "16",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:23.3498596Z",
+ "Timestamp": "2020-07-17T22:08:53.613989Z",
"StringTypeProperty": "This is table entity number 16",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:17:00Z",
@@ -2187,12 +2212,12 @@
{
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A23.3948968Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.6590263Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"PartitionKey": "somPartition",
"RowKey": "17",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:23.3948968Z",
+ "Timestamp": "2020-07-17T22:08:53.6590263Z",
"StringTypeProperty": "This is table entity number 17",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:18:00Z",
@@ -2210,12 +2235,12 @@
{
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A23.4389345Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.7110699Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"PartitionKey": "somPartition",
"RowKey": "18",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:23.4389345Z",
+ "Timestamp": "2020-07-17T22:08:53.7110699Z",
"StringTypeProperty": "This is table entity number 18",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:19:00Z",
@@ -2233,12 +2258,12 @@
{
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A23.4839713Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.7551072Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"PartitionKey": "somPartition",
"RowKey": "19",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:23.4839713Z",
+ "Timestamp": "2020-07-17T22:08:53.7551072Z",
"StringTypeProperty": "This is table entity number 19",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:20:00Z",
@@ -2256,12 +2281,12 @@
{
"odata.type": "chrissscratch.testtable8822lm1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A23.5270081Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A53.7971424Z\u0027\u0022",
"odata.editLink": "testtable8822lm1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"PartitionKey": "somPartition",
"RowKey": "20",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:23.5270081Z",
+ "Timestamp": "2020-07-17T22:08:53.7971424Z",
"StringTypeProperty": "This is table entity number 20",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:21:00Z",
@@ -2285,13 +2310,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-2efef84b6fb1a441af8b74a42e9a4f24-64d97581699a8f42-00",
+ "traceparent": "00-ff1cb5c32acb90468cf92b9c64b9b6a1-2e0415b3348ba842-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "efa8882694f2a416ddbe3a336f5fd2ff",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:24 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:54 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2300,14 +2325,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:23 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:53 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "efa8882694f2a416ddbe3a336f5fd2ff",
- "x-ms-request-id": "20750dde-b002-001b-3921-5aea7a000000",
+ "x-ms-request-id": "9b3310b9-4002-002c-6586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedCustomEntitiesCanBeQueriedWithAndWithoutPagination(5)Async.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedCustomEntitiesCanBeQueriedWithAndWithoutPagination(5)Async.json
index 4c7d410c85c7..65c1cfa5c7a4 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedCustomEntitiesCanBeQueriedWithAndWithoutPagination(5)Async.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedCustomEntitiesCanBeQueriedWithAndWithoutPagination(5)Async.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d3769918b955914c966e405580493802-fae4f01d3d1f7f4e-00",
+ "traceparent": "00-ecc503a5cbd83c429b56901683f82f4e-e1de999fa9888445-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9030842a00889c9f41a31f057b8d2102",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:46 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:46 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:04 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableleq08oc6\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "9030842a00889c9f41a31f057b8d2102",
- "x-ms-request-id": "20752559-b002-001b-7321-5aea7a000000",
+ "x-ms-request-id": "9b331991-4002-002c-1986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableleq08oc6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-fedb54ee18493749bb82061911228d80-830b804f34671847-00",
+ "traceparent": "00-c504988041d91542a0ac8bdae6ac7d2d-dedfa1519a7eae47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "205fac92bcc5e7ad5ae12d5912b7a8de",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:46 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -88,8 +90,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:46 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.6982549Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:04 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.3867934Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -98,19 +100,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "205fac92bcc5e7ad5ae12d5912b7a8de",
- "x-ms-request-id": "20752568-b002-001b-0121-5aea7a000000",
+ "x-ms-request-id": "9b331997-4002-002c-1e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableleq08oc6/@Element",
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.6982549Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.3867934Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:46.6982549Z",
+ "Timestamp": "2020-07-17T22:09:05.3867934Z",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:02:00Z",
@@ -130,17 +132,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableleq08oc6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-0ba8823bff3e9643bb20500983c401c5-72ff96c1baea984f-00",
+ "traceparent": "00-c1a305deff0aff4f8ae3f60c68782616-ae20981f318b8a43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c27b7f8fa7dffdd08bcb66f2ae03cf6d",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:47 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -169,8 +172,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:46 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.7452931Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:04 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.4348325Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -179,19 +182,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "c27b7f8fa7dffdd08bcb66f2ae03cf6d",
- "x-ms-request-id": "20752577-b002-001b-0e21-5aea7a000000",
+ "x-ms-request-id": "9b33199e-4002-002c-2586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableleq08oc6/@Element",
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.7452931Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.4348325Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"PartitionKey": "somPartition",
"RowKey": "02",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:46.7452931Z",
+ "Timestamp": "2020-07-17T22:09:05.4348325Z",
"StringTypeProperty": "This is table entity number 02",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:03:00Z",
@@ -211,17 +214,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableleq08oc6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d83848260a9d694aba8b3a08d6bc33d9-c7fa3cdf7df80e4c-00",
+ "traceparent": "00-805c4861d0d123459143f4f378a583d1-81fea7434a28fa4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a5d12b35e4986e0dd74935a7d2458a8a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:47 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -250,8 +254,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:46 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.7973372Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:04 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.475867Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -260,19 +264,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "a5d12b35e4986e0dd74935a7d2458a8a",
- "x-ms-request-id": "20752585-b002-001b-1b21-5aea7a000000",
+ "x-ms-request-id": "9b3319a6-4002-002c-2d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableleq08oc6/@Element",
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.7973372Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.475867Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"PartitionKey": "somPartition",
"RowKey": "03",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:46.7973372Z",
+ "Timestamp": "2020-07-17T22:09:05.475867Z",
"StringTypeProperty": "This is table entity number 03",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:04:00Z",
@@ -292,17 +296,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableleq08oc6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a1514d6fe35cc44ea5b4ad4657a007ea-91e37ad17817734b-00",
+ "traceparent": "00-b67a37a3e94f0043bdf1e5e91d219888-5fb74accf4fd9d45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "fb7541fb5e11ea23db6295fa55ba3857",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:47 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -331,8 +336,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:46 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.8433758Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:04 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.5199045Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -341,19 +346,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "fb7541fb5e11ea23db6295fa55ba3857",
- "x-ms-request-id": "2075258d-b002-001b-2321-5aea7a000000",
+ "x-ms-request-id": "9b3319ab-4002-002c-3286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableleq08oc6/@Element",
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.8433758Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.5199045Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"PartitionKey": "somPartition",
"RowKey": "04",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:46.8433758Z",
+ "Timestamp": "2020-07-17T22:09:05.5199045Z",
"StringTypeProperty": "This is table entity number 04",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:05:00Z",
@@ -373,17 +378,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableleq08oc6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1da7ffec0100bb4e85964d21a05de620-e8744190cfcc8c4c-00",
+ "traceparent": "00-8f767d5b127caa4197a8f06605378810-d9b4d1a328f8ff48-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e723bf1102e6aa45710deb9572292a45",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:47 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -412,8 +418,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:46 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.8854099Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:04 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.5659419Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -422,19 +428,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "e723bf1102e6aa45710deb9572292a45",
- "x-ms-request-id": "20752592-b002-001b-2821-5aea7a000000",
+ "x-ms-request-id": "9b3319b4-4002-002c-3b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableleq08oc6/@Element",
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.8854099Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.5659419Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"PartitionKey": "somPartition",
"RowKey": "05",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:46.8854099Z",
+ "Timestamp": "2020-07-17T22:09:05.5659419Z",
"StringTypeProperty": "This is table entity number 05",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:06:00Z",
@@ -454,17 +460,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableleq08oc6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ef52565843798c49a7e019aa514da336-e4acc7dbd7f79b47-00",
+ "traceparent": "00-c1919c2f0bdbeb48abb2929bd5572e67-72be4acd348c3a47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6df7dc41d38dd65b07e7c9364f13181c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:47 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -493,8 +500,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:46 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.9364527Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:04 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.6109802Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -503,19 +510,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "6df7dc41d38dd65b07e7c9364f13181c",
- "x-ms-request-id": "2075259b-b002-001b-3121-5aea7a000000",
+ "x-ms-request-id": "9b3319c1-4002-002c-4886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableleq08oc6/@Element",
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.9364527Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.6109802Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"PartitionKey": "somPartition",
"RowKey": "06",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:46.9364527Z",
+ "Timestamp": "2020-07-17T22:09:05.6109802Z",
"StringTypeProperty": "This is table entity number 06",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:07:00Z",
@@ -535,17 +542,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableleq08oc6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-0e0eb3e4a00026418a119db363aee9a5-8e85859d9d0f9a4a-00",
+ "traceparent": "00-3faa1fff2e098040b9f6359305589f01-394ef3d87fe9c44c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1295dd10a222f8a3fbca8a04738d78b2",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:47 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -574,8 +582,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:46 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.9864934Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:04 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.6530152Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -584,19 +592,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "1295dd10a222f8a3fbca8a04738d78b2",
- "x-ms-request-id": "207525a1-b002-001b-3721-5aea7a000000",
+ "x-ms-request-id": "9b3319c8-4002-002c-4f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableleq08oc6/@Element",
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.9864934Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.6530152Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"PartitionKey": "somPartition",
"RowKey": "07",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:46.9864934Z",
+ "Timestamp": "2020-07-17T22:09:05.6530152Z",
"StringTypeProperty": "This is table entity number 07",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:08:00Z",
@@ -616,17 +624,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableleq08oc6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-fee2bd0c1b63b14aad7d9e2e9231ff82-8c73dc392876134b-00",
+ "traceparent": "00-7a7a93d24958134d958891aed8c78d5f-febe2c6dfe216645-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "79b94f37cbc23eca644ddfff390f5b5e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:47 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -655,8 +664,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:46 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.0325316Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:04 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.6980526Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -665,19 +674,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "79b94f37cbc23eca644ddfff390f5b5e",
- "x-ms-request-id": "207525a6-b002-001b-3c21-5aea7a000000",
+ "x-ms-request-id": "9b3319cf-4002-002c-5686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableleq08oc6/@Element",
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.0325316Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.6980526Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"PartitionKey": "somPartition",
"RowKey": "08",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:47.0325316Z",
+ "Timestamp": "2020-07-17T22:09:05.6980526Z",
"StringTypeProperty": "This is table entity number 08",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:09:00Z",
@@ -697,17 +706,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableleq08oc6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-3eb9eccf03efd84bbd5b5b460b5b1c83-f3000edae461f54e-00",
+ "traceparent": "00-c8fb56749069dc4eb3774d304644538b-1dc750261710e94c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9485cef517949e2338fe72c249576379",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:47 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -736,8 +746,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:46 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.0825735Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:04 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.7420884Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -746,19 +756,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "9485cef517949e2338fe72c249576379",
- "x-ms-request-id": "207525ac-b002-001b-4221-5aea7a000000",
+ "x-ms-request-id": "9b3319d5-4002-002c-5c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableleq08oc6/@Element",
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.0825735Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.7420884Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"PartitionKey": "somPartition",
"RowKey": "09",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:47.0825735Z",
+ "Timestamp": "2020-07-17T22:09:05.7420884Z",
"StringTypeProperty": "This is table entity number 09",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:10:00Z",
@@ -778,17 +788,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableleq08oc6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6315ba5f43132e4387827aebf7a9b092-9e8fccc5cefad04f-00",
+ "traceparent": "00-6aa4551444d1bc43b4b39f9e6b8f1484-be5299641bb26143-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ffff176e9e59455a1357aed4c3a4bfec",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:47 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -817,8 +828,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:46 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.1276105Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:04 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.7901279Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -827,19 +838,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ffff176e9e59455a1357aed4c3a4bfec",
- "x-ms-request-id": "207525b4-b002-001b-4821-5aea7a000000",
+ "x-ms-request-id": "9b3319e1-4002-002c-6886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableleq08oc6/@Element",
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.1276105Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.7901279Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"PartitionKey": "somPartition",
"RowKey": "10",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:47.1276105Z",
+ "Timestamp": "2020-07-17T22:09:05.7901279Z",
"StringTypeProperty": "This is table entity number 10",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:11:00Z",
@@ -859,17 +870,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableleq08oc6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-74bed27f7fd2a24ea4fe5a60b5d33352-ab2e86787019a74a-00",
+ "traceparent": "00-095040cf7c8b5e40959cd0c8e80239a1-4b0a98de864cd44b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a40e2b6fe3081f1d2c1b40c35907f40c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:47 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -898,8 +910,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:46 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.1706467Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:04 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.8341653Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -908,19 +920,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "a40e2b6fe3081f1d2c1b40c35907f40c",
- "x-ms-request-id": "207525bf-b002-001b-5321-5aea7a000000",
+ "x-ms-request-id": "9b3319e7-4002-002c-6e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableleq08oc6/@Element",
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.1706467Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.8341653Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"PartitionKey": "somPartition",
"RowKey": "11",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:47.1706467Z",
+ "Timestamp": "2020-07-17T22:09:05.8341653Z",
"StringTypeProperty": "This is table entity number 11",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:12:00Z",
@@ -940,17 +952,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableleq08oc6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ad87c42dbd2e4f4d9b10773dea2271cf-51c4d7f28ddaeb4b-00",
+ "traceparent": "00-b4158f5fdd1c5347baea44edfb337049-579cf7be837d9045-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "219065ea5c0f56057440813d694edb93",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:47 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -979,8 +992,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:46 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.2146836Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:05 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.8822057Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -989,19 +1002,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "219065ea5c0f56057440813d694edb93",
- "x-ms-request-id": "207525ce-b002-001b-6221-5aea7a000000",
+ "x-ms-request-id": "9b3319f1-4002-002c-7886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableleq08oc6/@Element",
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.2146836Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.8822057Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"PartitionKey": "somPartition",
"RowKey": "12",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:47.2146836Z",
+ "Timestamp": "2020-07-17T22:09:05.8822057Z",
"StringTypeProperty": "This is table entity number 12",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:13:00Z",
@@ -1021,17 +1034,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableleq08oc6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-0d2a316be5bdad428d62e8aa4008b7ff-d7831ace7a73f84e-00",
+ "traceparent": "00-2af3a75ba127de4881116125d845c49e-31186fc7635d4d4d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1d53853fbe488b71f9dfd23d5e96eb0b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:47 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:06 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1060,8 +1074,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:47 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.2567181Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:05 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.9262415Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1070,19 +1084,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "1d53853fbe488b71f9dfd23d5e96eb0b",
- "x-ms-request-id": "207525d9-b002-001b-6d21-5aea7a000000",
+ "x-ms-request-id": "9b3319f9-4002-002c-8086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableleq08oc6/@Element",
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.2567181Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.9262415Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"PartitionKey": "somPartition",
"RowKey": "13",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:47.2567181Z",
+ "Timestamp": "2020-07-17T22:09:05.9262415Z",
"StringTypeProperty": "This is table entity number 13",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:14:00Z",
@@ -1102,17 +1116,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableleq08oc6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-673788604be10543a0babc6c5849d906-6a8f9b41ad9edd4b-00",
+ "traceparent": "00-249cc5235e4fd24894c775a8520af2cc-579557d4142a7d42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5deaa1629e1412dc26b830c862e0b6de",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:47 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:06 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1141,8 +1156,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:47 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.3017563Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:05 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.9712789Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1151,19 +1166,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "5deaa1629e1412dc26b830c862e0b6de",
- "x-ms-request-id": "207525e3-b002-001b-7721-5aea7a000000",
+ "x-ms-request-id": "9b331a00-4002-002c-0686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableleq08oc6/@Element",
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.3017563Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.9712789Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"PartitionKey": "somPartition",
"RowKey": "14",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:47.3017563Z",
+ "Timestamp": "2020-07-17T22:09:05.9712789Z",
"StringTypeProperty": "This is table entity number 14",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:15:00Z",
@@ -1183,17 +1198,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableleq08oc6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-da40a9dac6744944a653d48880ff2a99-c874b287972f2542-00",
+ "traceparent": "00-03a6630b2a39ba4fb780b7b3125a4b95-0369904fb26a9743-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d384ac40d7b42bc4f404273089c7f8de",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:47 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:06 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1222,8 +1238,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:47 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.3407875Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:05 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A06.0153151Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1232,19 +1248,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d384ac40d7b42bc4f404273089c7f8de",
- "x-ms-request-id": "207525ee-b002-001b-0221-5aea7a000000",
+ "x-ms-request-id": "9b331a03-4002-002c-0986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableleq08oc6/@Element",
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.3407875Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A06.0153151Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"PartitionKey": "somPartition",
"RowKey": "15",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:47.3407875Z",
+ "Timestamp": "2020-07-17T22:09:06.0153151Z",
"StringTypeProperty": "This is table entity number 15",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:16:00Z",
@@ -1264,17 +1280,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableleq08oc6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8219ff3d6c65ac40bce49164d0717515-b8e8b69e64cdc441-00",
+ "traceparent": "00-9e776a9fc21c4f4abae8e93984609f3e-6a2053665fc01342-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c7da75547e63a17fa940f78f8da82918",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:47 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:06 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1303,8 +1320,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:47 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.3798207Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:05 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A06.0613547Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1313,19 +1330,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "c7da75547e63a17fa940f78f8da82918",
- "x-ms-request-id": "207525f4-b002-001b-0721-5aea7a000000",
+ "x-ms-request-id": "9b331a0b-4002-002c-1186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableleq08oc6/@Element",
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.3798207Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A06.0613547Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"PartitionKey": "somPartition",
"RowKey": "16",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:47.3798207Z",
+ "Timestamp": "2020-07-17T22:09:06.0613547Z",
"StringTypeProperty": "This is table entity number 16",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:17:00Z",
@@ -1345,17 +1362,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableleq08oc6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f3d4642f54f7e44093368ee9382d50ac-35f3a56e4aae1f46-00",
+ "traceparent": "00-e020b74f32598a4c903efd043be92b0f-0c63f5ae355cb640-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b1fdf42918118a56ddbe680f76ab885e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:47 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:06 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1384,8 +1402,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:47 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.4238569Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:05 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A06.1123967Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1394,19 +1412,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "b1fdf42918118a56ddbe680f76ab885e",
- "x-ms-request-id": "20752600-b002-001b-1321-5aea7a000000",
+ "x-ms-request-id": "9b331a0e-4002-002c-1486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableleq08oc6/@Element",
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.4238569Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A06.1123967Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"PartitionKey": "somPartition",
"RowKey": "17",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:47.4238569Z",
+ "Timestamp": "2020-07-17T22:09:06.1123967Z",
"StringTypeProperty": "This is table entity number 17",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:18:00Z",
@@ -1426,17 +1444,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableleq08oc6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8bd53954511fa841a32d19c2e0abae17-671f9d49cd49ac47-00",
+ "traceparent": "00-f950a6eed7e99444b2f4219c1be67057-9279bb6aa74dfa49-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ec7452c0ef06c27a2de22973e0349e4b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:47 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:06 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1465,8 +1484,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:47 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.4748992Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:05 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A06.161437Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1475,19 +1494,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ec7452c0ef06c27a2de22973e0349e4b",
- "x-ms-request-id": "20752606-b002-001b-1921-5aea7a000000",
+ "x-ms-request-id": "9b331a14-4002-002c-1a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableleq08oc6/@Element",
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.4748992Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A06.161437Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"PartitionKey": "somPartition",
"RowKey": "18",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:47.4748992Z",
+ "Timestamp": "2020-07-17T22:09:06.161437Z",
"StringTypeProperty": "This is table entity number 18",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:19:00Z",
@@ -1507,17 +1526,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableleq08oc6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-515fa9c2029ac0409b42b9fc8613968a-6685312591db2743-00",
+ "traceparent": "00-eedbdeb9135dd34aae4bcf2f1bb98d4b-f19ccc64c1260e47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "95060edb46ca3ccc1e50e9a4156f2afd",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:47 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:06 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1546,8 +1566,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:47 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.5189366Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:05 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A06.2084761Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1556,19 +1576,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "95060edb46ca3ccc1e50e9a4156f2afd",
- "x-ms-request-id": "20752615-b002-001b-2821-5aea7a000000",
+ "x-ms-request-id": "9b331a1d-4002-002c-2386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableleq08oc6/@Element",
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.5189366Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A06.2084761Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"PartitionKey": "somPartition",
"RowKey": "19",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:47.5189366Z",
+ "Timestamp": "2020-07-17T22:09:06.2084761Z",
"StringTypeProperty": "This is table entity number 19",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:20:00Z",
@@ -1588,17 +1608,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableleq08oc6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-2c3f44177a43da4f92ff9279d86d0c5c-65962d26c336554e-00",
+ "traceparent": "00-9bde5bcd6bb5c54db606da8139e83ea7-412945f06a3f884c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3bcf98b73c343a12793b832eeee3aaa8",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:47 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:06 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1627,8 +1648,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:47 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.5619711Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:05 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A06.2555157Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1637,19 +1658,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "3bcf98b73c343a12793b832eeee3aaa8",
- "x-ms-request-id": "2075261f-b002-001b-3221-5aea7a000000",
+ "x-ms-request-id": "9b331a27-4002-002c-2c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableleq08oc6/@Element",
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.5619711Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A06.2555157Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"PartitionKey": "somPartition",
"RowKey": "20",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:47.5619711Z",
+ "Timestamp": "2020-07-17T22:09:06.2555157Z",
"StringTypeProperty": "This is table entity number 20",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:21:00Z",
@@ -1669,14 +1690,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableleq08oc6()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "67341d20f3a579948537cdb605d5adbe",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:47 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:06 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1685,7 +1707,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:47 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:05 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1695,7 +1717,7 @@
"x-ms-client-request-id": "67341d20f3a579948537cdb605d5adbe",
"x-ms-continuation-NextPartitionKey": "1!16!c29tUGFydGl0aW9u",
"x-ms-continuation-NextRowKey": "1!4!MDY-",
- "x-ms-request-id": "20752629-b002-001b-3c21-5aea7a000000",
+ "x-ms-request-id": "9b331a2e-4002-002c-3286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1704,12 +1726,12 @@
{
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.6982549Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.3867934Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:46.6982549Z",
+ "Timestamp": "2020-07-17T22:09:05.3867934Z",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:02:00Z",
@@ -1727,12 +1749,12 @@
{
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.7452931Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.4348325Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"PartitionKey": "somPartition",
"RowKey": "02",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:46.7452931Z",
+ "Timestamp": "2020-07-17T22:09:05.4348325Z",
"StringTypeProperty": "This is table entity number 02",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:03:00Z",
@@ -1750,12 +1772,12 @@
{
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.7973372Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.475867Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"PartitionKey": "somPartition",
"RowKey": "03",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:46.7973372Z",
+ "Timestamp": "2020-07-17T22:09:05.475867Z",
"StringTypeProperty": "This is table entity number 03",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:04:00Z",
@@ -1773,12 +1795,12 @@
{
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.8433758Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.5199045Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"PartitionKey": "somPartition",
"RowKey": "04",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:46.8433758Z",
+ "Timestamp": "2020-07-17T22:09:05.5199045Z",
"StringTypeProperty": "This is table entity number 04",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:05:00Z",
@@ -1796,12 +1818,12 @@
{
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.8854099Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.5659419Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"PartitionKey": "somPartition",
"RowKey": "05",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:46.8854099Z",
+ "Timestamp": "2020-07-17T22:09:05.5659419Z",
"StringTypeProperty": "This is table entity number 05",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:06:00Z",
@@ -1823,14 +1845,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableleq08oc6()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextPartitionKey=1%2116%21c29tUGFydGl0aW9u\u0026NextRowKey=1%214%21MDY-",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "47bb2cb862659f17fbcc1b8fc39e4d3b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:47 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:06 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1839,7 +1862,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:47 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:05 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1849,7 +1872,7 @@
"x-ms-client-request-id": "47bb2cb862659f17fbcc1b8fc39e4d3b",
"x-ms-continuation-NextPartitionKey": "1!16!c29tUGFydGl0aW9u",
"x-ms-continuation-NextRowKey": "1!4!MTE-",
- "x-ms-request-id": "20752641-b002-001b-5421-5aea7a000000",
+ "x-ms-request-id": "9b331a38-4002-002c-3c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1858,12 +1881,12 @@
{
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.9364527Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.6109802Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"PartitionKey": "somPartition",
"RowKey": "06",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:46.9364527Z",
+ "Timestamp": "2020-07-17T22:09:05.6109802Z",
"StringTypeProperty": "This is table entity number 06",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:07:00Z",
@@ -1881,12 +1904,12 @@
{
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.9864934Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.6530152Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"PartitionKey": "somPartition",
"RowKey": "07",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:46.9864934Z",
+ "Timestamp": "2020-07-17T22:09:05.6530152Z",
"StringTypeProperty": "This is table entity number 07",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:08:00Z",
@@ -1904,12 +1927,12 @@
{
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.0325316Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.6980526Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"PartitionKey": "somPartition",
"RowKey": "08",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:47.0325316Z",
+ "Timestamp": "2020-07-17T22:09:05.6980526Z",
"StringTypeProperty": "This is table entity number 08",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:09:00Z",
@@ -1927,12 +1950,12 @@
{
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.0825735Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.7420884Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"PartitionKey": "somPartition",
"RowKey": "09",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:47.0825735Z",
+ "Timestamp": "2020-07-17T22:09:05.7420884Z",
"StringTypeProperty": "This is table entity number 09",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:10:00Z",
@@ -1950,12 +1973,12 @@
{
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.1276105Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.7901279Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"PartitionKey": "somPartition",
"RowKey": "10",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:47.1276105Z",
+ "Timestamp": "2020-07-17T22:09:05.7901279Z",
"StringTypeProperty": "This is table entity number 10",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:11:00Z",
@@ -1977,14 +2000,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableleq08oc6()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextPartitionKey=1%2116%21c29tUGFydGl0aW9u\u0026NextRowKey=1%214%21MTE-",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f88341a5c23ac4580455b6fc6e5c35a4",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:48 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:06 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1993,7 +2017,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:47 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:05 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -2003,7 +2027,7 @@
"x-ms-client-request-id": "f88341a5c23ac4580455b6fc6e5c35a4",
"x-ms-continuation-NextPartitionKey": "1!16!c29tUGFydGl0aW9u",
"x-ms-continuation-NextRowKey": "1!4!MTY-",
- "x-ms-request-id": "20752657-b002-001b-6a21-5aea7a000000",
+ "x-ms-request-id": "9b331a47-4002-002c-4a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -2012,12 +2036,12 @@
{
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.1706467Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.8341653Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"PartitionKey": "somPartition",
"RowKey": "11",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:47.1706467Z",
+ "Timestamp": "2020-07-17T22:09:05.8341653Z",
"StringTypeProperty": "This is table entity number 11",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:12:00Z",
@@ -2035,12 +2059,12 @@
{
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.2146836Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.8822057Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"PartitionKey": "somPartition",
"RowKey": "12",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:47.2146836Z",
+ "Timestamp": "2020-07-17T22:09:05.8822057Z",
"StringTypeProperty": "This is table entity number 12",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:13:00Z",
@@ -2058,12 +2082,12 @@
{
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.2567181Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.9262415Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"PartitionKey": "somPartition",
"RowKey": "13",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:47.2567181Z",
+ "Timestamp": "2020-07-17T22:09:05.9262415Z",
"StringTypeProperty": "This is table entity number 13",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:14:00Z",
@@ -2081,12 +2105,12 @@
{
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.3017563Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.9712789Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"PartitionKey": "somPartition",
"RowKey": "14",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:47.3017563Z",
+ "Timestamp": "2020-07-17T22:09:05.9712789Z",
"StringTypeProperty": "This is table entity number 14",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:15:00Z",
@@ -2104,12 +2128,12 @@
{
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.3407875Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A06.0153151Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"PartitionKey": "somPartition",
"RowKey": "15",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:47.3407875Z",
+ "Timestamp": "2020-07-17T22:09:06.0153151Z",
"StringTypeProperty": "This is table entity number 15",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:16:00Z",
@@ -2131,14 +2155,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableleq08oc6()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextPartitionKey=1%2116%21c29tUGFydGl0aW9u\u0026NextRowKey=1%214%21MTY-",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c276c48e6327be4305956cd8d704b6e7",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:48 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:06 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2147,7 +2172,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:47 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:05 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -2155,7 +2180,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "c276c48e6327be4305956cd8d704b6e7",
- "x-ms-request-id": "2075266a-b002-001b-7d21-5aea7a000000",
+ "x-ms-request-id": "9b331a55-4002-002c-5886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -2164,12 +2189,12 @@
{
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.3798207Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A06.0613547Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"PartitionKey": "somPartition",
"RowKey": "16",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:47.3798207Z",
+ "Timestamp": "2020-07-17T22:09:06.0613547Z",
"StringTypeProperty": "This is table entity number 16",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:17:00Z",
@@ -2187,12 +2212,12 @@
{
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.4238569Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A06.1123967Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"PartitionKey": "somPartition",
"RowKey": "17",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:47.4238569Z",
+ "Timestamp": "2020-07-17T22:09:06.1123967Z",
"StringTypeProperty": "This is table entity number 17",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:18:00Z",
@@ -2210,12 +2235,12 @@
{
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.4748992Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A06.161437Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"PartitionKey": "somPartition",
"RowKey": "18",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:47.4748992Z",
+ "Timestamp": "2020-07-17T22:09:06.161437Z",
"StringTypeProperty": "This is table entity number 18",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:19:00Z",
@@ -2233,12 +2258,12 @@
{
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.5189366Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A06.2084761Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"PartitionKey": "somPartition",
"RowKey": "19",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:47.5189366Z",
+ "Timestamp": "2020-07-17T22:09:06.2084761Z",
"StringTypeProperty": "This is table entity number 19",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:20:00Z",
@@ -2256,12 +2281,12 @@
{
"odata.type": "chrissscratch.testtableleq08oc6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A47.5619711Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A06.2555157Z\u0027\u0022",
"odata.editLink": "testtableleq08oc6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"PartitionKey": "somPartition",
"RowKey": "20",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:47.5619711Z",
+ "Timestamp": "2020-07-17T22:09:06.2555157Z",
"StringTypeProperty": "This is table entity number 20",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:21:00Z",
@@ -2285,13 +2310,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-13d0a713f0d16a41bc9664d7db899d10-d2987d4a7b14f54d-00",
+ "traceparent": "00-c824b56c4b911d47a395332c9aabbbee-7caccc3625421c4d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c41092eab451f583d3f7420fab1a309e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:48 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:06 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2300,14 +2325,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:47 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:05 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "c41092eab451f583d3f7420fab1a309e",
- "x-ms-request-id": "2075267f-b002-001b-1121-5aea7a000000",
+ "x-ms-request-id": "9b331a62-4002-002c-6586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedCustomEntitiesCanBeQueriedWithAndWithoutPagination(null).json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedCustomEntitiesCanBeQueriedWithAndWithoutPagination(null).json
index 82e4822fc652..1204f7ba1c85 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedCustomEntitiesCanBeQueriedWithAndWithoutPagination(null).json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedCustomEntitiesCanBeQueriedWithAndWithoutPagination(null).json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d9ea96e65a37004d88a83b4c012018ac-097a3adffeb8314e-00",
+ "traceparent": "00-f9deb2b39cac0c4880f006061d16d792-fc5a34a0c616e94e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e0565896be0f602ac22557854347e341",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:21 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:50 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable70nsg0nu\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "e0565896be0f602ac22557854347e341",
- "x-ms-request-id": "20750b75-b002-001b-7a21-5aea7a000000",
+ "x-ms-request-id": "9b330eb5-4002-002c-7686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-77aabc20b9b67a4f9acdd8a0ab0093e3-2a7902ff09123146-00",
+ "traceparent": "00-70c75481a97a5d48aaf38c2702d90c45-4c3c3cdf050dbd4d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4021adffa89d90a0e66cfb29d0dedc42",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -88,8 +90,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:21 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A21.6244169Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:50 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A51.7924725Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -98,19 +100,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "4021adffa89d90a0e66cfb29d0dedc42",
- "x-ms-request-id": "20750b87-b002-001b-0a21-5aea7a000000",
+ "x-ms-request-id": "9b330ebe-4002-002c-7d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70nsg0nu/@Element",
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A21.6244169Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A51.7924725Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:21.6244169Z",
+ "Timestamp": "2020-07-17T22:08:51.7924725Z",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:02:00Z",
@@ -130,17 +132,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e744f0ff8333ab44a06c304a91bae1a2-e9c186bc7b4f9747-00",
+ "traceparent": "00-f5df0eaf22d1644db7a645568cab42d7-0886cec40c9fe844-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "29b4cfa49fceae1674ad5992214b97e0",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -169,8 +172,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:21 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A21.6684538Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:51 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A51.843515Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -179,19 +182,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "29b4cfa49fceae1674ad5992214b97e0",
- "x-ms-request-id": "20750b90-b002-001b-1221-5aea7a000000",
+ "x-ms-request-id": "9b330ec5-4002-002c-0486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70nsg0nu/@Element",
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A21.6684538Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A51.843515Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"PartitionKey": "somPartition",
"RowKey": "02",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:21.6684538Z",
+ "Timestamp": "2020-07-17T22:08:51.843515Z",
"StringTypeProperty": "This is table entity number 02",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:03:00Z",
@@ -211,17 +214,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-551ae2db6947d94f831c03dcbbf37126-4a095d1046825248-00",
+ "traceparent": "00-1d52315f9533af40a874d2d4c20e3d4d-108a447f9e926d42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ab937f9caf15ed9db7c5faa2c3018fe4",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -250,8 +254,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:21 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A21.7134923Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:51 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A51.8895533Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -260,19 +264,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ab937f9caf15ed9db7c5faa2c3018fe4",
- "x-ms-request-id": "20750ba2-b002-001b-2221-5aea7a000000",
+ "x-ms-request-id": "9b330ed2-4002-002c-1186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70nsg0nu/@Element",
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A21.7134923Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A51.8895533Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"PartitionKey": "somPartition",
"RowKey": "03",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:21.7134923Z",
+ "Timestamp": "2020-07-17T22:08:51.8895533Z",
"StringTypeProperty": "This is table entity number 03",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:04:00Z",
@@ -292,17 +296,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-eb370e224160ce4cb877bbb860cb1e5f-61999f0ecc8f2f45-00",
+ "traceparent": "00-f36fbd7551d1fa4fa2788cc3b6ab6e0c-5cca47838f373147-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "74e01548ba9360739773ccf04e0d6f9a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -331,8 +336,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:21 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A21.7585304Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:51 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A51.935592Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -341,19 +346,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "74e01548ba9360739773ccf04e0d6f9a",
- "x-ms-request-id": "20750ba6-b002-001b-2621-5aea7a000000",
+ "x-ms-request-id": "9b330ed9-4002-002c-1886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70nsg0nu/@Element",
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A21.7585304Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A51.935592Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"PartitionKey": "somPartition",
"RowKey": "04",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:21.7585304Z",
+ "Timestamp": "2020-07-17T22:08:51.935592Z",
"StringTypeProperty": "This is table entity number 04",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:05:00Z",
@@ -373,17 +378,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f2cf260ac45abf46b8fce8dc2aebd0de-f3030f7c890b0244-00",
+ "traceparent": "00-614edf8e65b1704db4519f7d3f7a5207-2d9a7f620531654f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "508c1ad5314af52c32c67108a473eb73",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -412,8 +418,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:21 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A21.8025659Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:51 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A51.9906377Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -422,19 +428,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "508c1ad5314af52c32c67108a473eb73",
- "x-ms-request-id": "20750baf-b002-001b-2f21-5aea7a000000",
+ "x-ms-request-id": "9b330ee0-4002-002c-1f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70nsg0nu/@Element",
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A21.8025659Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A51.9906377Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"PartitionKey": "somPartition",
"RowKey": "05",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:21.8025659Z",
+ "Timestamp": "2020-07-17T22:08:51.9906377Z",
"StringTypeProperty": "This is table entity number 05",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:06:00Z",
@@ -454,17 +460,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-7fc6474fc64d0b4182c398f76a8debc8-2269c87fc2e9314a-00",
+ "traceparent": "00-72e5b9d14ba7884ea930bdde05261ea7-ae4594ec24e92d4d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0c4a751d236be24d0c3314a2e2ad9fa9",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -493,8 +500,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:21 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A21.8456019Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:51 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.0366756Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -503,19 +510,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0c4a751d236be24d0c3314a2e2ad9fa9",
- "x-ms-request-id": "20750bb7-b002-001b-3721-5aea7a000000",
+ "x-ms-request-id": "9b330ee5-4002-002c-2486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70nsg0nu/@Element",
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A21.8456019Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.0366756Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"PartitionKey": "somPartition",
"RowKey": "06",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:21.8456019Z",
+ "Timestamp": "2020-07-17T22:08:52.0366756Z",
"StringTypeProperty": "This is table entity number 06",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:07:00Z",
@@ -535,17 +542,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-5057c740ac36ba4eaf017e0954d8632d-6dd02fdde4263945-00",
+ "traceparent": "00-8fb98cf14518b945970084d8535c7099-a1298fe4ede3de49-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a8cd5f563f741799e8ea42cc486bbc23",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -574,8 +582,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:21 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A21.8996475Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:51 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.0797114Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -584,19 +592,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "a8cd5f563f741799e8ea42cc486bbc23",
- "x-ms-request-id": "20750bc9-b002-001b-4921-5aea7a000000",
+ "x-ms-request-id": "9b330eee-4002-002c-2d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70nsg0nu/@Element",
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A21.8996475Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.0797114Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"PartitionKey": "somPartition",
"RowKey": "07",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:21.8996475Z",
+ "Timestamp": "2020-07-17T22:08:52.0797114Z",
"StringTypeProperty": "This is table entity number 07",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:08:00Z",
@@ -616,17 +624,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-74886d715a371944856e4f4bce5ecbd3-205400946266d94a-00",
+ "traceparent": "00-a598c3d911e79340ab2ab5678b3a12b3-4708159709521047-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d9d2598862c3b22fcdaa43171c8a1285",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -655,8 +664,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:21 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A21.9426839Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:51 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.1257492Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -665,19 +674,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d9d2598862c3b22fcdaa43171c8a1285",
- "x-ms-request-id": "20750bd0-b002-001b-5021-5aea7a000000",
+ "x-ms-request-id": "9b330ef8-4002-002c-3686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70nsg0nu/@Element",
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A21.9426839Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.1257492Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"PartitionKey": "somPartition",
"RowKey": "08",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:21.9426839Z",
+ "Timestamp": "2020-07-17T22:08:52.1257492Z",
"StringTypeProperty": "This is table entity number 08",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:09:00Z",
@@ -697,17 +706,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-919ef5d201913e4380cd41c64075538c-014bb4180828c343-00",
+ "traceparent": "00-aabc178c3dad5b41b8644408d80c83f3-d177c7e4490e774f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "44b1c72742a5deffdb322380e08099a1",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -736,8 +746,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:21 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A21.9867194Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:51 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.1707875Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -746,19 +756,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "44b1c72742a5deffdb322380e08099a1",
- "x-ms-request-id": "20750bdb-b002-001b-5b21-5aea7a000000",
+ "x-ms-request-id": "9b330f02-4002-002c-4086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70nsg0nu/@Element",
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A21.9867194Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.1707875Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"PartitionKey": "somPartition",
"RowKey": "09",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:21.9867194Z",
+ "Timestamp": "2020-07-17T22:08:52.1707875Z",
"StringTypeProperty": "This is table entity number 09",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:10:00Z",
@@ -778,17 +788,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9bc278a986f328469bbe2b81dc0d382e-1077ec4271b3914e-00",
+ "traceparent": "00-8dc32b05d4090a41ae0d726fa9102ced-ae500709e5282840-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8919f077c5daf3e6301bdac9fb82fa5e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -817,8 +828,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:21 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.0287563Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:51 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.2208291Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -827,19 +838,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "8919f077c5daf3e6301bdac9fb82fa5e",
- "x-ms-request-id": "20750bea-b002-001b-6a21-5aea7a000000",
+ "x-ms-request-id": "9b330f13-4002-002c-5186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70nsg0nu/@Element",
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.0287563Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.2208291Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"PartitionKey": "somPartition",
"RowKey": "10",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.0287563Z",
+ "Timestamp": "2020-07-17T22:08:52.2208291Z",
"StringTypeProperty": "This is table entity number 10",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:11:00Z",
@@ -859,17 +870,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1c29c47c358a3641afb24a004d3701ee-80b537a362eef643-00",
+ "traceparent": "00-292e0ac1d7d2d440922f0ef0904d4e84-b90444380542b243-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "80a4bdd877b9457d59f4fd903fafd14c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -898,8 +910,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:21 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.0707897Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:51 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.2648649Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -908,19 +920,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "80a4bdd877b9457d59f4fd903fafd14c",
- "x-ms-request-id": "20750bf4-b002-001b-7421-5aea7a000000",
+ "x-ms-request-id": "9b330f20-4002-002c-5e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70nsg0nu/@Element",
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.0707897Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.2648649Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"PartitionKey": "somPartition",
"RowKey": "11",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.0707897Z",
+ "Timestamp": "2020-07-17T22:08:52.2648649Z",
"StringTypeProperty": "This is table entity number 11",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:12:00Z",
@@ -940,17 +952,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-bd1b051fe436bd44a5009df72bcba3b0-058d947a9c48954f-00",
+ "traceparent": "00-727e179478abaa41aaecf069d6612ce0-03a5527e33e3ec43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2b9fa211887062aae1be138a6835e358",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -979,8 +992,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:21 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.1128262Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:51 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.3119048Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -989,19 +1002,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "2b9fa211887062aae1be138a6835e358",
- "x-ms-request-id": "20750bfa-b002-001b-7a21-5aea7a000000",
+ "x-ms-request-id": "9b330f2a-4002-002c-6886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70nsg0nu/@Element",
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.1128262Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.3119048Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"PartitionKey": "somPartition",
"RowKey": "12",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.1128262Z",
+ "Timestamp": "2020-07-17T22:08:52.3119048Z",
"StringTypeProperty": "This is table entity number 12",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:13:00Z",
@@ -1021,17 +1034,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f9591f7d59e2fb43baef9afe313e4aa2-f9603b60f8995b45-00",
+ "traceparent": "00-f322f1291f14694898921dc3a2401d4d-8b771acd00135447-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "23a7c53818dbffe872d430e6c755b481",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1060,8 +1074,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:21 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.1568625Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:51 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.3549406Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1070,19 +1084,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "23a7c53818dbffe872d430e6c755b481",
- "x-ms-request-id": "20750c05-b002-001b-0321-5aea7a000000",
+ "x-ms-request-id": "9b330f33-4002-002c-7186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70nsg0nu/@Element",
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.1568625Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.3549406Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"PartitionKey": "somPartition",
"RowKey": "13",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.1568625Z",
+ "Timestamp": "2020-07-17T22:08:52.3549406Z",
"StringTypeProperty": "This is table entity number 13",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:14:00Z",
@@ -1102,17 +1116,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-4908df57ce1a8d4f84a5aaf5a058be7d-fe96ec6c1136bc47-00",
+ "traceparent": "00-dd4488d107be2a428fac1ed0076c0551-88505dc76c97d64b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "58b88d49cee250ed12429ffb64f3dd24",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1141,8 +1156,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:21 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.1948943Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:51 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.396976Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1151,19 +1166,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "58b88d49cee250ed12429ffb64f3dd24",
- "x-ms-request-id": "20750c0a-b002-001b-0721-5aea7a000000",
+ "x-ms-request-id": "9b330f3c-4002-002c-7a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70nsg0nu/@Element",
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.1948943Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.396976Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"PartitionKey": "somPartition",
"RowKey": "14",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.1948943Z",
+ "Timestamp": "2020-07-17T22:08:52.396976Z",
"StringTypeProperty": "This is table entity number 14",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:15:00Z",
@@ -1183,17 +1198,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d7c06539e864454f8b05700c2f295490-97f46dd9ac40cc4b-00",
+ "traceparent": "00-fa8538894523674183cf48ab9c687268-531ae2764ceab047-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7958a510ae07f870baa0b99c58c39a8c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1222,8 +1238,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:22 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.2379303Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:51 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.4420121Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1232,19 +1248,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "7958a510ae07f870baa0b99c58c39a8c",
- "x-ms-request-id": "20750c18-b002-001b-1321-5aea7a000000",
+ "x-ms-request-id": "9b330f47-4002-002c-0586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70nsg0nu/@Element",
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.2379303Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.4420121Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"PartitionKey": "somPartition",
"RowKey": "15",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.2379303Z",
+ "Timestamp": "2020-07-17T22:08:52.4420121Z",
"StringTypeProperty": "This is table entity number 15",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:16:00Z",
@@ -1264,17 +1280,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1b9f8cf76342964bae76795ba82ebb95-e9012d3dccc4524e-00",
+ "traceparent": "00-f4f7d0d7cac7cf46a7b432dc7606dc97-0ed139ceed9efa4d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "da4092098a7c6975d857109979ec9b7f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1303,8 +1320,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:22 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.2769638Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:51 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.4850496Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1313,19 +1330,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "da4092098a7c6975d857109979ec9b7f",
- "x-ms-request-id": "20750c22-b002-001b-1b21-5aea7a000000",
+ "x-ms-request-id": "9b330f4c-4002-002c-0a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70nsg0nu/@Element",
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.2769638Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.4850496Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"PartitionKey": "somPartition",
"RowKey": "16",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.2769638Z",
+ "Timestamp": "2020-07-17T22:08:52.4850496Z",
"StringTypeProperty": "This is table entity number 16",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:17:00Z",
@@ -1345,17 +1362,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-befcb7a407d62c42aeace360410bdf0b-eb8dd66655130040-00",
+ "traceparent": "00-5899a5114935ba4c87da00953e22426b-688f83d00b560a4b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "22d50bf63afc9b791cc09e421550f74e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1384,8 +1402,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:22 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.3199994Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:51 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.5280837Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1394,19 +1412,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "22d50bf63afc9b791cc09e421550f74e",
- "x-ms-request-id": "20750c29-b002-001b-2021-5aea7a000000",
+ "x-ms-request-id": "9b330f55-4002-002c-1186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70nsg0nu/@Element",
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.3199994Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.5280837Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"PartitionKey": "somPartition",
"RowKey": "17",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.3199994Z",
+ "Timestamp": "2020-07-17T22:08:52.5280837Z",
"StringTypeProperty": "This is table entity number 17",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:18:00Z",
@@ -1426,17 +1444,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ecd2794800cf3c4fb5841f9ac97023e0-8025e411600bb040-00",
+ "traceparent": "00-2cdd264a54cada4aa0b648bee85315bb-b5c321a2b326654d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d1f112a803b286a72fefa1af9dd77ecd",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1465,8 +1484,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:22 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.3630345Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:51 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.5701191Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1475,19 +1494,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d1f112a803b286a72fefa1af9dd77ecd",
- "x-ms-request-id": "20750c3a-b002-001b-2e21-5aea7a000000",
+ "x-ms-request-id": "9b330f5d-4002-002c-1986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70nsg0nu/@Element",
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.3630345Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.5701191Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"PartitionKey": "somPartition",
"RowKey": "18",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.3630345Z",
+ "Timestamp": "2020-07-17T22:08:52.5701191Z",
"StringTypeProperty": "This is table entity number 18",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:19:00Z",
@@ -1507,17 +1526,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c646a22029f43140b2ac9a314037fb56-2d16ae439e7bef46-00",
+ "traceparent": "00-ead8a59b870e344887b6ccecff394369-5bdc29f924311a4d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4ca6390577eece9019a4bdbcec335387",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1546,8 +1566,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:22 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.4050709Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:51 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.6151565Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1556,19 +1576,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "4ca6390577eece9019a4bdbcec335387",
- "x-ms-request-id": "20750c42-b002-001b-3621-5aea7a000000",
+ "x-ms-request-id": "9b330f63-4002-002c-1f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70nsg0nu/@Element",
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.4050709Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.6151565Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"PartitionKey": "somPartition",
"RowKey": "19",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.4050709Z",
+ "Timestamp": "2020-07-17T22:08:52.6151565Z",
"StringTypeProperty": "This is table entity number 19",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:20:00Z",
@@ -1588,17 +1608,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-86012b9c21267a4581056525b2a8ffa1-4ae8b78d0379694d-00",
+ "traceparent": "00-2be3a2f02ebead499e40de3c17c936f3-6c90b20268146f44-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "67f0c15fcafbf3cc644ff30c99c9fe44",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1627,8 +1648,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:22 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.444104Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:51 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.6591944Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1637,19 +1658,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "67f0c15fcafbf3cc644ff30c99c9fe44",
- "x-ms-request-id": "20750c4c-b002-001b-4021-5aea7a000000",
+ "x-ms-request-id": "9b330f6f-4002-002c-2b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70nsg0nu/@Element",
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.444104Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.6591944Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"PartitionKey": "somPartition",
"RowKey": "20",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.444104Z",
+ "Timestamp": "2020-07-17T22:08:52.6591944Z",
"StringTypeProperty": "This is table entity number 20",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:21:00Z",
@@ -1669,14 +1690,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu()?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "dc3dd041aaaa30608122b80d45ea99fb",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1685,7 +1707,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:22 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:51 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1693,7 +1715,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "dc3dd041aaaa30608122b80d45ea99fb",
- "x-ms-request-id": "20750c5d-b002-001b-4d21-5aea7a000000",
+ "x-ms-request-id": "9b330f75-4002-002c-3186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1702,12 +1724,12 @@
{
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A21.6244169Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A51.7924725Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:21.6244169Z",
+ "Timestamp": "2020-07-17T22:08:51.7924725Z",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:02:00Z",
@@ -1725,12 +1747,12 @@
{
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A21.6684538Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A51.843515Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"PartitionKey": "somPartition",
"RowKey": "02",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:21.6684538Z",
+ "Timestamp": "2020-07-17T22:08:51.843515Z",
"StringTypeProperty": "This is table entity number 02",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:03:00Z",
@@ -1748,12 +1770,12 @@
{
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A21.7134923Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A51.8895533Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"PartitionKey": "somPartition",
"RowKey": "03",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:21.7134923Z",
+ "Timestamp": "2020-07-17T22:08:51.8895533Z",
"StringTypeProperty": "This is table entity number 03",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:04:00Z",
@@ -1771,12 +1793,12 @@
{
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A21.7585304Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A51.935592Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"PartitionKey": "somPartition",
"RowKey": "04",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:21.7585304Z",
+ "Timestamp": "2020-07-17T22:08:51.935592Z",
"StringTypeProperty": "This is table entity number 04",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:05:00Z",
@@ -1794,12 +1816,12 @@
{
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A21.8025659Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A51.9906377Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"PartitionKey": "somPartition",
"RowKey": "05",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:21.8025659Z",
+ "Timestamp": "2020-07-17T22:08:51.9906377Z",
"StringTypeProperty": "This is table entity number 05",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:06:00Z",
@@ -1817,12 +1839,12 @@
{
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A21.8456019Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.0366756Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"PartitionKey": "somPartition",
"RowKey": "06",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:21.8456019Z",
+ "Timestamp": "2020-07-17T22:08:52.0366756Z",
"StringTypeProperty": "This is table entity number 06",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:07:00Z",
@@ -1840,12 +1862,12 @@
{
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A21.8996475Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.0797114Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"PartitionKey": "somPartition",
"RowKey": "07",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:21.8996475Z",
+ "Timestamp": "2020-07-17T22:08:52.0797114Z",
"StringTypeProperty": "This is table entity number 07",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:08:00Z",
@@ -1863,12 +1885,12 @@
{
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A21.9426839Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.1257492Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"PartitionKey": "somPartition",
"RowKey": "08",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:21.9426839Z",
+ "Timestamp": "2020-07-17T22:08:52.1257492Z",
"StringTypeProperty": "This is table entity number 08",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:09:00Z",
@@ -1886,12 +1908,12 @@
{
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A21.9867194Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.1707875Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"PartitionKey": "somPartition",
"RowKey": "09",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:21.9867194Z",
+ "Timestamp": "2020-07-17T22:08:52.1707875Z",
"StringTypeProperty": "This is table entity number 09",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:10:00Z",
@@ -1909,12 +1931,12 @@
{
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.0287563Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.2208291Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"PartitionKey": "somPartition",
"RowKey": "10",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.0287563Z",
+ "Timestamp": "2020-07-17T22:08:52.2208291Z",
"StringTypeProperty": "This is table entity number 10",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:11:00Z",
@@ -1932,12 +1954,12 @@
{
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.0707897Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.2648649Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"PartitionKey": "somPartition",
"RowKey": "11",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.0707897Z",
+ "Timestamp": "2020-07-17T22:08:52.2648649Z",
"StringTypeProperty": "This is table entity number 11",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:12:00Z",
@@ -1955,12 +1977,12 @@
{
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.1128262Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.3119048Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"PartitionKey": "somPartition",
"RowKey": "12",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.1128262Z",
+ "Timestamp": "2020-07-17T22:08:52.3119048Z",
"StringTypeProperty": "This is table entity number 12",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:13:00Z",
@@ -1978,12 +2000,12 @@
{
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.1568625Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.3549406Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"PartitionKey": "somPartition",
"RowKey": "13",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.1568625Z",
+ "Timestamp": "2020-07-17T22:08:52.3549406Z",
"StringTypeProperty": "This is table entity number 13",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:14:00Z",
@@ -2001,12 +2023,12 @@
{
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.1948943Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.396976Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"PartitionKey": "somPartition",
"RowKey": "14",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.1948943Z",
+ "Timestamp": "2020-07-17T22:08:52.396976Z",
"StringTypeProperty": "This is table entity number 14",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:15:00Z",
@@ -2024,12 +2046,12 @@
{
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.2379303Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.4420121Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"PartitionKey": "somPartition",
"RowKey": "15",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.2379303Z",
+ "Timestamp": "2020-07-17T22:08:52.4420121Z",
"StringTypeProperty": "This is table entity number 15",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:16:00Z",
@@ -2047,12 +2069,12 @@
{
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.2769638Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.4850496Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"PartitionKey": "somPartition",
"RowKey": "16",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.2769638Z",
+ "Timestamp": "2020-07-17T22:08:52.4850496Z",
"StringTypeProperty": "This is table entity number 16",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:17:00Z",
@@ -2070,12 +2092,12 @@
{
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.3199994Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.5280837Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"PartitionKey": "somPartition",
"RowKey": "17",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.3199994Z",
+ "Timestamp": "2020-07-17T22:08:52.5280837Z",
"StringTypeProperty": "This is table entity number 17",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:18:00Z",
@@ -2093,12 +2115,12 @@
{
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.3630345Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.5701191Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"PartitionKey": "somPartition",
"RowKey": "18",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.3630345Z",
+ "Timestamp": "2020-07-17T22:08:52.5701191Z",
"StringTypeProperty": "This is table entity number 18",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:19:00Z",
@@ -2116,12 +2138,12 @@
{
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.4050709Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.6151565Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"PartitionKey": "somPartition",
"RowKey": "19",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.4050709Z",
+ "Timestamp": "2020-07-17T22:08:52.6151565Z",
"StringTypeProperty": "This is table entity number 19",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:20:00Z",
@@ -2139,12 +2161,12 @@
{
"odata.type": "chrissscratch.testtable70nsg0nu",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A22.444104Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A52.6591944Z\u0027\u0022",
"odata.editLink": "testtable70nsg0nu(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"PartitionKey": "somPartition",
"RowKey": "20",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:22.444104Z",
+ "Timestamp": "2020-07-17T22:08:52.6591944Z",
"StringTypeProperty": "This is table entity number 20",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:21:00Z",
@@ -2168,13 +2190,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-bc47dd1e8653f9419f9a93251c0f5e88-75c5ebfa9418d349-00",
+ "traceparent": "00-238e3a1ee3550142b8f6b7e779a5b7b9-958993f9fd9cf94b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "dc4f199c17e73ad26cb3e89e8484354f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2183,14 +2205,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:22 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:51 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "dc4f199c17e73ad26cb3e89e8484354f",
- "x-ms-request-id": "20750c6f-b002-001b-5f21-5aea7a000000",
+ "x-ms-request-id": "9b330f7e-4002-002c-3a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedCustomEntitiesCanBeQueriedWithAndWithoutPagination(null)Async.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedCustomEntitiesCanBeQueriedWithAndWithoutPagination(null)Async.json
index ec323bef9dc2..d2298b8b6a81 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedCustomEntitiesCanBeQueriedWithAndWithoutPagination(null)Async.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedCustomEntitiesCanBeQueriedWithAndWithoutPagination(null)Async.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1efd2670e94aaf4dae49cf443e0c9a42-da29bfffef71bf46-00",
+ "traceparent": "00-f1feff5174cefc408172c7b40c77dd0e-d9575177cf515749-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0cd15d6734dcef64cbdb6be37c1a1f15",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:45 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:45 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:03 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablefz13i0rq\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0cd15d6734dcef64cbdb6be37c1a1f15",
- "x-ms-request-id": "2075242d-b002-001b-5621-5aea7a000000",
+ "x-ms-request-id": "9b3318bf-4002-002c-5786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-059427c865bced4e9fd25b55fa860825-84d5f428056f0c49-00",
+ "traceparent": "00-f29b08319e7e5044af467495c28543ec-ec0ba3e94e358748-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4a895626949029edb68502c1a9a41556",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:45 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -88,8 +90,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:45 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A45.5783248Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:03 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.2998837Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -98,19 +100,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "4a895626949029edb68502c1a9a41556",
- "x-ms-request-id": "20752440-b002-001b-6721-5aea7a000000",
+ "x-ms-request-id": "9b3318c6-4002-002c-5c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablefz13i0rq/@Element",
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A45.5783248Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.2998837Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:45.5783248Z",
+ "Timestamp": "2020-07-17T22:09:04.2998837Z",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:02:00Z",
@@ -130,17 +132,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-67ee1de5d7a8a246b0e50699356b4f89-c5b58f4ff2d3cb4b-00",
+ "traceparent": "00-4cf4447e1442594f80600b52d7ade110-e4e5761278314348-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8f6f7594858fa6e14a451249cde18942",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:45 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -169,8 +172,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:45 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A45.6243626Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:03 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.361935Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -179,19 +182,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "8f6f7594858fa6e14a451249cde18942",
- "x-ms-request-id": "20752450-b002-001b-7721-5aea7a000000",
+ "x-ms-request-id": "9b3318ce-4002-002c-6486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablefz13i0rq/@Element",
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A45.6243626Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.361935Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"PartitionKey": "somPartition",
"RowKey": "02",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:45.6243626Z",
+ "Timestamp": "2020-07-17T22:09:04.361935Z",
"StringTypeProperty": "This is table entity number 02",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:03:00Z",
@@ -211,17 +214,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-fad873a81e818a4ea7fa2d20fb277c64-641850f268c67844-00",
+ "traceparent": "00-6a6ab130fc53f3489ba005897aca2b6d-a61577218ac7c74f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3b85a89a949dd3cf6fa7555632a34526",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:45 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -250,8 +254,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:45 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A45.6944208Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:03 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.4069731Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -260,19 +264,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "3b85a89a949dd3cf6fa7555632a34526",
- "x-ms-request-id": "20752464-b002-001b-0a21-5aea7a000000",
+ "x-ms-request-id": "9b3318dc-4002-002c-7186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablefz13i0rq/@Element",
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A45.6944208Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.4069731Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"PartitionKey": "somPartition",
"RowKey": "03",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:45.6944208Z",
+ "Timestamp": "2020-07-17T22:09:04.4069731Z",
"StringTypeProperty": "This is table entity number 03",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:04:00Z",
@@ -292,17 +296,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-eb00687f09431141996eb9ec997b53ef-75f55c480f46ce49-00",
+ "traceparent": "00-e7ab9388df0f804299dbe7416ee1f66f-18fcb2c31dbcf947-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "064f14c590aaa18574e2ff4b81a35cd4",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:46 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -331,8 +336,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:45 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A45.7404594Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:03 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.4490079Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -341,19 +346,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "064f14c590aaa18574e2ff4b81a35cd4",
- "x-ms-request-id": "20752479-b002-001b-1d21-5aea7a000000",
+ "x-ms-request-id": "9b3318e2-4002-002c-7786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablefz13i0rq/@Element",
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A45.7404594Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.4490079Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"PartitionKey": "somPartition",
"RowKey": "04",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:45.7404594Z",
+ "Timestamp": "2020-07-17T22:09:04.4490079Z",
"StringTypeProperty": "This is table entity number 04",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:05:00Z",
@@ -373,17 +378,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-349d5cb188d27a47971001c79c95e759-fdcb054502f15a49-00",
+ "traceparent": "00-32ad796f5936eb4daf81db65e7c2e4d9-f0b480416906e948-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0126bffcda1fffb8a59b1fe82f8a74a6",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:46 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -412,8 +418,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:45 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A45.7854968Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:03 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.4910431Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -422,19 +428,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0126bffcda1fffb8a59b1fe82f8a74a6",
- "x-ms-request-id": "20752488-b002-001b-2c21-5aea7a000000",
+ "x-ms-request-id": "9b3318ea-4002-002c-7f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablefz13i0rq/@Element",
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A45.7854968Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.4910431Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"PartitionKey": "somPartition",
"RowKey": "05",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:45.7854968Z",
+ "Timestamp": "2020-07-17T22:09:04.4910431Z",
"StringTypeProperty": "This is table entity number 05",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:06:00Z",
@@ -454,17 +460,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9c530f420d566b42992e48b1d1a6891f-3a3b6220abaa7d4f-00",
+ "traceparent": "00-d07ef51ec91c7346bcb654636e58b017-e97a61a20947954e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b883ecff82920a9722e4c6bb948452cc",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:46 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -493,8 +500,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:45 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A45.8295338Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:03 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.5320779Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -503,19 +510,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "b883ecff82920a9722e4c6bb948452cc",
- "x-ms-request-id": "20752494-b002-001b-3821-5aea7a000000",
+ "x-ms-request-id": "9b3318f4-4002-002c-0986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablefz13i0rq/@Element",
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A45.8295338Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.5320779Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"PartitionKey": "somPartition",
"RowKey": "06",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:45.8295338Z",
+ "Timestamp": "2020-07-17T22:09:04.5320779Z",
"StringTypeProperty": "This is table entity number 06",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:07:00Z",
@@ -535,17 +542,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f8cfff6c6b12744990c528df621f9eab-c6645cca70f45242-00",
+ "traceparent": "00-72f6ec31d6e1c04c959420caf937b741-253da3d68c8e8e4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "735a804a447deb065b4f610f709d71ea",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:46 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -574,8 +582,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:45 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A45.8695662Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:03 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.5721109Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -584,19 +592,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "735a804a447deb065b4f610f709d71ea",
- "x-ms-request-id": "207524a3-b002-001b-4621-5aea7a000000",
+ "x-ms-request-id": "9b3318fe-4002-002c-1386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablefz13i0rq/@Element",
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A45.8695662Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.5721109Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"PartitionKey": "somPartition",
"RowKey": "07",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:45.8695662Z",
+ "Timestamp": "2020-07-17T22:09:04.5721109Z",
"StringTypeProperty": "This is table entity number 07",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:08:00Z",
@@ -616,17 +624,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f107ee4122dcf542a29d9a63c303eee4-47cc19c86caf3b4a-00",
+ "traceparent": "00-010af3a2a0f714469f6de4f8f26684dc-118054681baaf543-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "944b586ea41f7942271cde3b14fd6a21",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:46 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -655,8 +664,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:45 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A45.917606Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:03 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.6181499Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -665,19 +674,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "944b586ea41f7942271cde3b14fd6a21",
- "x-ms-request-id": "207524af-b002-001b-5221-5aea7a000000",
+ "x-ms-request-id": "9b331909-4002-002c-1c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablefz13i0rq/@Element",
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A45.917606Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.6181499Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"PartitionKey": "somPartition",
"RowKey": "08",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:45.917606Z",
+ "Timestamp": "2020-07-17T22:09:04.6181499Z",
"StringTypeProperty": "This is table entity number 08",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:09:00Z",
@@ -697,17 +706,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d0a62df797937c4bafa3e6bee628df4c-468f31de78895149-00",
+ "traceparent": "00-d551e84833942a489898e180353a04c4-900005dc64751d42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ae9e53490030ba29e5985c4221889985",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:46 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -736,8 +746,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:45 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A45.9706501Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:03 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.6691922Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -746,19 +756,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ae9e53490030ba29e5985c4221889985",
- "x-ms-request-id": "207524b9-b002-001b-5c21-5aea7a000000",
+ "x-ms-request-id": "9b33191e-4002-002c-3086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablefz13i0rq/@Element",
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A45.9706501Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.6691922Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"PartitionKey": "somPartition",
"RowKey": "09",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:45.9706501Z",
+ "Timestamp": "2020-07-17T22:09:04.6691922Z",
"StringTypeProperty": "This is table entity number 09",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:10:00Z",
@@ -778,17 +788,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6e7ee701fa445d4d955f5f636da37090-28976e1098376643-00",
+ "traceparent": "00-2e9ac1f6a07e974c8e6c206043459a18-0ddbab13d7c59a4c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3b4ddb72bd38a6ac3ee04c6166cbd65e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:46 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -817,8 +828,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:45 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.0146871Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:03 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.7152308Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -827,19 +838,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "3b4ddb72bd38a6ac3ee04c6166cbd65e",
- "x-ms-request-id": "207524bf-b002-001b-6221-5aea7a000000",
+ "x-ms-request-id": "9b331926-4002-002c-3786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablefz13i0rq/@Element",
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.0146871Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.7152308Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"PartitionKey": "somPartition",
"RowKey": "10",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:46.0146871Z",
+ "Timestamp": "2020-07-17T22:09:04.7152308Z",
"StringTypeProperty": "This is table entity number 10",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:11:00Z",
@@ -859,17 +870,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-aab474a630824b41ac8c2043b5cfcf2f-c428ac113185f241-00",
+ "traceparent": "00-2a99e3ba511996498ff24b73c7b172c0-b28f6f8877e5ce42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1dc53fe4c3ff6db92f90af8747ff589e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:46 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -898,8 +910,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:45 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.0587236Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:03 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.7592677Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -908,19 +920,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "1dc53fe4c3ff6db92f90af8747ff589e",
- "x-ms-request-id": "207524ca-b002-001b-6d21-5aea7a000000",
+ "x-ms-request-id": "9b33192a-4002-002c-3b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablefz13i0rq/@Element",
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.0587236Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.7592677Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"PartitionKey": "somPartition",
"RowKey": "11",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:46.0587236Z",
+ "Timestamp": "2020-07-17T22:09:04.7592677Z",
"StringTypeProperty": "This is table entity number 11",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:12:00Z",
@@ -940,17 +952,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-647fbb6f0c41b543a6f6b864323db0fc-3ddce515ee00a641-00",
+ "traceparent": "00-8d041f5353e9e74aa7353990d19e1091-a8d04d1511a21b4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "38c858822eb08ce8a6f77050b4c85419",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:46 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -979,8 +992,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:45 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.1067635Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:03 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.804305Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -989,19 +1002,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "38c858822eb08ce8a6f77050b4c85419",
- "x-ms-request-id": "207524d0-b002-001b-7221-5aea7a000000",
+ "x-ms-request-id": "9b33192f-4002-002c-3f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablefz13i0rq/@Element",
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.1067635Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.804305Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"PartitionKey": "somPartition",
"RowKey": "12",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:46.1067635Z",
+ "Timestamp": "2020-07-17T22:09:04.804305Z",
"StringTypeProperty": "This is table entity number 12",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:13:00Z",
@@ -1021,17 +1034,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-016af426305b8c4d99a70a495091c854-3508f2fc4c1b7245-00",
+ "traceparent": "00-68f349dbeab4e44fbd4f9d1edab9cfd9-4426d297e1103544-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e15efec27cc2af8622e00ca70d255e3e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:46 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1060,8 +1074,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:45 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.1518009Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:04 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.8453402Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1070,19 +1084,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "e15efec27cc2af8622e00ca70d255e3e",
- "x-ms-request-id": "207524d9-b002-001b-7a21-5aea7a000000",
+ "x-ms-request-id": "9b331934-4002-002c-4486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablefz13i0rq/@Element",
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.1518009Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.8453402Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"PartitionKey": "somPartition",
"RowKey": "13",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:46.1518009Z",
+ "Timestamp": "2020-07-17T22:09:04.8453402Z",
"StringTypeProperty": "This is table entity number 13",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:14:00Z",
@@ -1102,17 +1116,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-70599f6a4a80a3439c41dede5513b9f7-e55fab1d8e098e4b-00",
+ "traceparent": "00-e8967c88b0c37740a99f3e33e50eb457-9f3705853dbe0842-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0ddfad879e02b5ae573976075368b866",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:46 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1141,8 +1156,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:45 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.1958379Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:04 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.8913783Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1151,19 +1166,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0ddfad879e02b5ae573976075368b866",
- "x-ms-request-id": "207524e4-b002-001b-0321-5aea7a000000",
+ "x-ms-request-id": "9b33193a-4002-002c-4986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablefz13i0rq/@Element",
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.1958379Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.8913783Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"PartitionKey": "somPartition",
"RowKey": "14",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:46.1958379Z",
+ "Timestamp": "2020-07-17T22:09:04.8913783Z",
"StringTypeProperty": "This is table entity number 14",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:15:00Z",
@@ -1183,17 +1198,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-4414f329d14cd4439cd146da3c90e172-e25fa86ede82b440-00",
+ "traceparent": "00-8c059b39e9ed684b9957a569e887fd0c-481c637102ba034e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "49c4953c77a105dbd21916d022417e80",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:46 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1222,8 +1238,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:46 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.2408744Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:04 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.9354152Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1232,19 +1248,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "49c4953c77a105dbd21916d022417e80",
- "x-ms-request-id": "207524e9-b002-001b-0821-5aea7a000000",
+ "x-ms-request-id": "9b331945-4002-002c-5486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablefz13i0rq/@Element",
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.2408744Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.9354152Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"PartitionKey": "somPartition",
"RowKey": "15",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:46.2408744Z",
+ "Timestamp": "2020-07-17T22:09:04.9354152Z",
"StringTypeProperty": "This is table entity number 15",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:16:00Z",
@@ -1264,17 +1280,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a7d795d53a00504aa291a8b7ec6e9953-0298f54715147543-00",
+ "traceparent": "00-db078d4b99544e49b115bbd69243588c-c1236555cd5aa04b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "07c9319947e9241750a88a89067f5cb9",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:46 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1303,8 +1320,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:46 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.2849118Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:04 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.9814542Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1313,19 +1330,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "07c9319947e9241750a88a89067f5cb9",
- "x-ms-request-id": "207524f4-b002-001b-1321-5aea7a000000",
+ "x-ms-request-id": "9b33194b-4002-002c-5a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablefz13i0rq/@Element",
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.2849118Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.9814542Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"PartitionKey": "somPartition",
"RowKey": "16",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:46.2849118Z",
+ "Timestamp": "2020-07-17T22:09:04.9814542Z",
"StringTypeProperty": "This is table entity number 16",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:17:00Z",
@@ -1345,17 +1362,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-b8e0b997a511f24f9f4921d4db5ed963-c29af817b99d4242-00",
+ "traceparent": "00-b7120e0836042941a6a442fa442a61ee-e4da790618323444-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "786ba5271460109dd1d93be987de9315",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:46 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1384,8 +1402,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:46 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.3299488Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:04 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.0274923Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1394,19 +1412,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "786ba5271460109dd1d93be987de9315",
- "x-ms-request-id": "207524fc-b002-001b-1a21-5aea7a000000",
+ "x-ms-request-id": "9b331956-4002-002c-6386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablefz13i0rq/@Element",
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.3299488Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.0274923Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"PartitionKey": "somPartition",
"RowKey": "17",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:46.3299488Z",
+ "Timestamp": "2020-07-17T22:09:05.0274923Z",
"StringTypeProperty": "This is table entity number 17",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:18:00Z",
@@ -1426,17 +1444,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-4f4fcf72b52d414ba719c181837ebdf7-f4d474fcff99c04f-00",
+ "traceparent": "00-ac4ae2932fa45c469ff5b3d4cce5d2a2-f4e216fd5564d845-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "226df5bbb19ff57d7ea0f9f8ec52ff52",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:46 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1465,8 +1484,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:46 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.3739849Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:04 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.0725296Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1475,19 +1494,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "226df5bbb19ff57d7ea0f9f8ec52ff52",
- "x-ms-request-id": "20752508-b002-001b-2621-5aea7a000000",
+ "x-ms-request-id": "9b331959-4002-002c-6686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablefz13i0rq/@Element",
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.3739849Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.0725296Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"PartitionKey": "somPartition",
"RowKey": "18",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:46.3739849Z",
+ "Timestamp": "2020-07-17T22:09:05.0725296Z",
"StringTypeProperty": "This is table entity number 18",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:19:00Z",
@@ -1507,17 +1526,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-172975ef62ae904aa05c6d5d7d94f812-cda26d5d40a29941-00",
+ "traceparent": "00-b3448d59cb74814dac23b160bf51a57f-1d038c1c980e774e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7ca85cbc06d5842093b8350f0b2d9c71",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:46 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1546,8 +1566,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:46 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.4200227Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:04 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.1175677Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1556,19 +1576,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "7ca85cbc06d5842093b8350f0b2d9c71",
- "x-ms-request-id": "2075251d-b002-001b-3a21-5aea7a000000",
+ "x-ms-request-id": "9b331965-4002-002c-7086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablefz13i0rq/@Element",
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.4200227Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.1175677Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"PartitionKey": "somPartition",
"RowKey": "19",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:46.4200227Z",
+ "Timestamp": "2020-07-17T22:09:05.1175677Z",
"StringTypeProperty": "This is table entity number 19",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:20:00Z",
@@ -1588,17 +1608,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a9023386b40a0647b9c25e8a27cd128e-13cfbfd254af664a-00",
+ "traceparent": "00-0dd67dd987155e4a896e6e36bb7de12c-29764ee8d2ba6545-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "10ce74143a11761a2876fabf1ba4237e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:46 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1627,8 +1648,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:46 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.4650618Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:04 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.1616059Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1637,19 +1658,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "10ce74143a11761a2876fabf1ba4237e",
- "x-ms-request-id": "2075252f-b002-001b-4921-5aea7a000000",
+ "x-ms-request-id": "9b33196d-4002-002c-7786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablefz13i0rq/@Element",
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.4650618Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.1616059Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"PartitionKey": "somPartition",
"RowKey": "20",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:46.4650618Z",
+ "Timestamp": "2020-07-17T22:09:05.1616059Z",
"StringTypeProperty": "This is table entity number 20",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:21:00Z",
@@ -1669,14 +1690,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq()?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2b2ce8da1735b540d5e88ee67b6de950",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:46 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1685,7 +1707,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:46 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:04 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1693,7 +1715,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "2b2ce8da1735b540d5e88ee67b6de950",
- "x-ms-request-id": "20752537-b002-001b-5121-5aea7a000000",
+ "x-ms-request-id": "9b331973-4002-002c-7d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1702,12 +1724,12 @@
{
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A45.5783248Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.2998837Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:45.5783248Z",
+ "Timestamp": "2020-07-17T22:09:04.2998837Z",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:02:00Z",
@@ -1725,12 +1747,12 @@
{
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A45.6243626Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.361935Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"PartitionKey": "somPartition",
"RowKey": "02",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:45.6243626Z",
+ "Timestamp": "2020-07-17T22:09:04.361935Z",
"StringTypeProperty": "This is table entity number 02",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:03:00Z",
@@ -1748,12 +1770,12 @@
{
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A45.6944208Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.4069731Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"PartitionKey": "somPartition",
"RowKey": "03",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:45.6944208Z",
+ "Timestamp": "2020-07-17T22:09:04.4069731Z",
"StringTypeProperty": "This is table entity number 03",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:04:00Z",
@@ -1771,12 +1793,12 @@
{
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A45.7404594Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.4490079Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"PartitionKey": "somPartition",
"RowKey": "04",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:45.7404594Z",
+ "Timestamp": "2020-07-17T22:09:04.4490079Z",
"StringTypeProperty": "This is table entity number 04",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:05:00Z",
@@ -1794,12 +1816,12 @@
{
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A45.7854968Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.4910431Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"PartitionKey": "somPartition",
"RowKey": "05",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:45.7854968Z",
+ "Timestamp": "2020-07-17T22:09:04.4910431Z",
"StringTypeProperty": "This is table entity number 05",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:06:00Z",
@@ -1817,12 +1839,12 @@
{
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A45.8295338Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.5320779Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"PartitionKey": "somPartition",
"RowKey": "06",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:45.8295338Z",
+ "Timestamp": "2020-07-17T22:09:04.5320779Z",
"StringTypeProperty": "This is table entity number 06",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:07:00Z",
@@ -1840,12 +1862,12 @@
{
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A45.8695662Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.5721109Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"PartitionKey": "somPartition",
"RowKey": "07",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:45.8695662Z",
+ "Timestamp": "2020-07-17T22:09:04.5721109Z",
"StringTypeProperty": "This is table entity number 07",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:08:00Z",
@@ -1863,12 +1885,12 @@
{
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A45.917606Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.6181499Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"PartitionKey": "somPartition",
"RowKey": "08",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:45.917606Z",
+ "Timestamp": "2020-07-17T22:09:04.6181499Z",
"StringTypeProperty": "This is table entity number 08",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:09:00Z",
@@ -1886,12 +1908,12 @@
{
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A45.9706501Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.6691922Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"PartitionKey": "somPartition",
"RowKey": "09",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:45.9706501Z",
+ "Timestamp": "2020-07-17T22:09:04.6691922Z",
"StringTypeProperty": "This is table entity number 09",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:10:00Z",
@@ -1909,12 +1931,12 @@
{
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.0146871Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.7152308Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"PartitionKey": "somPartition",
"RowKey": "10",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:46.0146871Z",
+ "Timestamp": "2020-07-17T22:09:04.7152308Z",
"StringTypeProperty": "This is table entity number 10",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:11:00Z",
@@ -1932,12 +1954,12 @@
{
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.0587236Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.7592677Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"PartitionKey": "somPartition",
"RowKey": "11",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:46.0587236Z",
+ "Timestamp": "2020-07-17T22:09:04.7592677Z",
"StringTypeProperty": "This is table entity number 11",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:12:00Z",
@@ -1955,12 +1977,12 @@
{
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.1067635Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.804305Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"PartitionKey": "somPartition",
"RowKey": "12",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:46.1067635Z",
+ "Timestamp": "2020-07-17T22:09:04.804305Z",
"StringTypeProperty": "This is table entity number 12",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:13:00Z",
@@ -1978,12 +2000,12 @@
{
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.1518009Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.8453402Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"PartitionKey": "somPartition",
"RowKey": "13",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:46.1518009Z",
+ "Timestamp": "2020-07-17T22:09:04.8453402Z",
"StringTypeProperty": "This is table entity number 13",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:14:00Z",
@@ -2001,12 +2023,12 @@
{
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.1958379Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.8913783Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"PartitionKey": "somPartition",
"RowKey": "14",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:46.1958379Z",
+ "Timestamp": "2020-07-17T22:09:04.8913783Z",
"StringTypeProperty": "This is table entity number 14",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:15:00Z",
@@ -2024,12 +2046,12 @@
{
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.2408744Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.9354152Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"PartitionKey": "somPartition",
"RowKey": "15",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:46.2408744Z",
+ "Timestamp": "2020-07-17T22:09:04.9354152Z",
"StringTypeProperty": "This is table entity number 15",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:16:00Z",
@@ -2047,12 +2069,12 @@
{
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.2849118Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A04.9814542Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"PartitionKey": "somPartition",
"RowKey": "16",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:46.2849118Z",
+ "Timestamp": "2020-07-17T22:09:04.9814542Z",
"StringTypeProperty": "This is table entity number 16",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:17:00Z",
@@ -2070,12 +2092,12 @@
{
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.3299488Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.0274923Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"PartitionKey": "somPartition",
"RowKey": "17",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:46.3299488Z",
+ "Timestamp": "2020-07-17T22:09:05.0274923Z",
"StringTypeProperty": "This is table entity number 17",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:18:00Z",
@@ -2093,12 +2115,12 @@
{
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.3739849Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.0725296Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"PartitionKey": "somPartition",
"RowKey": "18",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:46.3739849Z",
+ "Timestamp": "2020-07-17T22:09:05.0725296Z",
"StringTypeProperty": "This is table entity number 18",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:19:00Z",
@@ -2116,12 +2138,12 @@
{
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.4200227Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.1175677Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"PartitionKey": "somPartition",
"RowKey": "19",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:46.4200227Z",
+ "Timestamp": "2020-07-17T22:09:05.1175677Z",
"StringTypeProperty": "This is table entity number 19",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:20:00Z",
@@ -2139,12 +2161,12 @@
{
"odata.type": "chrissscratch.testtablefz13i0rq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A46.4650618Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A05.1616059Z\u0027\u0022",
"odata.editLink": "testtablefz13i0rq(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"PartitionKey": "somPartition",
"RowKey": "20",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:46.4650618Z",
+ "Timestamp": "2020-07-17T22:09:05.1616059Z",
"StringTypeProperty": "This is table entity number 20",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:21:00Z",
@@ -2168,13 +2190,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-8d2b462d9c0e4e48ad6cd3cd1d5b1202-e9e20e4a3d947f4c-00",
+ "traceparent": "00-297e5112e5a4984e8d9ba2b276930a51-053e9eafe12d2e43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "78e38704ee8482404131535f0c6069ee",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:46 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2183,14 +2205,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:46 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:04 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "78e38704ee8482404131535f0c6069ee",
- "x-ms-request-id": "2075254d-b002-001b-6721-5aea7a000000",
+ "x-ms-request-id": "9b33198b-4002-002c-1386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedCustomEntitiesCanBeQueriedWithFilters.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedCustomEntitiesCanBeQueriedWithFilters.json
index 21cb6b592420..61ba10a9b350 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedCustomEntitiesCanBeQueriedWithFilters.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedCustomEntitiesCanBeQueriedWithFilters.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d7384771e2c05e48aa31fa11ad23eff5-ec800db313eb6a4c-00",
+ "traceparent": "00-1ab56328c95d6243b0af658058d5e755-84dedacdf5cf7b48-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1788c8b9b48ac37ab72c9f996f4ad68a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:44 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:14 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:43 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable70pb9xu0\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "1788c8b9b48ac37ab72c9f996f4ad68a",
- "x-ms-request-id": "207505b4-b002-001b-1e21-5aea7a000000",
+ "x-ms-request-id": "9b330824-4002-002c-5186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e50db94b2783b0489b564f18e75051fc-cec1e3d85c81494b-00",
+ "traceparent": "00-e010c70c9c0c70458fbe8e7459d84cc7-fdb934ae72ca5d43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f4d0c5ae23aa66621e7580a7a78f26cb",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:44 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -88,8 +90,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:14 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.0028922Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:43 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A44.430346Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -98,19 +100,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f4d0c5ae23aa66621e7580a7a78f26cb",
- "x-ms-request-id": "207505bf-b002-001b-2821-5aea7a000000",
+ "x-ms-request-id": "9b33082e-4002-002c-5a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70pb9xu0/@Element",
"odata.type": "chrissscratch.testtable70pb9xu0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.0028922Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A44.430346Z\u0027\u0022",
"odata.editLink": "testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:15.0028922Z",
+ "Timestamp": "2020-07-17T22:08:44.430346Z",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:02:00Z",
@@ -130,17 +132,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ce95fdbe92ab0841b143b2e45d3e457b-a68b004bc8e53447-00",
+ "traceparent": "00-6be63ba2ebcb0e4fbc1eb4cde7ae9b8f-71ce67134b52b74b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e5794b2a2b0bed31cc1bc63f5d287d8e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:44 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -169,8 +172,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:14 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.0469294Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:43 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A44.4733814Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -179,19 +182,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "e5794b2a2b0bed31cc1bc63f5d287d8e",
- "x-ms-request-id": "207505c6-b002-001b-2e21-5aea7a000000",
+ "x-ms-request-id": "9b33083a-4002-002c-6686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70pb9xu0/@Element",
"odata.type": "chrissscratch.testtable70pb9xu0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.0469294Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A44.4733814Z\u0027\u0022",
"odata.editLink": "testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"PartitionKey": "somPartition",
"RowKey": "02",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:15.0469294Z",
+ "Timestamp": "2020-07-17T22:08:44.4733814Z",
"StringTypeProperty": "This is table entity number 02",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:03:00Z",
@@ -211,17 +214,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-2c7ebae7ab865d4888d8411de272adc3-41de3ecde6a77246-00",
+ "traceparent": "00-11e07b60ae2ff54ab6a6f01a4bc9e9aa-2d8237f49284af46-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "10e2068f3e94958f6521f81434d21b27",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:44 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -250,8 +254,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:14 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.1219922Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:43 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A44.5214209Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -260,19 +264,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "10e2068f3e94958f6521f81434d21b27",
- "x-ms-request-id": "207505db-b002-001b-4321-5aea7a000000",
+ "x-ms-request-id": "9b330844-4002-002c-7086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70pb9xu0/@Element",
"odata.type": "chrissscratch.testtable70pb9xu0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.1219922Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A44.5214209Z\u0027\u0022",
"odata.editLink": "testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"PartitionKey": "somPartition",
"RowKey": "03",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:15.1219922Z",
+ "Timestamp": "2020-07-17T22:08:44.5214209Z",
"StringTypeProperty": "This is table entity number 03",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:04:00Z",
@@ -292,17 +296,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-b5f9c71d2818c34ba2210f8429c93a99-f60682b6d3648442-00",
+ "traceparent": "00-fd07078770cc5948805aaf5a9e0cc643-8284f6f230b81545-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "246fd405f0d1837e94e2288f5d2308f6",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:44 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -331,8 +336,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:14 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.166029Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:43 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A44.5704629Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -341,19 +346,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "246fd405f0d1837e94e2288f5d2308f6",
- "x-ms-request-id": "207505e4-b002-001b-4b21-5aea7a000000",
+ "x-ms-request-id": "9b330854-4002-002c-7f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70pb9xu0/@Element",
"odata.type": "chrissscratch.testtable70pb9xu0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.166029Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A44.5704629Z\u0027\u0022",
"odata.editLink": "testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"PartitionKey": "somPartition",
"RowKey": "04",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:15.166029Z",
+ "Timestamp": "2020-07-17T22:08:44.5704629Z",
"StringTypeProperty": "This is table entity number 04",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:05:00Z",
@@ -373,17 +378,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9863e08df2c45348810f94045fac1efd-139f39f241e93540-00",
+ "traceparent": "00-85505ce87fe5ec45a9cde766209e5069-7e6481bc76dc1641-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a118f1f716adec36bce380e9331cb9f9",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:44 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -412,8 +418,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:15 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.2090654Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:43 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A44.6114962Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -422,19 +428,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "a118f1f716adec36bce380e9331cb9f9",
- "x-ms-request-id": "207505f1-b002-001b-5621-5aea7a000000",
+ "x-ms-request-id": "9b33085e-4002-002c-0986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70pb9xu0/@Element",
"odata.type": "chrissscratch.testtable70pb9xu0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.2090654Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A44.6114962Z\u0027\u0022",
"odata.editLink": "testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"PartitionKey": "somPartition",
"RowKey": "05",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:15.2090654Z",
+ "Timestamp": "2020-07-17T22:08:44.6114962Z",
"StringTypeProperty": "This is table entity number 05",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:06:00Z",
@@ -454,17 +460,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c68955aa68673c4983ce964827dbb76f-a7bc41c6d6775b44-00",
+ "traceparent": "00-5d21a5981d69664ea3a042f62d7c566f-60b78d4dfaba0948-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "89399eff59b99fbd875f7bb115ff3741",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:44 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -493,8 +500,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:15 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.2541026Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:43 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A44.6535316Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -503,19 +510,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "89399eff59b99fbd875f7bb115ff3741",
- "x-ms-request-id": "207505f6-b002-001b-5b21-5aea7a000000",
+ "x-ms-request-id": "9b330866-4002-002c-1186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70pb9xu0/@Element",
"odata.type": "chrissscratch.testtable70pb9xu0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.2541026Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A44.6535316Z\u0027\u0022",
"odata.editLink": "testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"PartitionKey": "somPartition",
"RowKey": "06",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:15.2541026Z",
+ "Timestamp": "2020-07-17T22:08:44.6535316Z",
"StringTypeProperty": "This is table entity number 06",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:07:00Z",
@@ -535,17 +542,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-3eb916acc9a2b64ca618d49f0ecf13f0-06d07abefad4e845-00",
+ "traceparent": "00-9b09e9e408767b42a72d0ef8d7ddf778-fa7a111afee1584e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "431d02197abaef799d8267ed6f955077",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:44 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -574,8 +582,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:15 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.2971386Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:43 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A44.7005711Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -584,19 +592,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "431d02197abaef799d8267ed6f955077",
- "x-ms-request-id": "20750603-b002-001b-6621-5aea7a000000",
+ "x-ms-request-id": "9b330873-4002-002c-1e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70pb9xu0/@Element",
"odata.type": "chrissscratch.testtable70pb9xu0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.2971386Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A44.7005711Z\u0027\u0022",
"odata.editLink": "testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"PartitionKey": "somPartition",
"RowKey": "07",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:15.2971386Z",
+ "Timestamp": "2020-07-17T22:08:44.7005711Z",
"StringTypeProperty": "This is table entity number 07",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:08:00Z",
@@ -616,17 +624,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1c130d436718d34ca81d70a640f35142-83ffaa367ea80b48-00",
+ "traceparent": "00-aa48ac486d893148a1062b407b58531d-c7def8d6cc2ce84c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "be902f297eea9e3c3478194e9a85d6bd",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:44 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -655,8 +664,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:15 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.3411754Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:43 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A44.754616Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -665,19 +674,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "be902f297eea9e3c3478194e9a85d6bd",
- "x-ms-request-id": "2075060e-b002-001b-7121-5aea7a000000",
+ "x-ms-request-id": "9b330880-4002-002c-2b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70pb9xu0/@Element",
"odata.type": "chrissscratch.testtable70pb9xu0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.3411754Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A44.754616Z\u0027\u0022",
"odata.editLink": "testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"PartitionKey": "somPartition",
"RowKey": "08",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:15.3411754Z",
+ "Timestamp": "2020-07-17T22:08:44.754616Z",
"StringTypeProperty": "This is table entity number 08",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:09:00Z",
@@ -697,17 +706,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a30c5d1acfcafb4a9d2d84bdb91e42d7-523945e3da4f8145-00",
+ "traceparent": "00-c8157794a8d6b442a27a0907186b78c2-4541466af38bcc40-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "30d03fac75ff843f254aec36f2d030f1",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:44 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -736,8 +746,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:15 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.3922181Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:43 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A44.7976514Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -746,19 +756,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "30d03fac75ff843f254aec36f2d030f1",
- "x-ms-request-id": "20750615-b002-001b-7821-5aea7a000000",
+ "x-ms-request-id": "9b330886-4002-002c-3186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70pb9xu0/@Element",
"odata.type": "chrissscratch.testtable70pb9xu0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.3922181Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A44.7976514Z\u0027\u0022",
"odata.editLink": "testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"PartitionKey": "somPartition",
"RowKey": "09",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:15.3922181Z",
+ "Timestamp": "2020-07-17T22:08:44.7976514Z",
"StringTypeProperty": "This is table entity number 09",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:10:00Z",
@@ -778,17 +788,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8c7089e0ce31fb4e942a9486dcdf01fa-3055f3962ea5094b-00",
+ "traceparent": "00-402fe47536a285459277c4b892b91d2f-c325c423936b8341-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e688030f786f9a56c57e0f41602b5418",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:44 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -817,8 +828,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:15 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.4372553Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:44 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A44.8366843Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -827,19 +838,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "e688030f786f9a56c57e0f41602b5418",
- "x-ms-request-id": "2075061e-b002-001b-0121-5aea7a000000",
+ "x-ms-request-id": "9b330889-4002-002c-3486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70pb9xu0/@Element",
"odata.type": "chrissscratch.testtable70pb9xu0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.4372553Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A44.8366843Z\u0027\u0022",
"odata.editLink": "testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"PartitionKey": "somPartition",
"RowKey": "10",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:15.4372553Z",
+ "Timestamp": "2020-07-17T22:08:44.8366843Z",
"StringTypeProperty": "This is table entity number 10",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:11:00Z",
@@ -859,17 +870,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-2be0996dea755345b490e622a166b340-05dbafdf73b27c40-00",
+ "traceparent": "00-e5936206edff824cb8f28fdb8fa2645e-8fc90946b1a43443-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2f41aaac1fc5b378f00b99a09206ac64",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:44 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -898,8 +910,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:15 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.4812925Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:44 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A44.9047404Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -908,19 +920,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "2f41aaac1fc5b378f00b99a09206ac64",
- "x-ms-request-id": "20750625-b002-001b-0821-5aea7a000000",
+ "x-ms-request-id": "9b33089f-4002-002c-4986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70pb9xu0/@Element",
"odata.type": "chrissscratch.testtable70pb9xu0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.4812925Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A44.9047404Z\u0027\u0022",
"odata.editLink": "testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"PartitionKey": "somPartition",
"RowKey": "11",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:15.4812925Z",
+ "Timestamp": "2020-07-17T22:08:44.9047404Z",
"StringTypeProperty": "This is table entity number 11",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:12:00Z",
@@ -940,17 +952,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-97d7ccee6330ab48ac4fa2f62eb8ddac-17772bcb21ae9243-00",
+ "traceparent": "00-94afb109c7e5a24e9a6362ed68592f72-4f1ada27d2ba3741-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "973f2848effd334ee8356a8066fd24fa",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:45 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -979,8 +992,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:15 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.5273302Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:44 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A44.9467745Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -989,19 +1002,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "973f2848effd334ee8356a8066fd24fa",
- "x-ms-request-id": "20750628-b002-001b-0b21-5aea7a000000",
+ "x-ms-request-id": "9b3308a9-4002-002c-5286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70pb9xu0/@Element",
"odata.type": "chrissscratch.testtable70pb9xu0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.5273302Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A44.9467745Z\u0027\u0022",
"odata.editLink": "testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"PartitionKey": "somPartition",
"RowKey": "12",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:15.5273302Z",
+ "Timestamp": "2020-07-17T22:08:44.9467745Z",
"StringTypeProperty": "This is table entity number 12",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:13:00Z",
@@ -1021,17 +1034,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ee40c4c1b3725d49b245258f85221696-25dbf797d6594446-00",
+ "traceparent": "00-7d47b8e7020b9b4cb8ee482c88853b01-2e6fd53a5434ee49-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4789d4f6008eef2c8bd4f663dfb607bf",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:45 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1060,8 +1074,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:15 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.5723676Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:44 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A44.9948153Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1070,19 +1084,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "4789d4f6008eef2c8bd4f663dfb607bf",
- "x-ms-request-id": "20750631-b002-001b-1421-5aea7a000000",
+ "x-ms-request-id": "9b3308b9-4002-002c-6286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70pb9xu0/@Element",
"odata.type": "chrissscratch.testtable70pb9xu0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.5723676Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A44.9948153Z\u0027\u0022",
"odata.editLink": "testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"PartitionKey": "somPartition",
"RowKey": "13",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:15.5723676Z",
+ "Timestamp": "2020-07-17T22:08:44.9948153Z",
"StringTypeProperty": "This is table entity number 13",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:14:00Z",
@@ -1102,17 +1116,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6da386b9a6b03a45af629583ffc5409c-624e401957b12942-00",
+ "traceparent": "00-5304a439384f6149a78e41cf569bb217-b0ec2db48e33d24d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "38f8abd2bdecbd1a5c0d478fb4f74df2",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:45 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1141,8 +1156,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:15 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.6174054Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:44 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A45.0468582Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1151,19 +1166,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "38f8abd2bdecbd1a5c0d478fb4f74df2",
- "x-ms-request-id": "20750637-b002-001b-1a21-5aea7a000000",
+ "x-ms-request-id": "9b3308c7-4002-002c-7086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70pb9xu0/@Element",
"odata.type": "chrissscratch.testtable70pb9xu0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.6174054Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A45.0468582Z\u0027\u0022",
"odata.editLink": "testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"PartitionKey": "somPartition",
"RowKey": "14",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:15.6174054Z",
+ "Timestamp": "2020-07-17T22:08:45.0468582Z",
"StringTypeProperty": "This is table entity number 14",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:15:00Z",
@@ -1183,17 +1198,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-586505b37ebe9c419934ee2ec497e1fa-63e895d34562144b-00",
+ "traceparent": "00-b578485be6b4c049a1510224446d692c-be6670471f933e45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "beaa9fe7647c48d5fb4f0b28f9ea5332",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:45 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1222,8 +1238,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:15 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.6594412Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:44 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A45.0938973Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1232,19 +1248,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "beaa9fe7647c48d5fb4f0b28f9ea5332",
- "x-ms-request-id": "2075063c-b002-001b-1f21-5aea7a000000",
+ "x-ms-request-id": "9b3308de-4002-002c-0286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70pb9xu0/@Element",
"odata.type": "chrissscratch.testtable70pb9xu0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.6594412Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A45.0938973Z\u0027\u0022",
"odata.editLink": "testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"PartitionKey": "somPartition",
"RowKey": "15",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:15.6594412Z",
+ "Timestamp": "2020-07-17T22:08:45.0938973Z",
"StringTypeProperty": "This is table entity number 15",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:16:00Z",
@@ -1264,17 +1280,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-34d0501332bef74b8aa828b3d772e684-ab8a83ae871ed943-00",
+ "traceparent": "00-0eceed1c4a1b1049bd8b8bbebc72e6c5-329a1b33b354804c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "bbaeaa2eeb04380db9cceb81b89c3a94",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:45 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1303,8 +1320,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:15 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.6994731Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:44 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A45.1389347Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1313,19 +1330,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "bbaeaa2eeb04380db9cceb81b89c3a94",
- "x-ms-request-id": "20750644-b002-001b-2721-5aea7a000000",
+ "x-ms-request-id": "9b3308ed-4002-002c-0f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70pb9xu0/@Element",
"odata.type": "chrissscratch.testtable70pb9xu0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.6994731Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A45.1389347Z\u0027\u0022",
"odata.editLink": "testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"PartitionKey": "somPartition",
"RowKey": "16",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:15.6994731Z",
+ "Timestamp": "2020-07-17T22:08:45.1389347Z",
"StringTypeProperty": "This is table entity number 16",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:17:00Z",
@@ -1345,17 +1362,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e441c2f1510e6f478b0be529b1516924-e4ad69643b019f4c-00",
+ "traceparent": "00-008e95f5a15221418a51b53d6dbbfc52-9391d61360857f43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "407b0387480c6e43d5af3c9cb1f2c471",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:45 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1384,8 +1402,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:15 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.7445105Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:44 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A45.1799697Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1394,19 +1412,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "407b0387480c6e43d5af3c9cb1f2c471",
- "x-ms-request-id": "20750651-b002-001b-3321-5aea7a000000",
+ "x-ms-request-id": "9b3308f7-4002-002c-1786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70pb9xu0/@Element",
"odata.type": "chrissscratch.testtable70pb9xu0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.7445105Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A45.1799697Z\u0027\u0022",
"odata.editLink": "testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"PartitionKey": "somPartition",
"RowKey": "17",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:15.7445105Z",
+ "Timestamp": "2020-07-17T22:08:45.1799697Z",
"StringTypeProperty": "This is table entity number 17",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:18:00Z",
@@ -1426,17 +1444,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a13505e1fce2f74699230701516953c2-bc31721b0b676642-00",
+ "traceparent": "00-3a4201f6aad9a14d948be93df56001aa-170981cc9d50ab4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "096115b99149fced917105b07854905e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:45 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1465,8 +1484,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:15 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.7895484Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:44 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A45.2260075Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1475,19 +1494,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "096115b99149fced917105b07854905e",
- "x-ms-request-id": "2075065c-b002-001b-3d21-5aea7a000000",
+ "x-ms-request-id": "9b330903-4002-002c-2286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70pb9xu0/@Element",
"odata.type": "chrissscratch.testtable70pb9xu0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.7895484Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A45.2260075Z\u0027\u0022",
"odata.editLink": "testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"PartitionKey": "somPartition",
"RowKey": "18",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:15.7895484Z",
+ "Timestamp": "2020-07-17T22:08:45.2260075Z",
"StringTypeProperty": "This is table entity number 18",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:19:00Z",
@@ -1507,17 +1526,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8eeb600fec14f14c904438e0fac7bcf5-81b21918893e1846-00",
+ "traceparent": "00-7d94f00c7663f34fa1b522ae45934427-963b15ab9904bc4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f5a17714136ee525673fe554ae7187c7",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:45 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1546,8 +1566,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:15 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.8315837Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:44 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A45.2670412Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1556,19 +1576,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f5a17714136ee525673fe554ae7187c7",
- "x-ms-request-id": "2075066a-b002-001b-4b21-5aea7a000000",
+ "x-ms-request-id": "9b330910-4002-002c-2e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70pb9xu0/@Element",
"odata.type": "chrissscratch.testtable70pb9xu0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.8315837Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A45.2670412Z\u0027\u0022",
"odata.editLink": "testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"PartitionKey": "somPartition",
"RowKey": "19",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:15.8315837Z",
+ "Timestamp": "2020-07-17T22:08:45.2670412Z",
"StringTypeProperty": "This is table entity number 19",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:20:00Z",
@@ -1588,17 +1608,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-38ff1df3e0a5a14cbdf9be4e0fe2dc3c-3444ca9503b45243-00",
+ "traceparent": "00-2db03a42db1e8048a39bf475cb9af86e-12bcac133379134e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a3c77908303bf54b167fae9b4393f581",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:45 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1627,8 +1648,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:15 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.8706152Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:44 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A45.3110778Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1637,19 +1658,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "a3c77908303bf54b167fae9b4393f581",
- "x-ms-request-id": "20750672-b002-001b-5321-5aea7a000000",
+ "x-ms-request-id": "9b330917-4002-002c-3586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable70pb9xu0/@Element",
"odata.type": "chrissscratch.testtable70pb9xu0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.8706152Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A45.3110778Z\u0027\u0022",
"odata.editLink": "testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"PartitionKey": "somPartition",
"RowKey": "20",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:15.8706152Z",
+ "Timestamp": "2020-07-17T22:08:45.3110778Z",
"StringTypeProperty": "This is table entity number 20",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:21:00Z",
@@ -1669,14 +1690,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20gt%20%2710%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3a87de1fcf50a603ef7ba209ab984d20",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:45 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1685,7 +1707,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:15 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:44 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1693,7 +1715,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "3a87de1fcf50a603ef7ba209ab984d20",
- "x-ms-request-id": "20750677-b002-001b-5821-5aea7a000000",
+ "x-ms-request-id": "9b330921-4002-002c-3d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1702,12 +1724,12 @@
{
"odata.type": "chrissscratch.testtable70pb9xu0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.4812925Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A44.9047404Z\u0027\u0022",
"odata.editLink": "testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"PartitionKey": "somPartition",
"RowKey": "11",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:15.4812925Z",
+ "Timestamp": "2020-07-17T22:08:44.9047404Z",
"StringTypeProperty": "This is table entity number 11",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:12:00Z",
@@ -1725,12 +1747,12 @@
{
"odata.type": "chrissscratch.testtable70pb9xu0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.5273302Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A44.9467745Z\u0027\u0022",
"odata.editLink": "testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"PartitionKey": "somPartition",
"RowKey": "12",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:15.5273302Z",
+ "Timestamp": "2020-07-17T22:08:44.9467745Z",
"StringTypeProperty": "This is table entity number 12",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:13:00Z",
@@ -1748,12 +1770,12 @@
{
"odata.type": "chrissscratch.testtable70pb9xu0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.5723676Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A44.9948153Z\u0027\u0022",
"odata.editLink": "testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"PartitionKey": "somPartition",
"RowKey": "13",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:15.5723676Z",
+ "Timestamp": "2020-07-17T22:08:44.9948153Z",
"StringTypeProperty": "This is table entity number 13",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:14:00Z",
@@ -1771,12 +1793,12 @@
{
"odata.type": "chrissscratch.testtable70pb9xu0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.6174054Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A45.0468582Z\u0027\u0022",
"odata.editLink": "testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"PartitionKey": "somPartition",
"RowKey": "14",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:15.6174054Z",
+ "Timestamp": "2020-07-17T22:08:45.0468582Z",
"StringTypeProperty": "This is table entity number 14",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:15:00Z",
@@ -1794,12 +1816,12 @@
{
"odata.type": "chrissscratch.testtable70pb9xu0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.6594412Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A45.0938973Z\u0027\u0022",
"odata.editLink": "testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"PartitionKey": "somPartition",
"RowKey": "15",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:15.6594412Z",
+ "Timestamp": "2020-07-17T22:08:45.0938973Z",
"StringTypeProperty": "This is table entity number 15",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:16:00Z",
@@ -1817,12 +1839,12 @@
{
"odata.type": "chrissscratch.testtable70pb9xu0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.6994731Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A45.1389347Z\u0027\u0022",
"odata.editLink": "testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"PartitionKey": "somPartition",
"RowKey": "16",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:15.6994731Z",
+ "Timestamp": "2020-07-17T22:08:45.1389347Z",
"StringTypeProperty": "This is table entity number 16",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:17:00Z",
@@ -1840,12 +1862,12 @@
{
"odata.type": "chrissscratch.testtable70pb9xu0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.7445105Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A45.1799697Z\u0027\u0022",
"odata.editLink": "testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"PartitionKey": "somPartition",
"RowKey": "17",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:15.7445105Z",
+ "Timestamp": "2020-07-17T22:08:45.1799697Z",
"StringTypeProperty": "This is table entity number 17",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:18:00Z",
@@ -1863,12 +1885,12 @@
{
"odata.type": "chrissscratch.testtable70pb9xu0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.7895484Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A45.2260075Z\u0027\u0022",
"odata.editLink": "testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"PartitionKey": "somPartition",
"RowKey": "18",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:15.7895484Z",
+ "Timestamp": "2020-07-17T22:08:45.2260075Z",
"StringTypeProperty": "This is table entity number 18",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:19:00Z",
@@ -1886,12 +1908,12 @@
{
"odata.type": "chrissscratch.testtable70pb9xu0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.8315837Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A45.2670412Z\u0027\u0022",
"odata.editLink": "testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"PartitionKey": "somPartition",
"RowKey": "19",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:15.8315837Z",
+ "Timestamp": "2020-07-17T22:08:45.2670412Z",
"StringTypeProperty": "This is table entity number 19",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:20:00Z",
@@ -1909,12 +1931,12 @@
{
"odata.type": "chrissscratch.testtable70pb9xu0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A15.8706152Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A45.3110778Z\u0027\u0022",
"odata.editLink": "testtable70pb9xu0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"PartitionKey": "somPartition",
"RowKey": "20",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:15.8706152Z",
+ "Timestamp": "2020-07-17T22:08:45.3110778Z",
"StringTypeProperty": "This is table entity number 20",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:21:00Z",
@@ -1938,13 +1960,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-566e51407ca40f428acb7ff833c382fd-619a7baaefab2742-00",
+ "traceparent": "00-b4fee7238fceb14084dda342c1dfbdca-806fac35bf952d4d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ffa73ee9ec8ce3232cacdeee658aa2d4",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:45 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1953,14 +1975,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:15 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:44 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ffa73ee9ec8ce3232cacdeee658aa2d4",
- "x-ms-request-id": "20750688-b002-001b-6921-5aea7a000000",
+ "x-ms-request-id": "9b33093c-4002-002c-4f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedCustomEntitiesCanBeQueriedWithFiltersAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedCustomEntitiesCanBeQueriedWithFiltersAsync.json
index 4ff5b8d9d87c..aad56579b937 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedCustomEntitiesCanBeQueriedWithFiltersAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedCustomEntitiesCanBeQueriedWithFiltersAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-619fd6eb42987345ac38f4487b968a34-96b62f62a7804346-00",
+ "traceparent": "00-090f73b3f5dea1479360c6dda5dfaea6-22a2c00f19994841-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "497c35bce2d312471565e205c481d247",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:38 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:57 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:38 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:56 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablea7gym0gy\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "497c35bce2d312471565e205c481d247",
- "x-ms-request-id": "20751d68-b002-001b-7121-5aea7a000000",
+ "x-ms-request-id": "9b3312f7-4002-002c-0786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-3471f8891d6209449be3775afb8d065e-63d0abe166a06848-00",
+ "traceparent": "00-034eadcaf8d11a40bd30628ad8098b9d-3510a3c8d6e52942-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "efb2303a965b5544f6cc93d241ccdc57",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:38 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:57 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -88,8 +90,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:38 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A38.5725091Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:56 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A57.4601907Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -98,19 +100,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "efb2303a965b5544f6cc93d241ccdc57",
- "x-ms-request-id": "20751d76-b002-001b-7e21-5aea7a000000",
+ "x-ms-request-id": "9b331303-4002-002c-1286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea7gym0gy/@Element",
"odata.type": "chrissscratch.testtablea7gym0gy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A38.5725091Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A57.4601907Z\u0027\u0022",
"odata.editLink": "testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:38.5725091Z",
+ "Timestamp": "2020-07-17T22:08:57.4601907Z",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:02:00Z",
@@ -130,17 +132,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-92f9a722420a1542ba606c9b111597a4-819b1482b269d942-00",
+ "traceparent": "00-e5f5c221e91e074784d71e34a29a01fb-e585cf6bb3444942-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5a02517afaed46d34f0ad5298fd65f68",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:38 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:57 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -169,8 +172,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:38 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A38.6145444Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:56 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A57.4992232Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -179,19 +182,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "5a02517afaed46d34f0ad5298fd65f68",
- "x-ms-request-id": "20751d80-b002-001b-0721-5aea7a000000",
+ "x-ms-request-id": "9b33130d-4002-002c-1c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea7gym0gy/@Element",
"odata.type": "chrissscratch.testtablea7gym0gy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A38.6145444Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A57.4992232Z\u0027\u0022",
"odata.editLink": "testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"PartitionKey": "somPartition",
"RowKey": "02",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:38.6145444Z",
+ "Timestamp": "2020-07-17T22:08:57.4992232Z",
"StringTypeProperty": "This is table entity number 02",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:03:00Z",
@@ -211,17 +214,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-b6aebe56e479a244960d3708b2b5c180-5f60b583f01bd045-00",
+ "traceparent": "00-4cd40f2a72611b42ac053b4f72f90ad4-77b152444bce794f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9e0e3405b6e025bbf02652074f74d048",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:38 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:57 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -250,8 +254,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:38 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A38.6575793Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:56 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A57.542259Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -260,19 +264,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "9e0e3405b6e025bbf02652074f74d048",
- "x-ms-request-id": "20751d8a-b002-001b-1121-5aea7a000000",
+ "x-ms-request-id": "9b331319-4002-002c-2886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea7gym0gy/@Element",
"odata.type": "chrissscratch.testtablea7gym0gy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A38.6575793Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A57.542259Z\u0027\u0022",
"odata.editLink": "testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"PartitionKey": "somPartition",
"RowKey": "03",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:38.6575793Z",
+ "Timestamp": "2020-07-17T22:08:57.542259Z",
"StringTypeProperty": "This is table entity number 03",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:04:00Z",
@@ -292,17 +296,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1776a3ae974442498f14b28ef1c41c38-7410cd92d39de24b-00",
+ "traceparent": "00-708f317dd119a84ab8c1b09151e231cd-cad50441de27174d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "738a8a89787e405a5c6ba050c11bc620",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:38 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:57 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -331,8 +336,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:38 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A38.7026175Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:56 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A57.5913002Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -341,19 +346,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "738a8a89787e405a5c6ba050c11bc620",
- "x-ms-request-id": "20751d91-b002-001b-1721-5aea7a000000",
+ "x-ms-request-id": "9b331325-4002-002c-3386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea7gym0gy/@Element",
"odata.type": "chrissscratch.testtablea7gym0gy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A38.7026175Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A57.5913002Z\u0027\u0022",
"odata.editLink": "testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"PartitionKey": "somPartition",
"RowKey": "04",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:38.7026175Z",
+ "Timestamp": "2020-07-17T22:08:57.5913002Z",
"StringTypeProperty": "This is table entity number 04",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:05:00Z",
@@ -373,17 +378,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-4a1bdd65f81e8849a88b22b5147bb555-a9c5b75310fb6d41-00",
+ "traceparent": "00-b9d3281284311e42a5d8618c0fd8a61b-c0bfbe5827e6014b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0ccd2a6c3ebec47795dc69c7a8cbf7da",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:57 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -412,8 +418,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:38 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A38.7446532Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:56 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A57.6363376Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -422,19 +428,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0ccd2a6c3ebec47795dc69c7a8cbf7da",
- "x-ms-request-id": "20751d9a-b002-001b-2021-5aea7a000000",
+ "x-ms-request-id": "9b33132e-4002-002c-3c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea7gym0gy/@Element",
"odata.type": "chrissscratch.testtablea7gym0gy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A38.7446532Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A57.6363376Z\u0027\u0022",
"odata.editLink": "testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"PartitionKey": "somPartition",
"RowKey": "05",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:38.7446532Z",
+ "Timestamp": "2020-07-17T22:08:57.6363376Z",
"StringTypeProperty": "This is table entity number 05",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:06:00Z",
@@ -454,17 +460,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-4220a6dbaa01974f880061a3639e0da9-3298b37404abec4d-00",
+ "traceparent": "00-0abd4be569e47149bfab6b6b64f5fe81-08c2b6bc25bc1548-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "05a08c3aec4b8de9dace4175156b64d5",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:57 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -493,8 +500,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:38 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A38.7896889Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:56 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A57.6823755Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -503,19 +510,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "05a08c3aec4b8de9dace4175156b64d5",
- "x-ms-request-id": "20751da5-b002-001b-2b21-5aea7a000000",
+ "x-ms-request-id": "9b331337-4002-002c-4586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea7gym0gy/@Element",
"odata.type": "chrissscratch.testtablea7gym0gy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A38.7896889Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A57.6823755Z\u0027\u0022",
"odata.editLink": "testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"PartitionKey": "somPartition",
"RowKey": "06",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:38.7896889Z",
+ "Timestamp": "2020-07-17T22:08:57.6823755Z",
"StringTypeProperty": "This is table entity number 06",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:07:00Z",
@@ -535,17 +542,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f5b409eed6fc9747ab828f71fb9967f0-1d8a3ef5bac52041-00",
+ "traceparent": "00-fe9837b7d28cd24892341afe20d254dd-c284d89d220d7a45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "249b315fc4a74a8a12c6dda10e929790",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:57 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -574,8 +582,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:38 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A38.8337255Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:56 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A57.729415Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -584,19 +592,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "249b315fc4a74a8a12c6dda10e929790",
- "x-ms-request-id": "20751dac-b002-001b-3121-5aea7a000000",
+ "x-ms-request-id": "9b331346-4002-002c-5486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea7gym0gy/@Element",
"odata.type": "chrissscratch.testtablea7gym0gy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A38.8337255Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A57.729415Z\u0027\u0022",
"odata.editLink": "testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"PartitionKey": "somPartition",
"RowKey": "07",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:38.8337255Z",
+ "Timestamp": "2020-07-17T22:08:57.729415Z",
"StringTypeProperty": "This is table entity number 07",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:08:00Z",
@@ -616,17 +624,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c61281f6f5db7c4fad3714a835bb0e67-5a31f00539da3e42-00",
+ "traceparent": "00-84dbc6dbb81b0b4090d33033bfe8d164-324a0384300e534d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3416c674c07a80d4404032effd02ae2a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:57 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -655,8 +664,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:38 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A38.8847691Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:56 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A57.774452Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -665,19 +674,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "3416c674c07a80d4404032effd02ae2a",
- "x-ms-request-id": "20751db7-b002-001b-3c21-5aea7a000000",
+ "x-ms-request-id": "9b331351-4002-002c-5f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea7gym0gy/@Element",
"odata.type": "chrissscratch.testtablea7gym0gy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A38.8847691Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A57.774452Z\u0027\u0022",
"odata.editLink": "testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"PartitionKey": "somPartition",
"RowKey": "08",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:38.8847691Z",
+ "Timestamp": "2020-07-17T22:08:57.774452Z",
"StringTypeProperty": "This is table entity number 08",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:09:00Z",
@@ -697,17 +706,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-52fa1f9c7a21a9469184d00fe6099a52-86e4fe17ee64f14c-00",
+ "traceparent": "00-68458054eff37b4bbadc8309c404d1e7-b1ec739718304f45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "76679378d23076330256f2840e487e47",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:57 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -736,8 +746,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:38 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A38.9288057Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:56 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A57.8174878Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -746,19 +756,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "76679378d23076330256f2840e487e47",
- "x-ms-request-id": "20751dc8-b002-001b-4c21-5aea7a000000",
+ "x-ms-request-id": "9b331358-4002-002c-6686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea7gym0gy/@Element",
"odata.type": "chrissscratch.testtablea7gym0gy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A38.9288057Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A57.8174878Z\u0027\u0022",
"odata.editLink": "testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"PartitionKey": "somPartition",
"RowKey": "09",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:38.9288057Z",
+ "Timestamp": "2020-07-17T22:08:57.8174878Z",
"StringTypeProperty": "This is table entity number 09",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:10:00Z",
@@ -778,17 +788,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-0047298cc372134cacf516627282a888-df50f1c88db73643-00",
+ "traceparent": "00-971fb3901045554faf5c6a22413d6390-3424af4218c26b49-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4e01b0372f559e5b5c1ae467929a4d10",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:57 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -817,8 +828,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:38 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A38.972841Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:57 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A57.8625257Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -827,19 +838,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "4e01b0372f559e5b5c1ae467929a4d10",
- "x-ms-request-id": "20751dd3-b002-001b-5721-5aea7a000000",
+ "x-ms-request-id": "9b331365-4002-002c-7386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea7gym0gy/@Element",
"odata.type": "chrissscratch.testtablea7gym0gy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A38.972841Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A57.8625257Z\u0027\u0022",
"odata.editLink": "testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"PartitionKey": "somPartition",
"RowKey": "10",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:38.972841Z",
+ "Timestamp": "2020-07-17T22:08:57.8625257Z",
"StringTypeProperty": "This is table entity number 10",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:11:00Z",
@@ -859,17 +870,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1ce916eb63096e40bd7703193b6896b6-a4d66db0e13d6f4a-00",
+ "traceparent": "00-62acd0276eb8c24893c2a0f847264808-2eca5f8a42b6554f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7a28b317212ba16093a03124ce5072f8",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:57 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -898,8 +910,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:38 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.0208817Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:57 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A57.9145685Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -908,19 +920,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "7a28b317212ba16093a03124ce5072f8",
- "x-ms-request-id": "20751ddb-b002-001b-5d21-5aea7a000000",
+ "x-ms-request-id": "9b331371-4002-002c-7f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea7gym0gy/@Element",
"odata.type": "chrissscratch.testtablea7gym0gy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.0208817Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A57.9145685Z\u0027\u0022",
"odata.editLink": "testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"PartitionKey": "somPartition",
"RowKey": "11",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:39.0208817Z",
+ "Timestamp": "2020-07-17T22:08:57.9145685Z",
"StringTypeProperty": "This is table entity number 11",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:12:00Z",
@@ -940,17 +952,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e06dc130d1807e4eb133d380c7890ecd-2b5cd0df56b4b945-00",
+ "traceparent": "00-abda01415423e343a05ec7c6177a94cc-e589e4a8e65f3848-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4cb8eac1600149d538c81915eecce367",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:58 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -979,8 +992,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:38 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.0649178Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:57 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A57.9586047Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -989,19 +1002,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "4cb8eac1600149d538c81915eecce367",
- "x-ms-request-id": "20751de3-b002-001b-6521-5aea7a000000",
+ "x-ms-request-id": "9b331377-4002-002c-0586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea7gym0gy/@Element",
"odata.type": "chrissscratch.testtablea7gym0gy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.0649178Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A57.9586047Z\u0027\u0022",
"odata.editLink": "testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"PartitionKey": "somPartition",
"RowKey": "12",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:39.0649178Z",
+ "Timestamp": "2020-07-17T22:08:57.9586047Z",
"StringTypeProperty": "This is table entity number 12",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:13:00Z",
@@ -1021,17 +1034,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-85142c18c7860147a207413b739a8dab-cfd1367f55f81f42-00",
+ "traceparent": "00-ecbbf13b2d37924e827b698d565b8456-bd91aad95954804d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5a6ce209031f151c505fbbb4fd37d00c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:58 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1060,8 +1074,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:38 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.1129581Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:57 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.0126505Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1070,19 +1084,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "5a6ce209031f151c505fbbb4fd37d00c",
- "x-ms-request-id": "20751dec-b002-001b-6c21-5aea7a000000",
+ "x-ms-request-id": "9b331384-4002-002c-1186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea7gym0gy/@Element",
"odata.type": "chrissscratch.testtablea7gym0gy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.1129581Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.0126505Z\u0027\u0022",
"odata.editLink": "testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"PartitionKey": "somPartition",
"RowKey": "13",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:39.1129581Z",
+ "Timestamp": "2020-07-17T22:08:58.0126505Z",
"StringTypeProperty": "This is table entity number 13",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:14:00Z",
@@ -1102,17 +1116,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c8728a525a2f7842b005cdc1d98fb93d-bf8a7debe6e12444-00",
+ "traceparent": "00-c8e38086f29843499cc50cd22d732493-5db86640034f0c4c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a7a5eba800e2b70fdddf4262074ab2c6",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:58 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1141,8 +1156,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:38 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.155993Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:57 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.0526838Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1151,19 +1166,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "a7a5eba800e2b70fdddf4262074ab2c6",
- "x-ms-request-id": "20751df9-b002-001b-7921-5aea7a000000",
+ "x-ms-request-id": "9b33138c-4002-002c-1986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea7gym0gy/@Element",
"odata.type": "chrissscratch.testtablea7gym0gy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.155993Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.0526838Z\u0027\u0022",
"odata.editLink": "testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"PartitionKey": "somPartition",
"RowKey": "14",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:39.155993Z",
+ "Timestamp": "2020-07-17T22:08:58.0526838Z",
"StringTypeProperty": "This is table entity number 14",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:15:00Z",
@@ -1183,17 +1198,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-26bf5630bab9aa4192fcc373465cd260-e365890eb137da4c-00",
+ "traceparent": "00-edbc722d950c0c4695b6cdfd3b8e1db0-81af4e79f62a5d40-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ec1bc9bc17e3bdd9cda2fca1a4204b00",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:58 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1222,8 +1238,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:38 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.20003Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:57 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.0997233Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1232,19 +1248,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ec1bc9bc17e3bdd9cda2fca1a4204b00",
- "x-ms-request-id": "20751e07-b002-001b-0521-5aea7a000000",
+ "x-ms-request-id": "9b331394-4002-002c-2186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea7gym0gy/@Element",
"odata.type": "chrissscratch.testtablea7gym0gy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.20003Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.0997233Z\u0027\u0022",
"odata.editLink": "testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"PartitionKey": "somPartition",
"RowKey": "15",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:39.20003Z",
+ "Timestamp": "2020-07-17T22:08:58.0997233Z",
"StringTypeProperty": "This is table entity number 15",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:16:00Z",
@@ -1264,17 +1280,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-5f5333467e96de4f80825b0e32ead01e-cb8f50b9611d7b47-00",
+ "traceparent": "00-5be024f2d7f9f048a3cc6169ca304feb-19c1b3e8a860fa49-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "036d0cf83b260885d2b57d3fc1b90e05",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:58 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1303,8 +1320,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:39 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.2430653Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:57 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.1457611Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1313,19 +1330,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "036d0cf83b260885d2b57d3fc1b90e05",
- "x-ms-request-id": "20751e11-b002-001b-0f21-5aea7a000000",
+ "x-ms-request-id": "9b33139f-4002-002c-2c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea7gym0gy/@Element",
"odata.type": "chrissscratch.testtablea7gym0gy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.2430653Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.1457611Z\u0027\u0022",
"odata.editLink": "testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"PartitionKey": "somPartition",
"RowKey": "16",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:39.2430653Z",
+ "Timestamp": "2020-07-17T22:08:58.1457611Z",
"StringTypeProperty": "This is table entity number 16",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:17:00Z",
@@ -1345,17 +1362,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-867691d10188724899c3c53fd7bbab14-32cc54858b4a8945-00",
+ "traceparent": "00-1fe748bc31fdc545ab6e21b75334e2ef-3355b1fe4ddd0148-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "33f8f4ade41c912912e8da3f036d13bd",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:58 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1384,8 +1402,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:39 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.2901048Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:57 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.1948019Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1394,19 +1412,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "33f8f4ade41c912912e8da3f036d13bd",
- "x-ms-request-id": "20751e1c-b002-001b-1a21-5aea7a000000",
+ "x-ms-request-id": "9b3313aa-4002-002c-3786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea7gym0gy/@Element",
"odata.type": "chrissscratch.testtablea7gym0gy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.2901048Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.1948019Z\u0027\u0022",
"odata.editLink": "testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"PartitionKey": "somPartition",
"RowKey": "17",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:39.2901048Z",
+ "Timestamp": "2020-07-17T22:08:58.1948019Z",
"StringTypeProperty": "This is table entity number 17",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:18:00Z",
@@ -1426,17 +1444,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8c847b43220272468fa6c040acfa6b9f-a826097320d7c644-00",
+ "traceparent": "00-4f97d0f8d193d244ac7c138a900bf5be-fbeb8a1f7d050d43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "fa6a4293afdd80a04412192e9999fc14",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:58 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1465,8 +1484,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:39 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.3341417Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:57 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.2418406Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1475,19 +1494,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "fa6a4293afdd80a04412192e9999fc14",
- "x-ms-request-id": "20751e23-b002-001b-2121-5aea7a000000",
+ "x-ms-request-id": "9b3313bb-4002-002c-4686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea7gym0gy/@Element",
"odata.type": "chrissscratch.testtablea7gym0gy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.3341417Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.2418406Z\u0027\u0022",
"odata.editLink": "testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"PartitionKey": "somPartition",
"RowKey": "18",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:39.3341417Z",
+ "Timestamp": "2020-07-17T22:08:58.2418406Z",
"StringTypeProperty": "This is table entity number 18",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:19:00Z",
@@ -1507,17 +1526,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-124a9567ee31f749bb3267049204d165-024bd9ecf66d4244-00",
+ "traceparent": "00-fa42088dcf7a3c4b9d4f466c487df56f-addbe8fecaee3b46-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "aff3f693182713e4e3dbf13e61450565",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:58 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1546,8 +1566,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:39 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.3791783Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:57 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.2848768Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1556,19 +1576,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "aff3f693182713e4e3dbf13e61450565",
- "x-ms-request-id": "20751e33-b002-001b-3021-5aea7a000000",
+ "x-ms-request-id": "9b3313c1-4002-002c-4c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea7gym0gy/@Element",
"odata.type": "chrissscratch.testtablea7gym0gy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.3791783Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.2848768Z\u0027\u0022",
"odata.editLink": "testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"PartitionKey": "somPartition",
"RowKey": "19",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:39.3791783Z",
+ "Timestamp": "2020-07-17T22:08:58.2848768Z",
"StringTypeProperty": "This is table entity number 19",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:20:00Z",
@@ -1588,17 +1608,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-130760ab41875b488460661d2201756b-da34a9c681bf7d41-00",
+ "traceparent": "00-c5ba6dda9621234aa9bb961d7acdc492-e392dee880b78a41-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7eacc0a1144efe285478ef0acafbf778",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:58 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1627,8 +1648,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:39 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.4322223Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:57 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.3299138Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1637,19 +1658,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "7eacc0a1144efe285478ef0acafbf778",
- "x-ms-request-id": "20751e45-b002-001b-4221-5aea7a000000",
+ "x-ms-request-id": "9b3313cd-4002-002c-5686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea7gym0gy/@Element",
"odata.type": "chrissscratch.testtablea7gym0gy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.4322223Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.3299138Z\u0027\u0022",
"odata.editLink": "testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"PartitionKey": "somPartition",
"RowKey": "20",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:39.4322223Z",
+ "Timestamp": "2020-07-17T22:08:58.3299138Z",
"StringTypeProperty": "This is table entity number 20",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:21:00Z",
@@ -1669,14 +1690,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20gt%20%2710%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0cabc6eb637a7b955d561601be611efe",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:58 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1685,7 +1707,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:39 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:57 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1693,7 +1715,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0cabc6eb637a7b955d561601be611efe",
- "x-ms-request-id": "20751e50-b002-001b-4d21-5aea7a000000",
+ "x-ms-request-id": "9b3313d2-4002-002c-5b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1702,12 +1724,12 @@
{
"odata.type": "chrissscratch.testtablea7gym0gy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.0208817Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A57.9145685Z\u0027\u0022",
"odata.editLink": "testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"PartitionKey": "somPartition",
"RowKey": "11",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:39.0208817Z",
+ "Timestamp": "2020-07-17T22:08:57.9145685Z",
"StringTypeProperty": "This is table entity number 11",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:12:00Z",
@@ -1725,12 +1747,12 @@
{
"odata.type": "chrissscratch.testtablea7gym0gy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.0649178Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A57.9586047Z\u0027\u0022",
"odata.editLink": "testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"PartitionKey": "somPartition",
"RowKey": "12",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:39.0649178Z",
+ "Timestamp": "2020-07-17T22:08:57.9586047Z",
"StringTypeProperty": "This is table entity number 12",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:13:00Z",
@@ -1748,12 +1770,12 @@
{
"odata.type": "chrissscratch.testtablea7gym0gy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.1129581Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.0126505Z\u0027\u0022",
"odata.editLink": "testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"PartitionKey": "somPartition",
"RowKey": "13",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:39.1129581Z",
+ "Timestamp": "2020-07-17T22:08:58.0126505Z",
"StringTypeProperty": "This is table entity number 13",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:14:00Z",
@@ -1771,12 +1793,12 @@
{
"odata.type": "chrissscratch.testtablea7gym0gy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.155993Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.0526838Z\u0027\u0022",
"odata.editLink": "testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"PartitionKey": "somPartition",
"RowKey": "14",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:39.155993Z",
+ "Timestamp": "2020-07-17T22:08:58.0526838Z",
"StringTypeProperty": "This is table entity number 14",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:15:00Z",
@@ -1794,12 +1816,12 @@
{
"odata.type": "chrissscratch.testtablea7gym0gy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.20003Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.0997233Z\u0027\u0022",
"odata.editLink": "testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"PartitionKey": "somPartition",
"RowKey": "15",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:39.20003Z",
+ "Timestamp": "2020-07-17T22:08:58.0997233Z",
"StringTypeProperty": "This is table entity number 15",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:16:00Z",
@@ -1817,12 +1839,12 @@
{
"odata.type": "chrissscratch.testtablea7gym0gy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.2430653Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.1457611Z\u0027\u0022",
"odata.editLink": "testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"PartitionKey": "somPartition",
"RowKey": "16",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:39.2430653Z",
+ "Timestamp": "2020-07-17T22:08:58.1457611Z",
"StringTypeProperty": "This is table entity number 16",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:17:00Z",
@@ -1840,12 +1862,12 @@
{
"odata.type": "chrissscratch.testtablea7gym0gy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.2901048Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.1948019Z\u0027\u0022",
"odata.editLink": "testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"PartitionKey": "somPartition",
"RowKey": "17",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:39.2901048Z",
+ "Timestamp": "2020-07-17T22:08:58.1948019Z",
"StringTypeProperty": "This is table entity number 17",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:18:00Z",
@@ -1863,12 +1885,12 @@
{
"odata.type": "chrissscratch.testtablea7gym0gy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.3341417Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.2418406Z\u0027\u0022",
"odata.editLink": "testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"PartitionKey": "somPartition",
"RowKey": "18",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:39.3341417Z",
+ "Timestamp": "2020-07-17T22:08:58.2418406Z",
"StringTypeProperty": "This is table entity number 18",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:19:00Z",
@@ -1886,12 +1908,12 @@
{
"odata.type": "chrissscratch.testtablea7gym0gy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.3791783Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.2848768Z\u0027\u0022",
"odata.editLink": "testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"PartitionKey": "somPartition",
"RowKey": "19",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:39.3791783Z",
+ "Timestamp": "2020-07-17T22:08:58.2848768Z",
"StringTypeProperty": "This is table entity number 19",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:20:00Z",
@@ -1909,12 +1931,12 @@
{
"odata.type": "chrissscratch.testtablea7gym0gy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.4322223Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.3299138Z\u0027\u0022",
"odata.editLink": "testtablea7gym0gy(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"PartitionKey": "somPartition",
"RowKey": "20",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:39.4322223Z",
+ "Timestamp": "2020-07-17T22:08:58.3299138Z",
"StringTypeProperty": "This is table entity number 20",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:21:00Z",
@@ -1938,13 +1960,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-59fd122c2b13e642a1509aaae572025c-2069142360501241-00",
+ "traceparent": "00-3bef5d5b884f42409f22b395cc92d9cd-8a9bb9770a53e546-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d98cb40c7ded7fc5cef55bae28da48e7",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:58 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1953,14 +1975,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:39 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:57 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d98cb40c7ded7fc5cef55bae28da48e7",
- "x-ms-request-id": "20751e62-b002-001b-5c21-5aea7a000000",
+ "x-ms-request-id": "9b3313e5-4002-002c-6e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedEntitiesAreRoundtrippedWithProperOdataAnnoations.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedEntitiesAreRoundtrippedWithProperOdataAnnoations.json
index 69f5d7ebe33a..17089f748542 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedEntitiesAreRoundtrippedWithProperOdataAnnoations.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedEntitiesAreRoundtrippedWithProperOdataAnnoations.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-cf608f9e41595e489dbbe5a2ad37e3c1-f3175e69aba9494b-00",
+ "traceparent": "00-ea0108cd782f7645913821936fd15332-e10ae74b4affb04f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "83b85807c712dccf0e75b787af8bb6bf",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:45 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:15 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:44 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablec0i2mfqe\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "83b85807c712dccf0e75b787af8bb6bf",
- "x-ms-request-id": "20750692-b002-001b-7321-5aea7a000000",
+ "x-ms-request-id": "9b330947-4002-002c-5a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablec0i2mfqe?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1df6d70cd989cb4a9ba2ce178842456e-564dae5f0e3af94f-00",
+ "traceparent": "00-1ba875181173a24aa55ebe7e0d7e44c4-47504bcdcada2048-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "135614ea1125e684db0ca9af93633c4f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:45 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -85,8 +87,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:15 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.0928005Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:44 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A45.550278Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablec0i2mfqe(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -95,19 +97,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "135614ea1125e684db0ca9af93633c4f",
- "x-ms-request-id": "2075069d-b002-001b-7a21-5aea7a000000",
+ "x-ms-request-id": "9b330954-4002-002c-6486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablec0i2mfqe/@Element",
"odata.type": "chrissscratch.testtablec0i2mfqe",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablec0i2mfqe(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.0928005Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A45.550278Z\u0027\u0022",
"odata.editLink": "testtablec0i2mfqe(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:16.0928005Z",
+ "Timestamp": "2020-07-17T22:08:45.550278Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:02:00Z",
@@ -126,14 +128,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablec0i2mfqe()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%2701%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "06c0d87e2c4fcae156d4e11dd97befdd",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:45 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -142,7 +145,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:15 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:44 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -150,7 +153,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "06c0d87e2c4fcae156d4e11dd97befdd",
- "x-ms-request-id": "207506a7-b002-001b-0221-5aea7a000000",
+ "x-ms-request-id": "9b330963-4002-002c-7086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -159,12 +162,12 @@
{
"odata.type": "chrissscratch.testtablec0i2mfqe",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablec0i2mfqe(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.0928005Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A45.550278Z\u0027\u0022",
"odata.editLink": "testtablec0i2mfqe(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:16.0928005Z",
+ "Timestamp": "2020-07-17T22:08:45.550278Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:02:00Z",
@@ -187,13 +190,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-cc24593745b68740a2c84ebf875a634f-21e9652360b18343-00",
+ "traceparent": "00-fd2e12e66c1419449c25f4bf3eab0b77-30d678c7decc0a47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ceebc48fa696f62bd3d1a8051d2048aa",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:45 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -202,14 +205,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:15 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:44 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ceebc48fa696f62bd3d1a8051d2048aa",
- "x-ms-request-id": "207506b0-b002-001b-0b21-5aea7a000000",
+ "x-ms-request-id": "9b330971-4002-002c-7d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedEntitiesAreRoundtrippedWithProperOdataAnnoationsAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedEntitiesAreRoundtrippedWithProperOdataAnnoationsAsync.json
index 2c6c1f3630a4..6636b8584f26 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedEntitiesAreRoundtrippedWithProperOdataAnnoationsAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedEntitiesAreRoundtrippedWithProperOdataAnnoationsAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c2cf9b04410b264ca82baa3257b51013-eb5a330d0739ec48-00",
+ "traceparent": "00-99fac8d4c39baa438f7d278e68b89d0c-13883e30fbc5bd43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a08571805a6b16182b22824f4be169ad",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:58 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:39 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:57 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablenpuhopc0\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "a08571805a6b16182b22824f4be169ad",
- "x-ms-request-id": "20751e6b-b002-001b-6521-5aea7a000000",
+ "x-ms-request-id": "9b3313ed-4002-002c-7686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablenpuhopc0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c434d40cf901b047bb2233b65ef33bfc-7d732b5ddfff7245-00",
+ "traceparent": "00-33b03f77a44279478a4abf14bf465e55-c2afa7e77848284b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6cd8f67056a2da3b1f39ddce438db8e2",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:58 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -85,8 +87,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:39 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.6744238Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:57 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.5531002Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablenpuhopc0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -95,19 +97,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "6cd8f67056a2da3b1f39ddce438db8e2",
- "x-ms-request-id": "20751e7c-b002-001b-7521-5aea7a000000",
+ "x-ms-request-id": "9b3313f4-4002-002c-7c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablenpuhopc0/@Element",
"odata.type": "chrissscratch.testtablenpuhopc0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablenpuhopc0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.6744238Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.5531002Z\u0027\u0022",
"odata.editLink": "testtablenpuhopc0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:39.6744238Z",
+ "Timestamp": "2020-07-17T22:08:58.5531002Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:02:00Z",
@@ -126,14 +128,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablenpuhopc0()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%2701%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5ba207f63f682a1fbec8de2806394e51",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:58 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -142,7 +145,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:39 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:57 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -150,7 +153,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "5ba207f63f682a1fbec8de2806394e51",
- "x-ms-request-id": "20751e83-b002-001b-7c21-5aea7a000000",
+ "x-ms-request-id": "9b3313fa-4002-002c-0286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -159,12 +162,12 @@
{
"odata.type": "chrissscratch.testtablenpuhopc0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablenpuhopc0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.6744238Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.5531002Z\u0027\u0022",
"odata.editLink": "testtablenpuhopc0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:39.6744238Z",
+ "Timestamp": "2020-07-17T22:08:58.5531002Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:02:00Z",
@@ -187,13 +190,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-ed99d25bd599c34ca7c8029d5a08ecb1-8d1a4e8fca509344-00",
+ "traceparent": "00-ee49dc550f18a945bc9bcbdf5fc33253-2f75430972688c43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ca939b440a202a6c36aa80317d4ad29e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:58 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -202,14 +205,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:39 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:57 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ca939b440a202a6c36aa80317d4ad29e",
- "x-ms-request-id": "20751e8c-b002-001b-0521-5aea7a000000",
+ "x-ms-request-id": "9b331404-4002-002c-0c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedEntitiesCanBeQueriedWithAndWithoutPagination(5).json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedEntitiesCanBeQueriedWithAndWithoutPagination(5).json
index 25b784007a06..544bb00516fb 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedEntitiesCanBeQueriedWithAndWithoutPagination(5).json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedEntitiesCanBeQueriedWithAndWithoutPagination(5).json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-4cfcb5d116931447bb7389c5fb54b7bb-0e4a71069effbb44-00",
+ "traceparent": "00-30a4bc25ac745842bea61e4d6cedb940-e9d055918c7d464f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "de3b5207e15f226a76066eea715ac76a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:25 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:55 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:24 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:55 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable6nmld7qt\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "de3b5207e15f226a76066eea715ac76a",
- "x-ms-request-id": "20750f38-b002-001b-0421-5aea7a000000",
+ "x-ms-request-id": "9b3311ca-4002-002c-6f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-26f7dbd7e7471a4e8f1f4dc7d038f35c-4b9ac842d71e1342-00",
+ "traceparent": "00-edc84380bca76046b20d133a49a49966-2b92f3fd6cfa0549-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b9eb7fbea1f503b4cfdcbf6deaf8d828",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:25 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:55 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -85,8 +87,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:24 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.1373537Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:55 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.877876Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -95,19 +97,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "b9eb7fbea1f503b4cfdcbf6deaf8d828",
- "x-ms-request-id": "20750f44-b002-001b-0d21-5aea7a000000",
+ "x-ms-request-id": "9b3311e8-4002-002c-0a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable6nmld7qt/@Element",
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.1373537Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.877876Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.1373537Z",
+ "Timestamp": "2020-07-17T22:08:55.877876Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:02:00Z",
@@ -126,17 +128,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-b67f04e001723b4ea816943800e3783d-f0dc2fff4f31d449-00",
+ "traceparent": "00-05197cd26e687b4f9f9f9d7f3f11e309-6ee731039fbb914c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a6b915344144fd5ed500ca963a170f09",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:25 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:56 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -162,8 +165,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:24 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.1833922Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:55 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.9219114Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -172,19 +175,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "a6b915344144fd5ed500ca963a170f09",
- "x-ms-request-id": "20750f4c-b002-001b-1421-5aea7a000000",
+ "x-ms-request-id": "9b3311ec-4002-002c-0e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable6nmld7qt/@Element",
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.1833922Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.9219114Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"PartitionKey": "somPartition",
"RowKey": "02",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.1833922Z",
+ "Timestamp": "2020-07-17T22:08:55.9219114Z",
"SomeStringProperty": "This is table entity number 02",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:03:00Z",
@@ -203,17 +206,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f75b9bcb650add4084ebd219eaad2a12-bc5446da46fa6e43-00",
+ "traceparent": "00-edc1768b9e3cf54cbcea1165a5e7eea8-e1b0ba99a2c48147-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3fd60198c5fd66029e380f8222fc377e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:25 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:56 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -239,8 +243,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:25 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.2284307Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:55 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.9679505Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -249,19 +253,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "3fd60198c5fd66029e380f8222fc377e",
- "x-ms-request-id": "20750f56-b002-001b-1e21-5aea7a000000",
+ "x-ms-request-id": "9b3311f4-4002-002c-1686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable6nmld7qt/@Element",
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.2284307Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.9679505Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"PartitionKey": "somPartition",
"RowKey": "03",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.2284307Z",
+ "Timestamp": "2020-07-17T22:08:55.9679505Z",
"SomeStringProperty": "This is table entity number 03",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:04:00Z",
@@ -280,17 +284,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e932de619794f3428c0bb5280c25670c-7ef1fd4cec7f434f-00",
+ "traceparent": "00-db69c062ba097241a29a24693764eca7-d3f849a57b4dab40-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5bb6462d21a17d2621eee4f4d61dc8b7",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:25 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:56 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -316,8 +321,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:25 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.2724671Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:55 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.0109867Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -326,19 +331,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "5bb6462d21a17d2621eee4f4d61dc8b7",
- "x-ms-request-id": "20750f64-b002-001b-2c21-5aea7a000000",
+ "x-ms-request-id": "9b3311fa-4002-002c-1c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable6nmld7qt/@Element",
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.2724671Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.0109867Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"PartitionKey": "somPartition",
"RowKey": "04",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.2724671Z",
+ "Timestamp": "2020-07-17T22:08:56.0109867Z",
"SomeStringProperty": "This is table entity number 04",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:05:00Z",
@@ -357,17 +362,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-28bcfcd15dd72f44b227472268b38939-c3245926baa6f549-00",
+ "traceparent": "00-fb7e4205dd397b4e80def10b579b85b3-e9a87600f5e9d145-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e9d4b6cd98216e2a1352080b31dbdbd8",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:25 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:56 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -393,8 +399,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:25 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.3205077Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:55 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.05202Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -403,19 +409,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "e9d4b6cd98216e2a1352080b31dbdbd8",
- "x-ms-request-id": "20750f70-b002-001b-3821-5aea7a000000",
+ "x-ms-request-id": "9b3311ff-4002-002c-2186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable6nmld7qt/@Element",
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.3205077Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.05202Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"PartitionKey": "somPartition",
"RowKey": "05",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.3205077Z",
+ "Timestamp": "2020-07-17T22:08:56.05202Z",
"SomeStringProperty": "This is table entity number 05",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:06:00Z",
@@ -434,17 +440,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ed3dc5d4c518074f90fa8b2831ea3302-daf23f79aceacf4b-00",
+ "traceparent": "00-ef10f12fadffd4448ce72968294d329d-bd6dea2703d1c842-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f3684cc9b3617767db591e0ee00d8f80",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:25 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:56 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -470,8 +477,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:25 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.3665453Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:55 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.1100682Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -480,19 +487,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f3684cc9b3617767db591e0ee00d8f80",
- "x-ms-request-id": "20750f74-b002-001b-3c21-5aea7a000000",
+ "x-ms-request-id": "9b33120f-4002-002c-2d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable6nmld7qt/@Element",
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.3665453Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.1100682Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"PartitionKey": "somPartition",
"RowKey": "06",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.3665453Z",
+ "Timestamp": "2020-07-17T22:08:56.1100682Z",
"SomeStringProperty": "This is table entity number 06",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:07:00Z",
@@ -511,17 +518,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-853212538ac0b741b00893c28f5d4ea9-a9510861906bc745-00",
+ "traceparent": "00-29abbbeb47519649b953cd845319d4ce-aeedb29b1ff6e340-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6bb4586f4e28955c1b47484f181a4b45",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:25 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:56 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -547,8 +555,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:25 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.4135847Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:55 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.1551061Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -557,19 +565,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "6bb4586f4e28955c1b47484f181a4b45",
- "x-ms-request-id": "20750f7e-b002-001b-4621-5aea7a000000",
+ "x-ms-request-id": "9b33121c-4002-002c-3a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable6nmld7qt/@Element",
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.4135847Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.1551061Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"PartitionKey": "somPartition",
"RowKey": "07",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.4135847Z",
+ "Timestamp": "2020-07-17T22:08:56.1551061Z",
"SomeStringProperty": "This is table entity number 07",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:08:00Z",
@@ -588,17 +596,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-0d81995c958262408ced68c82b95bab7-b19d828a402cdd4d-00",
+ "traceparent": "00-ca3daab489f12f4e8143a11a8be3a29b-2bf88b73e194fa46-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8a2b0c13d5b41a554e5d0dc8791c8d06",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:25 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:56 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -624,8 +633,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:25 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.4596232Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:55 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.2081493Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -634,19 +643,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "8a2b0c13d5b41a554e5d0dc8791c8d06",
- "x-ms-request-id": "20750f89-b002-001b-5121-5aea7a000000",
+ "x-ms-request-id": "9b331226-4002-002c-4486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable6nmld7qt/@Element",
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.4596232Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.2081493Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"PartitionKey": "somPartition",
"RowKey": "08",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.4596232Z",
+ "Timestamp": "2020-07-17T22:08:56.2081493Z",
"SomeStringProperty": "This is table entity number 08",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:09:00Z",
@@ -665,17 +674,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e439aed5681ea444a474e18832f2575a-43b6b1ec03acec47-00",
+ "traceparent": "00-f0c9b0269a70af47888a73842af7e937-f246a3697a211d4f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d99c88c26f267ab0efd3d81a6b185ec0",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:25 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:56 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -701,8 +711,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:25 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.5056619Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:55 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.2601935Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -711,19 +721,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d99c88c26f267ab0efd3d81a6b185ec0",
- "x-ms-request-id": "20750f97-b002-001b-5f21-5aea7a000000",
+ "x-ms-request-id": "9b331231-4002-002c-4d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable6nmld7qt/@Element",
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.5056619Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.2601935Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"PartitionKey": "somPartition",
"RowKey": "09",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.5056619Z",
+ "Timestamp": "2020-07-17T22:08:56.2601935Z",
"SomeStringProperty": "This is table entity number 09",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:10:00Z",
@@ -742,17 +752,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-daf9acc7098f434eacb4756f63789f2c-087a6cf7acdbed4f-00",
+ "traceparent": "00-d955bf1c9fc9914eb38e5d773045c335-e268661b39fffa4c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d4fbd90d05e29acb029a1cca40941bff",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:25 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:56 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -778,8 +789,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:25 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.5486976Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:55 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.3052313Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -788,19 +799,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d4fbd90d05e29acb029a1cca40941bff",
- "x-ms-request-id": "20750faa-b002-001b-7221-5aea7a000000",
+ "x-ms-request-id": "9b33123b-4002-002c-5786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable6nmld7qt/@Element",
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.5486976Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.3052313Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"PartitionKey": "somPartition",
"RowKey": "10",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.5486976Z",
+ "Timestamp": "2020-07-17T22:08:56.3052313Z",
"SomeStringProperty": "This is table entity number 10",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:11:00Z",
@@ -819,17 +830,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-3882573cfcaab1418209f6908acdf1e1-05cdb4abe4040d42-00",
+ "traceparent": "00-4e95539001f80c4491e0dee48dd1bee3-0062b06bbbf9d94f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8f8c41ba717ea41f5cb09ae1fd3baf36",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:25 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:56 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -855,8 +867,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:25 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.5917333Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:55 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.3482671Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -865,19 +877,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "8f8c41ba717ea41f5cb09ae1fd3baf36",
- "x-ms-request-id": "20750fb8-b002-001b-7f21-5aea7a000000",
+ "x-ms-request-id": "9b331244-4002-002c-6086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable6nmld7qt/@Element",
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.5917333Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.3482671Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"PartitionKey": "somPartition",
"RowKey": "11",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.5917333Z",
+ "Timestamp": "2020-07-17T22:08:56.3482671Z",
"SomeStringProperty": "This is table entity number 11",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:12:00Z",
@@ -896,17 +908,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a882bb061edf4e4aaa8546840e619172-8d50ac7a1551914f-00",
+ "traceparent": "00-4407e37a4f5c5b4682da7068d5a0f061-53f8022f8a557a40-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a0ba4cfeb820bd24bd02d78c52e5395b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:25 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:56 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -932,8 +945,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:25 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.6367707Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:55 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.3913029Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -942,19 +955,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "a0ba4cfeb820bd24bd02d78c52e5395b",
- "x-ms-request-id": "20750fc7-b002-001b-0e21-5aea7a000000",
+ "x-ms-request-id": "9b33124d-4002-002c-6986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable6nmld7qt/@Element",
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.6367707Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.3913029Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"PartitionKey": "somPartition",
"RowKey": "12",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.6367707Z",
+ "Timestamp": "2020-07-17T22:08:56.3913029Z",
"SomeStringProperty": "This is table entity number 12",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:13:00Z",
@@ -973,17 +986,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-da731bffe03b7143a2beb7d86aa11c5e-6ccf135d2e2f4a44-00",
+ "traceparent": "00-109bda740dd4904781fc266704d38607-72c71fc322c54741-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "295fd8b8cf8c9b42ba5778316ae99dc6",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:25 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:56 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1009,8 +1023,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:25 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.6818081Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:55 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.4373407Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1019,19 +1033,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "295fd8b8cf8c9b42ba5778316ae99dc6",
- "x-ms-request-id": "20750fce-b002-001b-1521-5aea7a000000",
+ "x-ms-request-id": "9b331251-4002-002c-6d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable6nmld7qt/@Element",
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.6818081Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.4373407Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"PartitionKey": "somPartition",
"RowKey": "13",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.6818081Z",
+ "Timestamp": "2020-07-17T22:08:56.4373407Z",
"SomeStringProperty": "This is table entity number 13",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:14:00Z",
@@ -1050,17 +1064,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d1a370307d1e224985e5431729c0644c-22e85d7b3d208149-00",
+ "traceparent": "00-2f6448b06ede6348a5751db2f3a64ce1-42054986ec913144-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f3cbe6ea7ad901de1dced27b9a925176",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:26 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:56 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1086,8 +1101,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:25 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.723843Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:55 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.4863828Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1096,19 +1111,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f3cbe6ea7ad901de1dced27b9a925176",
- "x-ms-request-id": "20750fd9-b002-001b-1f21-5aea7a000000",
+ "x-ms-request-id": "9b33125d-4002-002c-7986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable6nmld7qt/@Element",
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.723843Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.4863828Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"PartitionKey": "somPartition",
"RowKey": "14",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.723843Z",
+ "Timestamp": "2020-07-17T22:08:56.4863828Z",
"SomeStringProperty": "This is table entity number 14",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:15:00Z",
@@ -1127,17 +1142,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-b48483b566d31a41a2b2a53d56e9e586-2b97cf0470db6b4e-00",
+ "traceparent": "00-9ee31f8f8c296e4386cadb43e1e152f6-5ff1f12305113b4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "24283e7686db2fa90a1ee6c940f253d3",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:26 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:56 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1163,8 +1179,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:25 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.7658787Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:55 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.5354223Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1173,19 +1189,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "24283e7686db2fa90a1ee6c940f253d3",
- "x-ms-request-id": "20750fe1-b002-001b-2721-5aea7a000000",
+ "x-ms-request-id": "9b331261-4002-002c-7d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable6nmld7qt/@Element",
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.7658787Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.5354223Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"PartitionKey": "somPartition",
"RowKey": "15",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.7658787Z",
+ "Timestamp": "2020-07-17T22:08:56.5354223Z",
"SomeStringProperty": "This is table entity number 15",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:16:00Z",
@@ -1204,17 +1220,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-34ae48051961904e8ec1c59dbbd79658-b6d8424b6bb4424b-00",
+ "traceparent": "00-6158cf2819681e47bfdb3b7ef537265d-c89a97914e4a1747-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6ca2106446193d82f95e0bbdfcc60127",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:26 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:56 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1240,8 +1257,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:25 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.8159194Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:55 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.581461Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1250,19 +1267,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "6ca2106446193d82f95e0bbdfcc60127",
- "x-ms-request-id": "20750fed-b002-001b-3321-5aea7a000000",
+ "x-ms-request-id": "9b331267-4002-002c-0386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable6nmld7qt/@Element",
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.8159194Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.581461Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"PartitionKey": "somPartition",
"RowKey": "16",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.8159194Z",
+ "Timestamp": "2020-07-17T22:08:56.581461Z",
"SomeStringProperty": "This is table entity number 16",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:17:00Z",
@@ -1281,17 +1298,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-41f093a4fd116546b611b9dafbf4c5e4-6526144b16876649-00",
+ "traceparent": "00-946a3da14e4cd14590b8de9cc3e267b7-2c6429dacd126547-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2bba010578c163eb3c9ce9ba9414c02a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:26 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:56 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1317,8 +1335,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:25 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.8609568Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:55 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.6545213Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1327,19 +1345,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "2bba010578c163eb3c9ce9ba9414c02a",
- "x-ms-request-id": "20750ff6-b002-001b-3c21-5aea7a000000",
+ "x-ms-request-id": "9b331279-4002-002c-1586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable6nmld7qt/@Element",
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.8609568Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.6545213Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"PartitionKey": "somPartition",
"RowKey": "17",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.8609568Z",
+ "Timestamp": "2020-07-17T22:08:56.6545213Z",
"SomeStringProperty": "This is table entity number 17",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:18:00Z",
@@ -1358,17 +1376,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-5bd5076601f65e43b8ec9e086a9fb217-596022a934695842-00",
+ "traceparent": "00-24e3fd96fb181243ba530ab9938317a5-d1c9d15c14fca243-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8917ff7be5f0305cbceb2a7c7aec3343",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:26 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:56 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1394,8 +1413,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:25 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.9029917Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:55 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.7005596Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1404,19 +1423,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "8917ff7be5f0305cbceb2a7c7aec3343",
- "x-ms-request-id": "20751000-b002-001b-4421-5aea7a000000",
+ "x-ms-request-id": "9b331284-4002-002c-2086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable6nmld7qt/@Element",
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.9029917Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.7005596Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"PartitionKey": "somPartition",
"RowKey": "18",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.9029917Z",
+ "Timestamp": "2020-07-17T22:08:56.7005596Z",
"SomeStringProperty": "This is table entity number 18",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:19:00Z",
@@ -1435,17 +1454,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a8bcef4ba21c1442a7d6a53f1a98401f-9f85027d6153f743-00",
+ "traceparent": "00-a54bf9668971fe408f45def6212bdf0d-a4315a7d32ee8747-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3fc3bf1d2738ec12253e2f7d5cc8a9e5",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:26 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:56 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1471,8 +1491,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:25 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.9460283Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:55 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.7475983Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1481,19 +1501,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "3fc3bf1d2738ec12253e2f7d5cc8a9e5",
- "x-ms-request-id": "20751004-b002-001b-4821-5aea7a000000",
+ "x-ms-request-id": "9b33128b-4002-002c-2786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable6nmld7qt/@Element",
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.9460283Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.7475983Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"PartitionKey": "somPartition",
"RowKey": "19",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.9460283Z",
+ "Timestamp": "2020-07-17T22:08:56.7475983Z",
"SomeStringProperty": "This is table entity number 19",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:20:00Z",
@@ -1512,17 +1532,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-85884e81fd04ea47a64ca0055fac36db-a6925c5fddb53047-00",
+ "traceparent": "00-300d0ba60a387a4aab69045d022230c5-ad224182bbc59c46-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "fd42e09e77af2037a4896fd54d6ee950",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:26 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:56 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1548,8 +1569,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:25 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.9900635Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:55 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.7946374Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1558,19 +1579,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "fd42e09e77af2037a4896fd54d6ee950",
- "x-ms-request-id": "2075100c-b002-001b-4f21-5aea7a000000",
+ "x-ms-request-id": "9b331290-4002-002c-2c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable6nmld7qt/@Element",
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.9900635Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.7946374Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"PartitionKey": "somPartition",
"RowKey": "20",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.9900635Z",
+ "Timestamp": "2020-07-17T22:08:56.7946374Z",
"SomeStringProperty": "This is table entity number 20",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:21:00Z",
@@ -1589,14 +1610,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d49da668805053f2ec2a64b2b5dfd4f4",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:26 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:56 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1605,7 +1627,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:25 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:56 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1615,7 +1637,7 @@
"x-ms-client-request-id": "d49da668805053f2ec2a64b2b5dfd4f4",
"x-ms-continuation-NextPartitionKey": "1!16!c29tUGFydGl0aW9u",
"x-ms-continuation-NextRowKey": "1!4!MDY-",
- "x-ms-request-id": "20751019-b002-001b-5c21-5aea7a000000",
+ "x-ms-request-id": "9b331295-4002-002c-3186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1624,12 +1646,12 @@
{
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.1373537Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.877876Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.1373537Z",
+ "Timestamp": "2020-07-17T22:08:55.877876Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:02:00Z",
@@ -1646,12 +1668,12 @@
{
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.1833922Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.9219114Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"PartitionKey": "somPartition",
"RowKey": "02",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.1833922Z",
+ "Timestamp": "2020-07-17T22:08:55.9219114Z",
"SomeStringProperty": "This is table entity number 02",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:03:00Z",
@@ -1668,12 +1690,12 @@
{
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.2284307Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.9679505Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"PartitionKey": "somPartition",
"RowKey": "03",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.2284307Z",
+ "Timestamp": "2020-07-17T22:08:55.9679505Z",
"SomeStringProperty": "This is table entity number 03",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:04:00Z",
@@ -1690,12 +1712,12 @@
{
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.2724671Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.0109867Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"PartitionKey": "somPartition",
"RowKey": "04",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.2724671Z",
+ "Timestamp": "2020-07-17T22:08:56.0109867Z",
"SomeStringProperty": "This is table entity number 04",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:05:00Z",
@@ -1712,12 +1734,12 @@
{
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.3205077Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.05202Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"PartitionKey": "somPartition",
"RowKey": "05",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.3205077Z",
+ "Timestamp": "2020-07-17T22:08:56.05202Z",
"SomeStringProperty": "This is table entity number 05",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:06:00Z",
@@ -1738,14 +1760,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextPartitionKey=1%2116%21c29tUGFydGl0aW9u\u0026NextRowKey=1%214%21MDY-",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "99de454135a9a59388a39baeb83c9eb7",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:26 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:56 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1754,7 +1777,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:25 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:56 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1764,7 +1787,7 @@
"x-ms-client-request-id": "99de454135a9a59388a39baeb83c9eb7",
"x-ms-continuation-NextPartitionKey": "1!16!c29tUGFydGl0aW9u",
"x-ms-continuation-NextRowKey": "1!4!MTE-",
- "x-ms-request-id": "20751035-b002-001b-7121-5aea7a000000",
+ "x-ms-request-id": "9b3312a9-4002-002c-4586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1773,12 +1796,12 @@
{
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.3665453Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.1100682Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"PartitionKey": "somPartition",
"RowKey": "06",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.3665453Z",
+ "Timestamp": "2020-07-17T22:08:56.1100682Z",
"SomeStringProperty": "This is table entity number 06",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:07:00Z",
@@ -1795,12 +1818,12 @@
{
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.4135847Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.1551061Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"PartitionKey": "somPartition",
"RowKey": "07",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.4135847Z",
+ "Timestamp": "2020-07-17T22:08:56.1551061Z",
"SomeStringProperty": "This is table entity number 07",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:08:00Z",
@@ -1817,12 +1840,12 @@
{
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.4596232Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.2081493Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"PartitionKey": "somPartition",
"RowKey": "08",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.4596232Z",
+ "Timestamp": "2020-07-17T22:08:56.2081493Z",
"SomeStringProperty": "This is table entity number 08",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:09:00Z",
@@ -1839,12 +1862,12 @@
{
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.5056619Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.2601935Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"PartitionKey": "somPartition",
"RowKey": "09",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.5056619Z",
+ "Timestamp": "2020-07-17T22:08:56.2601935Z",
"SomeStringProperty": "This is table entity number 09",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:10:00Z",
@@ -1861,12 +1884,12 @@
{
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.5486976Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.3052313Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"PartitionKey": "somPartition",
"RowKey": "10",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.5486976Z",
+ "Timestamp": "2020-07-17T22:08:56.3052313Z",
"SomeStringProperty": "This is table entity number 10",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:11:00Z",
@@ -1887,14 +1910,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextPartitionKey=1%2116%21c29tUGFydGl0aW9u\u0026NextRowKey=1%214%21MTE-",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b614df55d42a1d94eeef108513846bc5",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:26 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:57 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1903,7 +1927,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:25 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:56 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1913,7 +1937,7 @@
"x-ms-client-request-id": "b614df55d42a1d94eeef108513846bc5",
"x-ms-continuation-NextPartitionKey": "1!16!c29tUGFydGl0aW9u",
"x-ms-continuation-NextRowKey": "1!4!MTY-",
- "x-ms-request-id": "2075104b-b002-001b-0521-5aea7a000000",
+ "x-ms-request-id": "9b3312b5-4002-002c-4e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1922,12 +1946,12 @@
{
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.5917333Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.3482671Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"PartitionKey": "somPartition",
"RowKey": "11",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.5917333Z",
+ "Timestamp": "2020-07-17T22:08:56.3482671Z",
"SomeStringProperty": "This is table entity number 11",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:12:00Z",
@@ -1944,12 +1968,12 @@
{
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.6367707Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.3913029Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"PartitionKey": "somPartition",
"RowKey": "12",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.6367707Z",
+ "Timestamp": "2020-07-17T22:08:56.3913029Z",
"SomeStringProperty": "This is table entity number 12",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:13:00Z",
@@ -1966,12 +1990,12 @@
{
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.6818081Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.4373407Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"PartitionKey": "somPartition",
"RowKey": "13",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.6818081Z",
+ "Timestamp": "2020-07-17T22:08:56.4373407Z",
"SomeStringProperty": "This is table entity number 13",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:14:00Z",
@@ -1988,12 +2012,12 @@
{
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.723843Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.4863828Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"PartitionKey": "somPartition",
"RowKey": "14",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.723843Z",
+ "Timestamp": "2020-07-17T22:08:56.4863828Z",
"SomeStringProperty": "This is table entity number 14",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:15:00Z",
@@ -2010,12 +2034,12 @@
{
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.7658787Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.5354223Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"PartitionKey": "somPartition",
"RowKey": "15",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.7658787Z",
+ "Timestamp": "2020-07-17T22:08:56.5354223Z",
"SomeStringProperty": "This is table entity number 15",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:16:00Z",
@@ -2036,14 +2060,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextPartitionKey=1%2116%21c29tUGFydGl0aW9u\u0026NextRowKey=1%214%21MTY-",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "08937ab54f8f33a712f84cade5439aaf",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:26 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:57 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2052,7 +2077,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:26 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:56 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -2060,7 +2085,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "08937ab54f8f33a712f84cade5439aaf",
- "x-ms-request-id": "2075105e-b002-001b-1821-5aea7a000000",
+ "x-ms-request-id": "9b3312c0-4002-002c-5986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -2069,12 +2094,12 @@
{
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.8159194Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.581461Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"PartitionKey": "somPartition",
"RowKey": "16",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.8159194Z",
+ "Timestamp": "2020-07-17T22:08:56.581461Z",
"SomeStringProperty": "This is table entity number 16",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:17:00Z",
@@ -2091,12 +2116,12 @@
{
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.8609568Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.6545213Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"PartitionKey": "somPartition",
"RowKey": "17",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.8609568Z",
+ "Timestamp": "2020-07-17T22:08:56.6545213Z",
"SomeStringProperty": "This is table entity number 17",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:18:00Z",
@@ -2113,12 +2138,12 @@
{
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.9029917Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.7005596Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"PartitionKey": "somPartition",
"RowKey": "18",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.9029917Z",
+ "Timestamp": "2020-07-17T22:08:56.7005596Z",
"SomeStringProperty": "This is table entity number 18",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:19:00Z",
@@ -2135,12 +2160,12 @@
{
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.9460283Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.7475983Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"PartitionKey": "somPartition",
"RowKey": "19",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.9460283Z",
+ "Timestamp": "2020-07-17T22:08:56.7475983Z",
"SomeStringProperty": "This is table entity number 19",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:20:00Z",
@@ -2157,12 +2182,12 @@
{
"odata.type": "chrissscratch.testtable6nmld7qt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A25.9900635Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A56.7946374Z\u0027\u0022",
"odata.editLink": "testtable6nmld7qt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"PartitionKey": "somPartition",
"RowKey": "20",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:25.9900635Z",
+ "Timestamp": "2020-07-17T22:08:56.7946374Z",
"SomeStringProperty": "This is table entity number 20",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:21:00Z",
@@ -2185,13 +2210,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-fa947b609106ce49a77db76d843208dc-5c79b8e0367dfc44-00",
+ "traceparent": "00-ff17e893f73e444195c9bc6358570e85-10052444637d3e4b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d55dad8c1dca6dc9b1c0abb9240e9103",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:26 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:57 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2200,14 +2225,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:26 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:56 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d55dad8c1dca6dc9b1c0abb9240e9103",
- "x-ms-request-id": "20751071-b002-001b-2a21-5aea7a000000",
+ "x-ms-request-id": "9b3312ce-4002-002c-6386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedEntitiesCanBeQueriedWithAndWithoutPagination(5)Async.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedEntitiesCanBeQueriedWithAndWithoutPagination(5)Async.json
index f4ddd2531c5d..a3e50e12cc02 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedEntitiesCanBeQueriedWithAndWithoutPagination(5)Async.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedEntitiesCanBeQueriedWithAndWithoutPagination(5)Async.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-0c1511096bf6704dbb248c59463fd86e-f99c09b2c70fa747-00",
+ "traceparent": "00-d0b3a2b4e0ef1b47aa31c6a78b9b8ee4-bc035a24fa37b54d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "fa85c22b49e0ca7370c1ee90507a57c2",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:49 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:08 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:48 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:07 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable3j31o29n\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "fa85c22b49e0ca7370c1ee90507a57c2",
- "x-ms-request-id": "20752779-b002-001b-0221-5aea7a000000",
+ "x-ms-request-id": "9b331b83-4002-002c-7a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable3j31o29n?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-7e111fdb7566cb46815ebd6bccd3e267-ba069b69bf88a147-00",
+ "traceparent": "00-b9f3e0a288a500438eab6f19611fee3b-58528e7f18b2c94d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1dfff7f722a6a78fb169ae3ca6ad2b42",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:49 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:08 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -85,8 +87,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:48 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.1412834Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:07 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.1180638Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -95,19 +97,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "1dfff7f722a6a78fb169ae3ca6ad2b42",
- "x-ms-request-id": "20752787-b002-001b-0f21-5aea7a000000",
+ "x-ms-request-id": "9b331b9c-4002-002c-0f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3j31o29n/@Element",
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.1412834Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.1180638Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:49.1412834Z",
+ "Timestamp": "2020-07-17T22:09:08.1180638Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:02:00Z",
@@ -126,17 +128,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable3j31o29n?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-fabdb2d713a5534eba0e429bcc0dea15-1ea34104880d3a49-00",
+ "traceparent": "00-133c794f57c9434b92889b8ddf559a76-d205d03ea114c040-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "efacebad22af8647ef75c15ef8da312d",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:49 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:08 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -162,8 +165,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:48 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.1813154Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:07 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.1731095Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -172,19 +175,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "efacebad22af8647ef75c15ef8da312d",
- "x-ms-request-id": "20752790-b002-001b-1821-5aea7a000000",
+ "x-ms-request-id": "9b331bad-4002-002c-1f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3j31o29n/@Element",
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.1813154Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.1731095Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"PartitionKey": "somPartition",
"RowKey": "02",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:49.1813154Z",
+ "Timestamp": "2020-07-17T22:09:08.1731095Z",
"SomeStringProperty": "This is table entity number 02",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:03:00Z",
@@ -203,17 +206,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable3j31o29n?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e2febf23cba0554d93afd1b62a051d29-ae57a5f0c6809f42-00",
+ "traceparent": "00-79046a79953c1540b4505f9e7320fbd1-9fe4261c8d46574c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d8d516251eba082c32dd48779b3624c2",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:49 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:08 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -239,8 +243,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:48 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.2303556Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:07 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.2161453Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -249,19 +253,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d8d516251eba082c32dd48779b3624c2",
- "x-ms-request-id": "2075279d-b002-001b-2521-5aea7a000000",
+ "x-ms-request-id": "9b331bc3-4002-002c-3586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3j31o29n/@Element",
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.2303556Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.2161453Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"PartitionKey": "somPartition",
"RowKey": "03",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:49.2303556Z",
+ "Timestamp": "2020-07-17T22:09:08.2161453Z",
"SomeStringProperty": "This is table entity number 03",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:04:00Z",
@@ -280,17 +284,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable3j31o29n?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-416ca51049e66a4e80beca62364976f1-8837ed003fe4a540-00",
+ "traceparent": "00-843389cf9aaac6429ac49744e3873277-db165c566471bb4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "64e3ab9567ced412af782e316130aed7",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:49 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:08 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -316,8 +321,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:49 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.2773951Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:07 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.2571799Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -326,19 +331,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "64e3ab9567ced412af782e316130aed7",
- "x-ms-request-id": "207527ab-b002-001b-3321-5aea7a000000",
+ "x-ms-request-id": "9b331bd0-4002-002c-4286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3j31o29n/@Element",
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.2773951Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.2571799Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"PartitionKey": "somPartition",
"RowKey": "04",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:49.2773951Z",
+ "Timestamp": "2020-07-17T22:09:08.2571799Z",
"SomeStringProperty": "This is table entity number 04",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:05:00Z",
@@ -357,17 +362,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable3j31o29n?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-dee73f8cbc18fa4eb003aee7dc090f9b-c4dc9838908a7049-00",
+ "traceparent": "00-00b5bdd3d5e16b4fb4b095a5858da422-cb87de84471f4446-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9016803753d88e87bfa3bcd2dad0ebb8",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:49 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:08 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -393,8 +399,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:49 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.3224325Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:07 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.3022177Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -403,19 +409,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "9016803753d88e87bfa3bcd2dad0ebb8",
- "x-ms-request-id": "207527c1-b002-001b-4821-5aea7a000000",
+ "x-ms-request-id": "9b331bdf-4002-002c-4f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3j31o29n/@Element",
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.3224325Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.3022177Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"PartitionKey": "somPartition",
"RowKey": "05",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:49.3224325Z",
+ "Timestamp": "2020-07-17T22:09:08.3022177Z",
"SomeStringProperty": "This is table entity number 05",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:06:00Z",
@@ -434,17 +440,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable3j31o29n?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-58ac2b9c42d05f4690197abc005662ad-6b161d328b9f5b47-00",
+ "traceparent": "00-47e951efea180942bd7f99b1a93764a9-ed77cb90ffaf004b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4dc8fe51ccf6be5f03012841f0fba702",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:49 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:08 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -470,8 +477,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:49 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.3664703Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:07 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.3492564Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -480,19 +487,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "4dc8fe51ccf6be5f03012841f0fba702",
- "x-ms-request-id": "207527d2-b002-001b-5821-5aea7a000000",
+ "x-ms-request-id": "9b331bef-4002-002c-5f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3j31o29n/@Element",
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.3664703Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.3492564Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"PartitionKey": "somPartition",
"RowKey": "06",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:49.3664703Z",
+ "Timestamp": "2020-07-17T22:09:08.3492564Z",
"SomeStringProperty": "This is table entity number 06",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:07:00Z",
@@ -511,17 +518,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable3j31o29n?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-dcfb2049902cc04c90a9a4f16fc0ee3e-9d289aa16d9c8b45-00",
+ "traceparent": "00-4d7118c1dddff64cabf368adcf9319d2-881786f64ca9494d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1a3f712e932042ea2454a52baa40f9df",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:49 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:08 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -547,8 +555,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:49 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.4475372Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:07 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.3942943Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -557,19 +565,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "1a3f712e932042ea2454a52baa40f9df",
- "x-ms-request-id": "207527e7-b002-001b-6c21-5aea7a000000",
+ "x-ms-request-id": "9b331c00-4002-002c-7086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3j31o29n/@Element",
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.4475372Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.3942943Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"PartitionKey": "somPartition",
"RowKey": "07",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:49.4475372Z",
+ "Timestamp": "2020-07-17T22:09:08.3942943Z",
"SomeStringProperty": "This is table entity number 07",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:08:00Z",
@@ -588,17 +596,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable3j31o29n?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-448ffdcc6f48e64093b24b2b6e39c215-ba061b41ccf1b94a-00",
+ "traceparent": "00-876c5727b63e034285395675b01219bf-595d8175817f3046-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "62df758d61676be021588cd62a459ec4",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:49 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:08 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -624,8 +633,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:49 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.4915733Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:07 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.4473384Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -634,19 +643,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "62df758d61676be021588cd62a459ec4",
- "x-ms-request-id": "207527f4-b002-001b-7821-5aea7a000000",
+ "x-ms-request-id": "9b331c10-4002-002c-8086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3j31o29n/@Element",
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.4915733Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.4473384Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"PartitionKey": "somPartition",
"RowKey": "08",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:49.4915733Z",
+ "Timestamp": "2020-07-17T22:09:08.4473384Z",
"SomeStringProperty": "This is table entity number 08",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:09:00Z",
@@ -665,17 +674,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable3j31o29n?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c818af59fc07b642a1036a17433a14b5-c95cd7a878b37348-00",
+ "traceparent": "00-75c78b230cefff40942ca2bfb266fc9a-c453d4e54eb0924e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "69a3bafcd191bd98148628a2273313c3",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:49 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:08 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -701,8 +711,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:49 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.5346091Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:07 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.5013825Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -711,19 +721,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "69a3bafcd191bd98148628a2273313c3",
- "x-ms-request-id": "207527ff-b002-001b-0321-5aea7a000000",
+ "x-ms-request-id": "9b331c25-4002-002c-1486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3j31o29n/@Element",
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.5346091Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.5013825Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"PartitionKey": "somPartition",
"RowKey": "09",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:49.5346091Z",
+ "Timestamp": "2020-07-17T22:09:08.5013825Z",
"SomeStringProperty": "This is table entity number 09",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:10:00Z",
@@ -742,17 +752,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable3j31o29n?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-03ec6047e3add54e851c05fdb6829b66-c8f97ab9d1b6084c-00",
+ "traceparent": "00-00596a1063740549950f58c2df903e1f-b734021541b6c849-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7ab44907441bcd9a90d3f8c8071318de",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:49 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:08 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -778,8 +789,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:49 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.5886539Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:07 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.5484216Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -788,19 +799,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "7ab44907441bcd9a90d3f8c8071318de",
- "x-ms-request-id": "2075280e-b002-001b-1221-5aea7a000000",
+ "x-ms-request-id": "9b331c32-4002-002c-2186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3j31o29n/@Element",
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.5886539Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.5484216Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"PartitionKey": "somPartition",
"RowKey": "10",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:49.5886539Z",
+ "Timestamp": "2020-07-17T22:09:08.5484216Z",
"SomeStringProperty": "This is table entity number 10",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:11:00Z",
@@ -819,17 +830,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable3j31o29n?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-52e901f7a30a404da33d388988766e20-b1f72d0fc37f3940-00",
+ "traceparent": "00-d4698c0eb3955a4292bf5ec7a02bc805-beb103bb78b1ed45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f02fe1b5909cbc4ddd224de1383e43ee",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:49 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:08 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -855,8 +867,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:49 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.6326905Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:07 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.590457Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -865,19 +877,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f02fe1b5909cbc4ddd224de1383e43ee",
- "x-ms-request-id": "2075281c-b002-001b-2021-5aea7a000000",
+ "x-ms-request-id": "9b331c3d-4002-002c-2b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3j31o29n/@Element",
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.6326905Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.590457Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"PartitionKey": "somPartition",
"RowKey": "11",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:49.6326905Z",
+ "Timestamp": "2020-07-17T22:09:08.590457Z",
"SomeStringProperty": "This is table entity number 11",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:12:00Z",
@@ -896,17 +908,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable3j31o29n?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d593cb139fbc0044947730cfeb8c6a25-4d7646d3de2f3943-00",
+ "traceparent": "00-4d1be74b56c8084a8ac20b06ac528e78-4cf0e1a5cb530e45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e1cec9442491b7a81fd6d8bdd8cfb601",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:49 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:08 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -932,8 +945,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:49 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.6787287Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:07 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.6364952Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -942,19 +955,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "e1cec9442491b7a81fd6d8bdd8cfb601",
- "x-ms-request-id": "20752827-b002-001b-2b21-5aea7a000000",
+ "x-ms-request-id": "9b331c46-4002-002c-3486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3j31o29n/@Element",
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.6787287Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.6364952Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"PartitionKey": "somPartition",
"RowKey": "12",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:49.6787287Z",
+ "Timestamp": "2020-07-17T22:09:08.6364952Z",
"SomeStringProperty": "This is table entity number 12",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:13:00Z",
@@ -973,17 +986,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable3j31o29n?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-94d8e0a8d56b0545b5f5a5f5588d3c7b-1ee42c298c98e94f-00",
+ "traceparent": "00-4edabf73f3a5d64f92894473c751e8df-de726d44c9ebf14c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "46ec4a6e23047726fbf79cf9f6b99451",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:08 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1009,8 +1023,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:49 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.7247665Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:07 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.6865368Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1019,19 +1033,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "46ec4a6e23047726fbf79cf9f6b99451",
- "x-ms-request-id": "2075282f-b002-001b-3321-5aea7a000000",
+ "x-ms-request-id": "9b331c50-4002-002c-3d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3j31o29n/@Element",
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.7247665Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.6865368Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"PartitionKey": "somPartition",
"RowKey": "13",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:49.7247665Z",
+ "Timestamp": "2020-07-17T22:09:08.6865368Z",
"SomeStringProperty": "This is table entity number 13",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:14:00Z",
@@ -1050,17 +1064,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable3j31o29n?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-5805f147621a08498af3460b118c2d99-c1bc06a261b9c249-00",
+ "traceparent": "00-17c43021c6982c4fb7562b5511cfc437-3d10473782bf0347-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3d830a8f3644914c3877d0c6b790e30d",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:08 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1086,8 +1101,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:49 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.7698043Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:07 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.7325747Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1096,19 +1111,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "3d830a8f3644914c3877d0c6b790e30d",
- "x-ms-request-id": "2075283a-b002-001b-3e21-5aea7a000000",
+ "x-ms-request-id": "9b331c56-4002-002c-4386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3j31o29n/@Element",
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.7698043Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.7325747Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"PartitionKey": "somPartition",
"RowKey": "14",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:49.7698043Z",
+ "Timestamp": "2020-07-17T22:09:08.7325747Z",
"SomeStringProperty": "This is table entity number 14",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:15:00Z",
@@ -1127,17 +1142,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable3j31o29n?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ff88e276cbc83945b541aba33903c534-e9e1dec70debe740-00",
+ "traceparent": "00-705ffeded8169f46a559d2699f8e20c0-87e01530dbe9e741-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ee734c6bfd5121e9a357e69a87afc066",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:08 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1163,8 +1179,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:49 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.8138409Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:07 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.777613Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1173,19 +1189,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ee734c6bfd5121e9a357e69a87afc066",
- "x-ms-request-id": "20752846-b002-001b-4a21-5aea7a000000",
+ "x-ms-request-id": "9b331c5d-4002-002c-4986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3j31o29n/@Element",
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.8138409Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.777613Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"PartitionKey": "somPartition",
"RowKey": "15",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:49.8138409Z",
+ "Timestamp": "2020-07-17T22:09:08.777613Z",
"SomeStringProperty": "This is table entity number 15",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:16:00Z",
@@ -1204,17 +1220,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable3j31o29n?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-4e2eb270ceacc14d87fd9da3925bb1b6-59b23fc5e7990645-00",
+ "traceparent": "00-aa7a6ae54487fd40945dbddeb575710f-06392ab0da0cee47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ce2d8741784c37bcfe5b0d8c525fbf6b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:08 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1240,8 +1257,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:49 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.8568766Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:07 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.82265Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1250,19 +1267,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ce2d8741784c37bcfe5b0d8c525fbf6b",
- "x-ms-request-id": "20752854-b002-001b-5821-5aea7a000000",
+ "x-ms-request-id": "9b331c68-4002-002c-5386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3j31o29n/@Element",
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.8568766Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.82265Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"PartitionKey": "somPartition",
"RowKey": "16",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:49.8568766Z",
+ "Timestamp": "2020-07-17T22:09:08.82265Z",
"SomeStringProperty": "This is table entity number 16",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:17:00Z",
@@ -1281,17 +1298,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable3j31o29n?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-b3ff999e8ff4fe4093e8d3b9d9b51e4b-1bbede8d70313548-00",
+ "traceparent": "00-c2d2cdbf76153b4aa6b7c3f53d25daa0-2c2e86f7cdfe5f44-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "aa8d8f13a645920020619aec50b20a89",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:08 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1317,8 +1335,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:49 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.898911Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:08 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.8676866Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1327,19 +1345,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "aa8d8f13a645920020619aec50b20a89",
- "x-ms-request-id": "20752860-b002-001b-6321-5aea7a000000",
+ "x-ms-request-id": "9b331c70-4002-002c-5b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3j31o29n/@Element",
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.898911Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.8676866Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"PartitionKey": "somPartition",
"RowKey": "17",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:49.898911Z",
+ "Timestamp": "2020-07-17T22:09:08.8676866Z",
"SomeStringProperty": "This is table entity number 17",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:18:00Z",
@@ -1358,17 +1376,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable3j31o29n?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-385af54d6423ab4981c8f464f7d72d74-bfeed9aa710bd44a-00",
+ "traceparent": "00-787a4270fb6454489dd104c18e790a42-e8a9340f77cf5e4c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "30856ab61462f2c18f3ceff6ef5ccf43",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:08 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1394,8 +1413,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:49 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.942948Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:08 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.9207311Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1404,19 +1423,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "30856ab61462f2c18f3ceff6ef5ccf43",
- "x-ms-request-id": "2075286e-b002-001b-7121-5aea7a000000",
+ "x-ms-request-id": "9b331c7a-4002-002c-6586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3j31o29n/@Element",
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.942948Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.9207311Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"PartitionKey": "somPartition",
"RowKey": "18",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:49.942948Z",
+ "Timestamp": "2020-07-17T22:09:08.9207311Z",
"SomeStringProperty": "This is table entity number 18",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:19:00Z",
@@ -1435,17 +1454,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable3j31o29n?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-700430696f755e419c8ed738b8c758c3-296b8f70c5a30649-00",
+ "traceparent": "00-8941b37df2666943a16570417e6e9cd8-81043c4cc55fdb4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f8867b9815219a20869baeeadecfe64c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:09 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1471,8 +1491,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:49 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A50.0019971Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:08 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.9667703Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1481,19 +1501,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f8867b9815219a20869baeeadecfe64c",
- "x-ms-request-id": "20752881-b002-001b-0221-5aea7a000000",
+ "x-ms-request-id": "9b331c8a-4002-002c-7586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3j31o29n/@Element",
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A50.0019971Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.9667703Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"PartitionKey": "somPartition",
"RowKey": "19",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:50.0019971Z",
+ "Timestamp": "2020-07-17T22:09:08.9667703Z",
"SomeStringProperty": "This is table entity number 19",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:20:00Z",
@@ -1512,17 +1532,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable3j31o29n?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e5df2981dfc2d5469381c7cfd854e37b-eee2eca26e16a942-00",
+ "traceparent": "00-647d653f3e75c3498b7c40c7caf0c85a-57d46b7353cf2043-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e7d584508ed9fe08ce9a1b09b609a2c3",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:09 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1548,8 +1569,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:49 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A50.0460336Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:08 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A09.010806Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1558,19 +1579,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "e7d584508ed9fe08ce9a1b09b609a2c3",
- "x-ms-request-id": "20752893-b002-001b-1221-5aea7a000000",
+ "x-ms-request-id": "9b331c9a-4002-002c-0586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3j31o29n/@Element",
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A50.0460336Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A09.010806Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"PartitionKey": "somPartition",
"RowKey": "20",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:50.0460336Z",
+ "Timestamp": "2020-07-17T22:09:09.010806Z",
"SomeStringProperty": "This is table entity number 20",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:21:00Z",
@@ -1589,14 +1610,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable3j31o29n()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d5545692122ba1674aeaa9c766d613bf",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:09 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1605,7 +1627,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:49 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:08 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1615,7 +1637,7 @@
"x-ms-client-request-id": "d5545692122ba1674aeaa9c766d613bf",
"x-ms-continuation-NextPartitionKey": "1!16!c29tUGFydGl0aW9u",
"x-ms-continuation-NextRowKey": "1!4!MDY-",
- "x-ms-request-id": "207528aa-b002-001b-2521-5aea7a000000",
+ "x-ms-request-id": "9b331ca3-4002-002c-0e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1624,12 +1646,12 @@
{
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.1412834Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.1180638Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:49.1412834Z",
+ "Timestamp": "2020-07-17T22:09:08.1180638Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:02:00Z",
@@ -1646,12 +1668,12 @@
{
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.1813154Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.1731095Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"PartitionKey": "somPartition",
"RowKey": "02",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:49.1813154Z",
+ "Timestamp": "2020-07-17T22:09:08.1731095Z",
"SomeStringProperty": "This is table entity number 02",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:03:00Z",
@@ -1668,12 +1690,12 @@
{
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.2303556Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.2161453Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"PartitionKey": "somPartition",
"RowKey": "03",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:49.2303556Z",
+ "Timestamp": "2020-07-17T22:09:08.2161453Z",
"SomeStringProperty": "This is table entity number 03",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:04:00Z",
@@ -1690,12 +1712,12 @@
{
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.2773951Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.2571799Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"PartitionKey": "somPartition",
"RowKey": "04",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:49.2773951Z",
+ "Timestamp": "2020-07-17T22:09:08.2571799Z",
"SomeStringProperty": "This is table entity number 04",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:05:00Z",
@@ -1712,12 +1734,12 @@
{
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.3224325Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.3022177Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"PartitionKey": "somPartition",
"RowKey": "05",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:49.3224325Z",
+ "Timestamp": "2020-07-17T22:09:08.3022177Z",
"SomeStringProperty": "This is table entity number 05",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:06:00Z",
@@ -1738,14 +1760,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable3j31o29n()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextPartitionKey=1%2116%21c29tUGFydGl0aW9u\u0026NextRowKey=1%214%21MDY-",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6aa5a355e786096972872987fa16e47c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:09 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1754,7 +1777,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:49 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:08 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1764,7 +1787,7 @@
"x-ms-client-request-id": "6aa5a355e786096972872987fa16e47c",
"x-ms-continuation-NextPartitionKey": "1!16!c29tUGFydGl0aW9u",
"x-ms-continuation-NextRowKey": "1!4!MTE-",
- "x-ms-request-id": "207528c8-b002-001b-3f21-5aea7a000000",
+ "x-ms-request-id": "9b331cb4-4002-002c-1f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1773,12 +1796,12 @@
{
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.3664703Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.3492564Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"PartitionKey": "somPartition",
"RowKey": "06",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:49.3664703Z",
+ "Timestamp": "2020-07-17T22:09:08.3492564Z",
"SomeStringProperty": "This is table entity number 06",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:07:00Z",
@@ -1795,12 +1818,12 @@
{
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.4475372Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.3942943Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"PartitionKey": "somPartition",
"RowKey": "07",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:49.4475372Z",
+ "Timestamp": "2020-07-17T22:09:08.3942943Z",
"SomeStringProperty": "This is table entity number 07",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:08:00Z",
@@ -1817,12 +1840,12 @@
{
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.4915733Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.4473384Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"PartitionKey": "somPartition",
"RowKey": "08",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:49.4915733Z",
+ "Timestamp": "2020-07-17T22:09:08.4473384Z",
"SomeStringProperty": "This is table entity number 08",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:09:00Z",
@@ -1839,12 +1862,12 @@
{
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.5346091Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.5013825Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"PartitionKey": "somPartition",
"RowKey": "09",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:49.5346091Z",
+ "Timestamp": "2020-07-17T22:09:08.5013825Z",
"SomeStringProperty": "This is table entity number 09",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:10:00Z",
@@ -1861,12 +1884,12 @@
{
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.5886539Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.5484216Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"PartitionKey": "somPartition",
"RowKey": "10",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:49.5886539Z",
+ "Timestamp": "2020-07-17T22:09:08.5484216Z",
"SomeStringProperty": "This is table entity number 10",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:11:00Z",
@@ -1887,14 +1910,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable3j31o29n()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextPartitionKey=1%2116%21c29tUGFydGl0aW9u\u0026NextRowKey=1%214%21MTE-",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8858eaf8117a3e201d349defe54098f7",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:09 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1903,7 +1927,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:50 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:08 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1913,7 +1937,7 @@
"x-ms-client-request-id": "8858eaf8117a3e201d349defe54098f7",
"x-ms-continuation-NextPartitionKey": "1!16!c29tUGFydGl0aW9u",
"x-ms-continuation-NextRowKey": "1!4!MTY-",
- "x-ms-request-id": "207528db-b002-001b-5121-5aea7a000000",
+ "x-ms-request-id": "9b331cc9-4002-002c-3486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1922,12 +1946,12 @@
{
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.6326905Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.590457Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"PartitionKey": "somPartition",
"RowKey": "11",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:49.6326905Z",
+ "Timestamp": "2020-07-17T22:09:08.590457Z",
"SomeStringProperty": "This is table entity number 11",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:12:00Z",
@@ -1944,12 +1968,12 @@
{
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.6787287Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.6364952Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"PartitionKey": "somPartition",
"RowKey": "12",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:49.6787287Z",
+ "Timestamp": "2020-07-17T22:09:08.6364952Z",
"SomeStringProperty": "This is table entity number 12",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:13:00Z",
@@ -1966,12 +1990,12 @@
{
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.7247665Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.6865368Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"PartitionKey": "somPartition",
"RowKey": "13",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:49.7247665Z",
+ "Timestamp": "2020-07-17T22:09:08.6865368Z",
"SomeStringProperty": "This is table entity number 13",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:14:00Z",
@@ -1988,12 +2012,12 @@
{
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.7698043Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.7325747Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"PartitionKey": "somPartition",
"RowKey": "14",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:49.7698043Z",
+ "Timestamp": "2020-07-17T22:09:08.7325747Z",
"SomeStringProperty": "This is table entity number 14",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:15:00Z",
@@ -2010,12 +2034,12 @@
{
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.8138409Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.777613Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"PartitionKey": "somPartition",
"RowKey": "15",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:49.8138409Z",
+ "Timestamp": "2020-07-17T22:09:08.777613Z",
"SomeStringProperty": "This is table entity number 15",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:16:00Z",
@@ -2036,14 +2060,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable3j31o29n()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextPartitionKey=1%2116%21c29tUGFydGl0aW9u\u0026NextRowKey=1%214%21MTY-",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "12b45b863764aa3cec4b62a4e8e0a633",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:09 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2052,7 +2077,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:50 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:08 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -2060,7 +2085,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "12b45b863764aa3cec4b62a4e8e0a633",
- "x-ms-request-id": "207528e5-b002-001b-5b21-5aea7a000000",
+ "x-ms-request-id": "9b331cd1-4002-002c-3c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -2069,12 +2094,12 @@
{
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.8568766Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.82265Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"PartitionKey": "somPartition",
"RowKey": "16",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:49.8568766Z",
+ "Timestamp": "2020-07-17T22:09:08.82265Z",
"SomeStringProperty": "This is table entity number 16",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:17:00Z",
@@ -2091,12 +2116,12 @@
{
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.898911Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.8676866Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"PartitionKey": "somPartition",
"RowKey": "17",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:49.898911Z",
+ "Timestamp": "2020-07-17T22:09:08.8676866Z",
"SomeStringProperty": "This is table entity number 17",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:18:00Z",
@@ -2113,12 +2138,12 @@
{
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A49.942948Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.9207311Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"PartitionKey": "somPartition",
"RowKey": "18",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:49.942948Z",
+ "Timestamp": "2020-07-17T22:09:08.9207311Z",
"SomeStringProperty": "This is table entity number 18",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:19:00Z",
@@ -2135,12 +2160,12 @@
{
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A50.0019971Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A08.9667703Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"PartitionKey": "somPartition",
"RowKey": "19",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:50.0019971Z",
+ "Timestamp": "2020-07-17T22:09:08.9667703Z",
"SomeStringProperty": "This is table entity number 19",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:20:00Z",
@@ -2157,12 +2182,12 @@
{
"odata.type": "chrissscratch.testtable3j31o29n",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A50.0460336Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A09.010806Z\u0027\u0022",
"odata.editLink": "testtable3j31o29n(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"PartitionKey": "somPartition",
"RowKey": "20",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:50.0460336Z",
+ "Timestamp": "2020-07-17T22:09:09.010806Z",
"SomeStringProperty": "This is table entity number 20",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:21:00Z",
@@ -2185,13 +2210,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-21f5b54646c70f4fa72e9b38da48d0c1-21648329a934ce46-00",
+ "traceparent": "00-14cba625201429429a5be9a6d170c9eb-89b70833eda0b048-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7ccf2c068b7e434483674d514a7a2431",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:09 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2200,14 +2225,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:50 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:08 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "7ccf2c068b7e434483674d514a7a2431",
- "x-ms-request-id": "207528ff-b002-001b-6e21-5aea7a000000",
+ "x-ms-request-id": "9b331cde-4002-002c-4986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedEntitiesCanBeQueriedWithAndWithoutPagination(null).json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedEntitiesCanBeQueriedWithAndWithoutPagination(null).json
index 35554bc15429..5ea18b9116ca 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedEntitiesCanBeQueriedWithAndWithoutPagination(null).json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedEntitiesCanBeQueriedWithAndWithoutPagination(null).json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8760fccb0b9b9342a27a9402f097e59d-360b58d8ad0c994d-00",
+ "traceparent": "00-72daf8d94ab29e4f91cf8104d80c5808-b3e934e915a52547-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a26f29aa8b4d2f4369f558abd8d17e64",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:24 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:54 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:23 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:53 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablehyay63ko\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "a26f29aa8b4d2f4369f558abd8d17e64",
- "x-ms-request-id": "20750dea-b002-001b-4521-5aea7a000000",
+ "x-ms-request-id": "9b331101-4002-002c-2c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablehyay63ko?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f2c2b4a8ff11d743bc89d55eb38e3daf-1135f77d1c4ae54f-00",
+ "traceparent": "00-fc572fcbb7b85c488744962d8f527ad5-3c2e0d8f4572844b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "63f7dcb5ade0f3fc469f576338416ed7",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:24 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:54 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -85,8 +87,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:23 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.0004035Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:53 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A54.5647835Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -95,19 +97,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "63f7dcb5ade0f3fc469f576338416ed7",
- "x-ms-request-id": "20750df7-b002-001b-5021-5aea7a000000",
+ "x-ms-request-id": "9b33110f-4002-002c-3986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehyay63ko/@Element",
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.0004035Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A54.5647835Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.0004035Z",
+ "Timestamp": "2020-07-17T22:08:54.5647835Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:02:00Z",
@@ -126,17 +128,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablehyay63ko?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-974aa401560fc4469521d306c2548a8e-87f4fe68b4e44c4c-00",
+ "traceparent": "00-da92f7d1d8b7f545824b17551fbc5f6f-9f38f8ae97c4ef46-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "afae416b6135a329cfed52a03541b8d2",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:24 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:54 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -162,8 +165,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:23 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.0494445Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:53 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A54.6098213Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -172,19 +175,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "afae416b6135a329cfed52a03541b8d2",
- "x-ms-request-id": "20750e03-b002-001b-5c21-5aea7a000000",
+ "x-ms-request-id": "9b331118-4002-002c-4286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehyay63ko/@Element",
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.0494445Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A54.6098213Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"PartitionKey": "somPartition",
"RowKey": "02",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.0494445Z",
+ "Timestamp": "2020-07-17T22:08:54.6098213Z",
"SomeStringProperty": "This is table entity number 02",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:03:00Z",
@@ -203,17 +206,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablehyay63ko?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-964d88695f0a7c4a8bff21cfe09c50a1-f9d7d6776c474944-00",
+ "traceparent": "00-2658f10999023b40baf344c2de60ff17-39197e1407a19f4d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "71d427361941fc042c7c5cae33dff628",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:24 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:54 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -239,8 +243,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:23 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.0984851Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:53 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A54.6528584Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -249,19 +253,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "71d427361941fc042c7c5cae33dff628",
- "x-ms-request-id": "20750e14-b002-001b-6b21-5aea7a000000",
+ "x-ms-request-id": "9b33111e-4002-002c-4886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehyay63ko/@Element",
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.0984851Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A54.6528584Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"PartitionKey": "somPartition",
"RowKey": "03",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.0984851Z",
+ "Timestamp": "2020-07-17T22:08:54.6528584Z",
"SomeStringProperty": "This is table entity number 03",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:04:00Z",
@@ -280,17 +284,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablehyay63ko?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-b288548d347d644c9400dff14d56d54b-e89509de369dde47-00",
+ "traceparent": "00-8cf51e1ef725d8428c53856f3937813f-289469e27b160f49-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "963f8187cf22532eb35394f25b5bbd04",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:24 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:54 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -316,8 +321,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:23 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.1395194Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:53 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A54.6968933Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -326,19 +331,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "963f8187cf22532eb35394f25b5bbd04",
- "x-ms-request-id": "20750e2a-b002-001b-7f21-5aea7a000000",
+ "x-ms-request-id": "9b331126-4002-002c-4f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehyay63ko/@Element",
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.1395194Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A54.6968933Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"PartitionKey": "somPartition",
"RowKey": "04",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.1395194Z",
+ "Timestamp": "2020-07-17T22:08:54.6968933Z",
"SomeStringProperty": "This is table entity number 04",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:05:00Z",
@@ -357,17 +362,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablehyay63ko?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-98240eaa8c5f54499caa792b8ce7a2e7-fe7a90f9e98e384b-00",
+ "traceparent": "00-87b2b011355a6b4ea2e918911bace124-156d8fd137dcb14f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "102c85e6fd6c52953db282b9057b70ef",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:24 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:54 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -393,8 +399,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:23 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.1805546Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:53 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A54.7549424Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -403,19 +409,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "102c85e6fd6c52953db282b9057b70ef",
- "x-ms-request-id": "20750e39-b002-001b-0e21-5aea7a000000",
+ "x-ms-request-id": "9b33112c-4002-002c-5586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehyay63ko/@Element",
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.1805546Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A54.7549424Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"PartitionKey": "somPartition",
"RowKey": "05",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.1805546Z",
+ "Timestamp": "2020-07-17T22:08:54.7549424Z",
"SomeStringProperty": "This is table entity number 05",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:06:00Z",
@@ -434,17 +440,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablehyay63ko?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c4e55350f46f224d93840b3ca6c519fe-0fe44e9af2f19741-00",
+ "traceparent": "00-3f37262a6ce1be429c738a668bbc20e3-1eea4003c7742b48-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b3192af7210267aff981beee8411a0d0",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:24 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:54 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -470,8 +477,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:24 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.2315964Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:53 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A54.7969774Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -480,19 +487,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "b3192af7210267aff981beee8411a0d0",
- "x-ms-request-id": "20750e4a-b002-001b-1e21-5aea7a000000",
+ "x-ms-request-id": "9b331132-4002-002c-5b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehyay63ko/@Element",
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.2315964Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A54.7969774Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"PartitionKey": "somPartition",
"RowKey": "06",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.2315964Z",
+ "Timestamp": "2020-07-17T22:08:54.7969774Z",
"SomeStringProperty": "This is table entity number 06",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:07:00Z",
@@ -511,17 +518,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablehyay63ko?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9f3717a253be244689ee9b9659da8c4a-c101d72d0470134a-00",
+ "traceparent": "00-66f6ba85c7997443a4b560a1630d5525-aff816ae5b92234f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "aec757bee5b28abbebec59704d744e37",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:24 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:54 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -547,8 +555,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:24 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.2766345Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:54 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A54.8390119Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -557,19 +565,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "aec757bee5b28abbebec59704d744e37",
- "x-ms-request-id": "20750e59-b002-001b-2b21-5aea7a000000",
+ "x-ms-request-id": "9b331137-4002-002c-6086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehyay63ko/@Element",
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.2766345Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A54.8390119Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"PartitionKey": "somPartition",
"RowKey": "07",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.2766345Z",
+ "Timestamp": "2020-07-17T22:08:54.8390119Z",
"SomeStringProperty": "This is table entity number 07",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:08:00Z",
@@ -588,17 +596,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablehyay63ko?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-00354ccfadfd4c4baa7ba1f4174071e5-5d4104ebe0b1ba46-00",
+ "traceparent": "00-819108c57ef8534d97793b637e9402af-3920d117f728a04a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "31fba4e20a42c502d5c517eb3ea7cd2b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:24 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:54 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -624,8 +633,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:24 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.328678Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:54 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A54.8850519Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -634,19 +643,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "31fba4e20a42c502d5c517eb3ea7cd2b",
- "x-ms-request-id": "20750e6c-b002-001b-3e21-5aea7a000000",
+ "x-ms-request-id": "9b331140-4002-002c-6986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehyay63ko/@Element",
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.328678Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A54.8850519Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"PartitionKey": "somPartition",
"RowKey": "08",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.328678Z",
+ "Timestamp": "2020-07-17T22:08:54.8850519Z",
"SomeStringProperty": "This is table entity number 08",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:09:00Z",
@@ -665,17 +674,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablehyay63ko?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-725b01d1dee0354dae7323d725cbca27-74f262406200da48-00",
+ "traceparent": "00-afe0162efc18b742921ba486d0658041-bde88cde00cacb4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "adfbb111c2b4113d6f8ec715c83f1984",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:24 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:55 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -701,8 +711,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:24 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.3727152Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:54 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A54.9310884Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -711,19 +721,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "adfbb111c2b4113d6f8ec715c83f1984",
- "x-ms-request-id": "20750e72-b002-001b-4421-5aea7a000000",
+ "x-ms-request-id": "9b331147-4002-002c-7086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehyay63ko/@Element",
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.3727152Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A54.9310884Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"PartitionKey": "somPartition",
"RowKey": "09",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.3727152Z",
+ "Timestamp": "2020-07-17T22:08:54.9310884Z",
"SomeStringProperty": "This is table entity number 09",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:10:00Z",
@@ -742,17 +752,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablehyay63ko?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c4082c1bc83d9f458ee038e9a01bca1f-5e8ebadc33821e49-00",
+ "traceparent": "00-d739d86681e29b47916b3dfa1208bf0b-b1338e98d4fa974a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "df0b86326f16b38e5501d9eccecf4b44",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:24 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:55 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -778,8 +789,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:24 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.4147495Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:54 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A54.9761254Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -788,19 +799,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "df0b86326f16b38e5501d9eccecf4b44",
- "x-ms-request-id": "20750e7e-b002-001b-5021-5aea7a000000",
+ "x-ms-request-id": "9b33114b-4002-002c-7486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehyay63ko/@Element",
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.4147495Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A54.9761254Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"PartitionKey": "somPartition",
"RowKey": "10",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.4147495Z",
+ "Timestamp": "2020-07-17T22:08:54.9761254Z",
"SomeStringProperty": "This is table entity number 10",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:11:00Z",
@@ -819,17 +830,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablehyay63ko?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-2e03d4ab1c0417419ab4fa8f1da6afd8-db03e620db3cb442-00",
+ "traceparent": "00-8e9778e5c5981140ac53e7f1503886fa-f5d8f1e3629d464f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9b5e2e1fa079208367e9c2b342edfd95",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:24 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:55 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -855,8 +867,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:24 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.4567851Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:54 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.0221637Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -865,19 +877,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "9b5e2e1fa079208367e9c2b342edfd95",
- "x-ms-request-id": "20750e8b-b002-001b-5d21-5aea7a000000",
+ "x-ms-request-id": "9b33114f-4002-002c-7886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehyay63ko/@Element",
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.4567851Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.0221637Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"PartitionKey": "somPartition",
"RowKey": "11",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.4567851Z",
+ "Timestamp": "2020-07-17T22:08:55.0221637Z",
"SomeStringProperty": "This is table entity number 11",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:12:00Z",
@@ -896,17 +908,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablehyay63ko?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c3cd7b357880454bb4a77267e5eca855-b89788eae9f42b4d-00",
+ "traceparent": "00-3042937bf07827498f621aad782bcb58-0e218623571f0d40-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b8b892abee9ca215234758b2e851429f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:24 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:55 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -932,8 +945,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:24 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.5008232Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:54 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.0631978Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -942,19 +955,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "b8b892abee9ca215234758b2e851429f",
- "x-ms-request-id": "20750e9d-b002-001b-6f21-5aea7a000000",
+ "x-ms-request-id": "9b331159-4002-002c-0186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehyay63ko/@Element",
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.5008232Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.0631978Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"PartitionKey": "somPartition",
"RowKey": "12",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.5008232Z",
+ "Timestamp": "2020-07-17T22:08:55.0631978Z",
"SomeStringProperty": "This is table entity number 12",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:13:00Z",
@@ -973,17 +986,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablehyay63ko?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-10f46a5ff1bc164a8b5b16b388c61b9a-ec0f62e8f1a33b4e-00",
+ "traceparent": "00-96a1548c42e0a5478f0e8e6dabcec77b-72bf567674349745-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "99f683437ee0920b02ea782cacda7167",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:24 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:55 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1009,8 +1023,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:24 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.5448605Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:54 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.1152411Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1019,19 +1033,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "99f683437ee0920b02ea782cacda7167",
- "x-ms-request-id": "20750ea5-b002-001b-7721-5aea7a000000",
+ "x-ms-request-id": "9b331160-4002-002c-0886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehyay63ko/@Element",
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.5448605Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.1152411Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"PartitionKey": "somPartition",
"RowKey": "13",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.5448605Z",
+ "Timestamp": "2020-07-17T22:08:55.1152411Z",
"SomeStringProperty": "This is table entity number 13",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:14:00Z",
@@ -1050,17 +1064,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablehyay63ko?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c8e22c7c4f7cf14484bbd7d6f1084d96-a896d44ee8a57047-00",
+ "traceparent": "00-9bc74e224a9cbb42af2e48be0deb1195-a0d788c07974214b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3c404304931630a819bb783248d13815",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:24 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:55 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1086,8 +1101,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:24 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.5898968Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:54 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.1642823Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1096,19 +1111,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "3c404304931630a819bb783248d13815",
- "x-ms-request-id": "20750eb2-b002-001b-0321-5aea7a000000",
+ "x-ms-request-id": "9b33116c-4002-002c-1386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehyay63ko/@Element",
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.5898968Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.1642823Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"PartitionKey": "somPartition",
"RowKey": "14",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.5898968Z",
+ "Timestamp": "2020-07-17T22:08:55.1642823Z",
"SomeStringProperty": "This is table entity number 14",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:15:00Z",
@@ -1127,17 +1142,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablehyay63ko?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a080d361fe53e84482f932ae3a0f2f2d-86dd3820b3555649-00",
+ "traceparent": "00-cbc3661f5591534f8674c0746d13bb51-e5ff296576952f41-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "bf7022a663f72db58726b5b175e8f548",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:24 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:55 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1163,8 +1179,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:24 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.6309311Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:54 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.2053173Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1173,19 +1189,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "bf7022a663f72db58726b5b175e8f548",
- "x-ms-request-id": "20750eba-b002-001b-0b21-5aea7a000000",
+ "x-ms-request-id": "9b331175-4002-002c-1b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehyay63ko/@Element",
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.6309311Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.2053173Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"PartitionKey": "somPartition",
"RowKey": "15",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.6309311Z",
+ "Timestamp": "2020-07-17T22:08:55.2053173Z",
"SomeStringProperty": "This is table entity number 15",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:16:00Z",
@@ -1204,17 +1220,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablehyay63ko?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-72a6a7cdc969a84dbc55adc34a9238e1-f1cab8ba87f1984a-00",
+ "traceparent": "00-2ae091df966dbe428c0729ca46a971de-8f6cde4482697242-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a5adf0d50610af89dac5802405d84931",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:24 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:55 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1240,8 +1257,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:24 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.6959847Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:54 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.2523551Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1250,19 +1267,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "a5adf0d50610af89dac5802405d84931",
- "x-ms-request-id": "20750ec6-b002-001b-1621-5aea7a000000",
+ "x-ms-request-id": "9b33117b-4002-002c-2186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehyay63ko/@Element",
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.6959847Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.2523551Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"PartitionKey": "somPartition",
"RowKey": "16",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.6959847Z",
+ "Timestamp": "2020-07-17T22:08:55.2523551Z",
"SomeStringProperty": "This is table entity number 16",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:17:00Z",
@@ -1281,17 +1298,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablehyay63ko?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-59f99027da5a12449c397487744a58d2-d7c143233308864f-00",
+ "traceparent": "00-78b80099c962b0438db9c9816eda751d-7f844d9391000745-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8a8562b2b16aa1708e12b5f0def6bb30",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:25 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:55 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1317,8 +1335,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:24 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.7380207Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:54 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.2973926Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1327,19 +1345,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "8a8562b2b16aa1708e12b5f0def6bb30",
- "x-ms-request-id": "20750ed9-b002-001b-2921-5aea7a000000",
+ "x-ms-request-id": "9b331182-4002-002c-2886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehyay63ko/@Element",
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.7380207Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.2973926Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"PartitionKey": "somPartition",
"RowKey": "17",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.7380207Z",
+ "Timestamp": "2020-07-17T22:08:55.2973926Z",
"SomeStringProperty": "This is table entity number 17",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:18:00Z",
@@ -1358,17 +1376,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablehyay63ko?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e7971c9638a25a428b22d30f724d58f4-f3fbdfa4d820c749-00",
+ "traceparent": "00-2dba4ca85ece0b4f86e74b36d50a785e-55b4a883be19834d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "575c30c69224a00599c0e432e29028ae",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:25 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:55 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1394,8 +1413,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:24 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.7800554Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:54 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.3444317Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1404,19 +1423,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "575c30c69224a00599c0e432e29028ae",
- "x-ms-request-id": "20750ee2-b002-001b-3221-5aea7a000000",
+ "x-ms-request-id": "9b33118a-4002-002c-3086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehyay63ko/@Element",
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.7800554Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.3444317Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"PartitionKey": "somPartition",
"RowKey": "18",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.7800554Z",
+ "Timestamp": "2020-07-17T22:08:55.3444317Z",
"SomeStringProperty": "This is table entity number 18",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:19:00Z",
@@ -1435,17 +1454,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablehyay63ko?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-141a1c1d4a627d4fb2e17e487b01f184-ff856dfe095bd74c-00",
+ "traceparent": "00-ae0100927b71284682e1e79c65303fdc-f17bf36fe92a6842-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "12ff84dc6b6224dd800b16fd5199d1e4",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:25 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:55 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1471,8 +1491,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:24 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.8230914Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:54 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.3904721Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1481,19 +1501,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "12ff84dc6b6224dd800b16fd5199d1e4",
- "x-ms-request-id": "20750ef2-b002-001b-4221-5aea7a000000",
+ "x-ms-request-id": "9b33118f-4002-002c-3586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehyay63ko/@Element",
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.8230914Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.3904721Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"PartitionKey": "somPartition",
"RowKey": "19",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.8230914Z",
+ "Timestamp": "2020-07-17T22:08:55.3904721Z",
"SomeStringProperty": "This is table entity number 19",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:20:00Z",
@@ -1512,17 +1532,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablehyay63ko?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a5fef3aa3a51034195efd7c14797b28f-9a278cfd6b943b45-00",
+ "traceparent": "00-0b4599c568831340a69c9d627abd80e4-4b9162a3b3ebd740-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d55e5009f17b1f0c5de5f1a9cc3dbffd",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:25 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:55 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1548,8 +1569,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:24 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.8651265Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:54 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.4355082Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1558,19 +1579,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d55e5009f17b1f0c5de5f1a9cc3dbffd",
- "x-ms-request-id": "20750efc-b002-001b-4b21-5aea7a000000",
+ "x-ms-request-id": "9b331193-4002-002c-3986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehyay63ko/@Element",
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.8651265Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.4355082Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"PartitionKey": "somPartition",
"RowKey": "20",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.8651265Z",
+ "Timestamp": "2020-07-17T22:08:55.4355082Z",
"SomeStringProperty": "This is table entity number 20",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:21:00Z",
@@ -1589,14 +1610,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablehyay63ko()?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5a1306eaa9f65acd5238d7187b074eff",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:25 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:55 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1605,7 +1627,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:24 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:54 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1613,7 +1635,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "5a1306eaa9f65acd5238d7187b074eff",
- "x-ms-request-id": "20750f06-b002-001b-5421-5aea7a000000",
+ "x-ms-request-id": "9b331199-4002-002c-3f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1622,12 +1644,12 @@
{
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.0004035Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A54.5647835Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.0004035Z",
+ "Timestamp": "2020-07-17T22:08:54.5647835Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:02:00Z",
@@ -1644,12 +1666,12 @@
{
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.0494445Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A54.6098213Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"PartitionKey": "somPartition",
"RowKey": "02",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.0494445Z",
+ "Timestamp": "2020-07-17T22:08:54.6098213Z",
"SomeStringProperty": "This is table entity number 02",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:03:00Z",
@@ -1666,12 +1688,12 @@
{
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.0984851Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A54.6528584Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"PartitionKey": "somPartition",
"RowKey": "03",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.0984851Z",
+ "Timestamp": "2020-07-17T22:08:54.6528584Z",
"SomeStringProperty": "This is table entity number 03",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:04:00Z",
@@ -1688,12 +1710,12 @@
{
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.1395194Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A54.6968933Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"PartitionKey": "somPartition",
"RowKey": "04",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.1395194Z",
+ "Timestamp": "2020-07-17T22:08:54.6968933Z",
"SomeStringProperty": "This is table entity number 04",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:05:00Z",
@@ -1710,12 +1732,12 @@
{
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.1805546Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A54.7549424Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"PartitionKey": "somPartition",
"RowKey": "05",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.1805546Z",
+ "Timestamp": "2020-07-17T22:08:54.7549424Z",
"SomeStringProperty": "This is table entity number 05",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:06:00Z",
@@ -1732,12 +1754,12 @@
{
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.2315964Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A54.7969774Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"PartitionKey": "somPartition",
"RowKey": "06",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.2315964Z",
+ "Timestamp": "2020-07-17T22:08:54.7969774Z",
"SomeStringProperty": "This is table entity number 06",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:07:00Z",
@@ -1754,12 +1776,12 @@
{
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.2766345Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A54.8390119Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"PartitionKey": "somPartition",
"RowKey": "07",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.2766345Z",
+ "Timestamp": "2020-07-17T22:08:54.8390119Z",
"SomeStringProperty": "This is table entity number 07",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:08:00Z",
@@ -1776,12 +1798,12 @@
{
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.328678Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A54.8850519Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"PartitionKey": "somPartition",
"RowKey": "08",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.328678Z",
+ "Timestamp": "2020-07-17T22:08:54.8850519Z",
"SomeStringProperty": "This is table entity number 08",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:09:00Z",
@@ -1798,12 +1820,12 @@
{
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.3727152Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A54.9310884Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"PartitionKey": "somPartition",
"RowKey": "09",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.3727152Z",
+ "Timestamp": "2020-07-17T22:08:54.9310884Z",
"SomeStringProperty": "This is table entity number 09",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:10:00Z",
@@ -1820,12 +1842,12 @@
{
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.4147495Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A54.9761254Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"PartitionKey": "somPartition",
"RowKey": "10",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.4147495Z",
+ "Timestamp": "2020-07-17T22:08:54.9761254Z",
"SomeStringProperty": "This is table entity number 10",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:11:00Z",
@@ -1842,12 +1864,12 @@
{
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.4567851Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.0221637Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"PartitionKey": "somPartition",
"RowKey": "11",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.4567851Z",
+ "Timestamp": "2020-07-17T22:08:55.0221637Z",
"SomeStringProperty": "This is table entity number 11",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:12:00Z",
@@ -1864,12 +1886,12 @@
{
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.5008232Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.0631978Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"PartitionKey": "somPartition",
"RowKey": "12",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.5008232Z",
+ "Timestamp": "2020-07-17T22:08:55.0631978Z",
"SomeStringProperty": "This is table entity number 12",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:13:00Z",
@@ -1886,12 +1908,12 @@
{
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.5448605Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.1152411Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"PartitionKey": "somPartition",
"RowKey": "13",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.5448605Z",
+ "Timestamp": "2020-07-17T22:08:55.1152411Z",
"SomeStringProperty": "This is table entity number 13",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:14:00Z",
@@ -1908,12 +1930,12 @@
{
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.5898968Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.1642823Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"PartitionKey": "somPartition",
"RowKey": "14",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.5898968Z",
+ "Timestamp": "2020-07-17T22:08:55.1642823Z",
"SomeStringProperty": "This is table entity number 14",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:15:00Z",
@@ -1930,12 +1952,12 @@
{
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.6309311Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.2053173Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"PartitionKey": "somPartition",
"RowKey": "15",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.6309311Z",
+ "Timestamp": "2020-07-17T22:08:55.2053173Z",
"SomeStringProperty": "This is table entity number 15",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:16:00Z",
@@ -1952,12 +1974,12 @@
{
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.6959847Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.2523551Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"PartitionKey": "somPartition",
"RowKey": "16",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.6959847Z",
+ "Timestamp": "2020-07-17T22:08:55.2523551Z",
"SomeStringProperty": "This is table entity number 16",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:17:00Z",
@@ -1974,12 +1996,12 @@
{
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.7380207Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.2973926Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"PartitionKey": "somPartition",
"RowKey": "17",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.7380207Z",
+ "Timestamp": "2020-07-17T22:08:55.2973926Z",
"SomeStringProperty": "This is table entity number 17",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:18:00Z",
@@ -1996,12 +2018,12 @@
{
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.7800554Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.3444317Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"PartitionKey": "somPartition",
"RowKey": "18",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.7800554Z",
+ "Timestamp": "2020-07-17T22:08:55.3444317Z",
"SomeStringProperty": "This is table entity number 18",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:19:00Z",
@@ -2018,12 +2040,12 @@
{
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.8230914Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.3904721Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"PartitionKey": "somPartition",
"RowKey": "19",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.8230914Z",
+ "Timestamp": "2020-07-17T22:08:55.3904721Z",
"SomeStringProperty": "This is table entity number 19",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:20:00Z",
@@ -2040,12 +2062,12 @@
{
"odata.type": "chrissscratch.testtablehyay63ko",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A24.8651265Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A55.4355082Z\u0027\u0022",
"odata.editLink": "testtablehyay63ko(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"PartitionKey": "somPartition",
"RowKey": "20",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:24.8651265Z",
+ "Timestamp": "2020-07-17T22:08:55.4355082Z",
"SomeStringProperty": "This is table entity number 20",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:21:00Z",
@@ -2068,13 +2090,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-d792d54f5980ea49bc258695181d706f-f80f1cff3e1bae48-00",
+ "traceparent": "00-8729e6b56e4ba84a9d1426ad50e10996-767ee9147e2db540-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "912800ef5331eb3277e0b47d79335742",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:25 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:55 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2083,14 +2105,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:24 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:54 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "912800ef5331eb3277e0b47d79335742",
- "x-ms-request-id": "20750f25-b002-001b-7321-5aea7a000000",
+ "x-ms-request-id": "9b3311ac-4002-002c-5186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedEntitiesCanBeQueriedWithAndWithoutPagination(null)Async.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedEntitiesCanBeQueriedWithAndWithoutPagination(null)Async.json
index 55ca0237cb76..f0a70a9a9222 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedEntitiesCanBeQueriedWithAndWithoutPagination(null)Async.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedEntitiesCanBeQueriedWithAndWithoutPagination(null)Async.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c831cf9e4ff2b844865c29d36b53d38c-e72b07ed61e8af49-00",
+ "traceparent": "00-d131b9df466b8849a5ad0928385398f7-f6b233e01400ab47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "198acfbf6a44debf0d1181d4f54bf73c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:48 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:06 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:47 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:05 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablej01j918u\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "198acfbf6a44debf0d1181d4f54bf73c",
- "x-ms-request-id": "20752689-b002-001b-1a21-5aea7a000000",
+ "x-ms-request-id": "9b331a7f-4002-002c-0186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablej01j918u?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-b2b9950058de884095311d2186527685-cbd0ad008eb78248-00",
+ "traceparent": "00-46dfbcdfc7f37048a271f9af026e6796-e58014635a794044-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d278af988b447cfbf951fdd863b80f54",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:48 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:06 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -85,8 +87,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:47 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.0423703Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A06.8500099Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -95,19 +97,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d278af988b447cfbf951fdd863b80f54",
- "x-ms-request-id": "20752699-b002-001b-2921-5aea7a000000",
+ "x-ms-request-id": "9b331a8d-4002-002c-0c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablej01j918u/@Element",
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.0423703Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A06.8500099Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.0423703Z",
+ "Timestamp": "2020-07-17T22:09:06.8500099Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:02:00Z",
@@ -126,17 +128,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablej01j918u?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-3e2a1ec0ace43b4c864a892b5321df89-a84f87bc825c9045-00",
+ "traceparent": "00-058f053e81bb85479d299b1a0504df88-a5b079970d142a4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "10511eb065e9a60483d47b283b9bd6e7",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:48 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:06 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -162,8 +165,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:47 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.0874077Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A06.8970495Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -172,19 +175,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "10511eb065e9a60483d47b283b9bd6e7",
- "x-ms-request-id": "207526a4-b002-001b-3421-5aea7a000000",
+ "x-ms-request-id": "9b331a91-4002-002c-1086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablej01j918u/@Element",
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.0874077Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A06.8970495Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"PartitionKey": "somPartition",
"RowKey": "02",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.0874077Z",
+ "Timestamp": "2020-07-17T22:09:06.8970495Z",
"SomeStringProperty": "This is table entity number 02",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:03:00Z",
@@ -203,17 +206,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablej01j918u?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d126a6d3ec8db144bff9f59bdf19e161-6c975742e462fe4b-00",
+ "traceparent": "00-7e20437ec2354a4881bd03788658de9d-5434ee62e3632b49-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "fa349aa13f57331dd40e20f36de67a54",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:48 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -239,8 +243,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:47 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.1374488Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A06.9410857Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -249,19 +253,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "fa349aa13f57331dd40e20f36de67a54",
- "x-ms-request-id": "207526b0-b002-001b-3e21-5aea7a000000",
+ "x-ms-request-id": "9b331aa1-4002-002c-1f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablej01j918u/@Element",
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.1374488Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A06.9410857Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"PartitionKey": "somPartition",
"RowKey": "03",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.1374488Z",
+ "Timestamp": "2020-07-17T22:09:06.9410857Z",
"SomeStringProperty": "This is table entity number 03",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:04:00Z",
@@ -280,17 +284,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablej01j918u?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-4572245adf3ed84a958c11c773e0b457-27a3b1a9e67a6844-00",
+ "traceparent": "00-06db3d1c8ec7cd4ea72ca6cbb8656ae0-8034c3efa90e854e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d6232c02e7fa3352aad14f7010d2405d",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:48 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -316,8 +321,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:47 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.1784829Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A06.9861231Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -326,19 +331,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d6232c02e7fa3352aad14f7010d2405d",
- "x-ms-request-id": "207526b8-b002-001b-4621-5aea7a000000",
+ "x-ms-request-id": "9b331aad-4002-002c-2b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablej01j918u/@Element",
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.1784829Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A06.9861231Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"PartitionKey": "somPartition",
"RowKey": "04",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.1784829Z",
+ "Timestamp": "2020-07-17T22:09:06.9861231Z",
"SomeStringProperty": "This is table entity number 04",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:05:00Z",
@@ -357,17 +362,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablej01j918u?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-80fea1e3b5d62a48b4b0448a77f0d977-9e002d4e102fc446-00",
+ "traceparent": "00-713179b453c8f24284cdd098a3027a5c-6f23fafa7e5b2348-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c837157b148471fd011d3bdb4511389d",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:48 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -393,8 +399,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:47 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.2225203Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.0321609Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -403,19 +409,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "c837157b148471fd011d3bdb4511389d",
- "x-ms-request-id": "207526c2-b002-001b-4f21-5aea7a000000",
+ "x-ms-request-id": "9b331ab6-4002-002c-3486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablej01j918u/@Element",
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.2225203Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.0321609Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"PartitionKey": "somPartition",
"RowKey": "05",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.2225203Z",
+ "Timestamp": "2020-07-17T22:09:07.0321609Z",
"SomeStringProperty": "This is table entity number 05",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:06:00Z",
@@ -434,17 +440,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablej01j918u?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c24bf285bfade54f8d380bb8f604205b-5936853bf2173045-00",
+ "traceparent": "00-5088b5c680e024498d186cdd93279b86-0363f991c6dff94d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0e26265aff78baec47014f85f0ad2302",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:48 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -470,8 +477,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:48 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.2675568Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.0761988Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -480,19 +487,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0e26265aff78baec47014f85f0ad2302",
- "x-ms-request-id": "207526c9-b002-001b-5621-5aea7a000000",
+ "x-ms-request-id": "9b331ac0-4002-002c-3e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablej01j918u/@Element",
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.2675568Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.0761988Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"PartitionKey": "somPartition",
"RowKey": "06",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.2675568Z",
+ "Timestamp": "2020-07-17T22:09:07.0761988Z",
"SomeStringProperty": "This is table entity number 06",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:07:00Z",
@@ -511,17 +518,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablej01j918u?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-7160cc3db2af9e40880ca65b29018ed3-bb0c06f3badec94e-00",
+ "traceparent": "00-80ff4f1a757f0942b3f9b4b478fb4799-1eb2f2745b702141-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5877c2cdb1afeed02fb2d5ddab77ed99",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:48 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -547,8 +555,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:48 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.3115938Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.1232367Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -557,19 +565,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "5877c2cdb1afeed02fb2d5ddab77ed99",
- "x-ms-request-id": "207526d2-b002-001b-5f21-5aea7a000000",
+ "x-ms-request-id": "9b331ac8-4002-002c-4686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablej01j918u/@Element",
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.3115938Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.1232367Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"PartitionKey": "somPartition",
"RowKey": "07",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.3115938Z",
+ "Timestamp": "2020-07-17T22:09:07.1232367Z",
"SomeStringProperty": "This is table entity number 07",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:08:00Z",
@@ -588,17 +596,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablej01j918u?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-95eabff6f79d4d40aeffcd5cd97180ef-bc38e99e07a8bc43-00",
+ "traceparent": "00-0e506a882ec6f24ca98abde93396bcd7-27b766c8cb909545-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ea16b29832ac7ce5287d8182c4778153",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:48 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -624,8 +633,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:48 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.3576316Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.1692754Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -634,19 +643,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ea16b29832ac7ce5287d8182c4778153",
- "x-ms-request-id": "207526d6-b002-001b-6321-5aea7a000000",
+ "x-ms-request-id": "9b331ad3-4002-002c-5186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablej01j918u/@Element",
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.3576316Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.1692754Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"PartitionKey": "somPartition",
"RowKey": "08",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.3576316Z",
+ "Timestamp": "2020-07-17T22:09:07.1692754Z",
"SomeStringProperty": "This is table entity number 08",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:09:00Z",
@@ -665,17 +674,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablej01j918u?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-7abe6b8e0aa8da44bf176793ebf97b63-19790459654d934b-00",
+ "traceparent": "00-8d593b7499062246b5878bac8351b165-3541ac71f6378a46-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "820e39fae099a8ee5538dec5290f0ecf",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:48 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -701,8 +711,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:48 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.4016686Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.3103923Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -711,19 +721,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "820e39fae099a8ee5538dec5290f0ecf",
- "x-ms-request-id": "207526df-b002-001b-6c21-5aea7a000000",
+ "x-ms-request-id": "9b331ae4-4002-002c-6286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablej01j918u/@Element",
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.4016686Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.3103923Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"PartitionKey": "somPartition",
"RowKey": "09",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.4016686Z",
+ "Timestamp": "2020-07-17T22:09:07.3103923Z",
"SomeStringProperty": "This is table entity number 09",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:10:00Z",
@@ -742,17 +752,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablej01j918u?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6784ae1a2283be4f9582036e2d83c395-fa1352c36d478d47-00",
+ "traceparent": "00-38bb7972f7748b498ae09dc4d49b8492-ab8aad0c2db7b845-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3dedb61338979a56ddfb2f31304d29b8",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:48 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -778,8 +789,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:48 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.446706Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.3574322Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -788,19 +799,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "3dedb61338979a56ddfb2f31304d29b8",
- "x-ms-request-id": "207526e8-b002-001b-7521-5aea7a000000",
+ "x-ms-request-id": "9b331aea-4002-002c-6886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablej01j918u/@Element",
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.446706Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.3574322Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"PartitionKey": "somPartition",
"RowKey": "10",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.446706Z",
+ "Timestamp": "2020-07-17T22:09:07.3574322Z",
"SomeStringProperty": "This is table entity number 10",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:11:00Z",
@@ -819,17 +830,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablej01j918u?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-7ef9892850187643b7a3be4d9407efdb-462bcc8a80132e49-00",
+ "traceparent": "00-f97dbc271bf1ea468ce910d447f1e7c1-25e496ee8594054b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "72e381316b69b7ffc46d957354205219",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:48 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -855,8 +867,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:48 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.4897417Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.4044705Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -865,19 +877,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "72e381316b69b7ffc46d957354205219",
- "x-ms-request-id": "207526f1-b002-001b-7e21-5aea7a000000",
+ "x-ms-request-id": "9b331af1-4002-002c-6f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablej01j918u/@Element",
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.4897417Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.4044705Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"PartitionKey": "somPartition",
"RowKey": "11",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.4897417Z",
+ "Timestamp": "2020-07-17T22:09:07.4044705Z",
"SomeStringProperty": "This is table entity number 11",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:12:00Z",
@@ -896,17 +908,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablej01j918u?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8b591d956a46574c9d96ab93054ad5c0-ca97198b05caf84d-00",
+ "traceparent": "00-9cc3c25748d0e5458b8ad939a35790f7-bdd79bbfafcb784c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0e6fb16e438ac1bce273a59db1bc7707",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:48 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -932,8 +945,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:48 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.5327774Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.448508Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -942,19 +955,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0e6fb16e438ac1bce273a59db1bc7707",
- "x-ms-request-id": "207526fe-b002-001b-0b21-5aea7a000000",
+ "x-ms-request-id": "9b331afd-4002-002c-7b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablej01j918u/@Element",
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.5327774Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.448508Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"PartitionKey": "somPartition",
"RowKey": "12",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.5327774Z",
+ "Timestamp": "2020-07-17T22:09:07.448508Z",
"SomeStringProperty": "This is table entity number 12",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:13:00Z",
@@ -973,17 +986,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablej01j918u?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-3a04eb2a6b39c24ca3b3d393e5f30443-7069904883175c40-00",
+ "traceparent": "00-5c387945d1745c49b592d5c6841798b0-9477198686840844-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a793260e9c2ca766b6357929a3e246bc",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:48 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1009,8 +1023,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:48 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.5748123Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.4905421Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1019,19 +1033,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "a793260e9c2ca766b6357929a3e246bc",
- "x-ms-request-id": "20752703-b002-001b-1021-5aea7a000000",
+ "x-ms-request-id": "9b331b05-4002-002c-0386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablej01j918u/@Element",
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.5748123Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.4905421Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"PartitionKey": "somPartition",
"RowKey": "13",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.5748123Z",
+ "Timestamp": "2020-07-17T22:09:07.4905421Z",
"SomeStringProperty": "This is table entity number 13",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:14:00Z",
@@ -1050,17 +1064,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablej01j918u?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-2edf6eebf9d2bc418d034b5d0cb077e2-49a306c398d18a4a-00",
+ "traceparent": "00-c5957742d1ec5b43a66537a60d9c2783-c39af129e450484f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7ec316a91adeee2dc5218ff6c6620607",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:48 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1086,8 +1101,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:48 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.6168472Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.5435862Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1096,19 +1111,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "7ec316a91adeee2dc5218ff6c6620607",
- "x-ms-request-id": "2075270e-b002-001b-1b21-5aea7a000000",
+ "x-ms-request-id": "9b331b0f-4002-002c-0c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablej01j918u/@Element",
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.6168472Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.5435862Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"PartitionKey": "somPartition",
"RowKey": "14",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.6168472Z",
+ "Timestamp": "2020-07-17T22:09:07.5435862Z",
"SomeStringProperty": "This is table entity number 14",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:15:00Z",
@@ -1127,17 +1142,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablej01j918u?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8ce20a8c6e1f7342a8d33408e6757507-a0c3b80770837343-00",
+ "traceparent": "00-d29bf5ae85137648a5419c355f89c18f-6c761b6328fbff41-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2e648df6ab8cd2ec4bc75755c9931dff",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:48 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1163,8 +1179,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:48 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.6608842Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.5896244Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1173,19 +1189,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "2e648df6ab8cd2ec4bc75755c9931dff",
- "x-ms-request-id": "20752714-b002-001b-2021-5aea7a000000",
+ "x-ms-request-id": "9b331b1d-4002-002c-1886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablej01j918u/@Element",
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.6608842Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.5896244Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"PartitionKey": "somPartition",
"RowKey": "15",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.6608842Z",
+ "Timestamp": "2020-07-17T22:09:07.5896244Z",
"SomeStringProperty": "This is table entity number 15",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:16:00Z",
@@ -1204,17 +1220,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablej01j918u?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-7aea9e14c6e70e4ca9e5e047a51e9e8e-6a8b656c53106e4e-00",
+ "traceparent": "00-5c55f4df6e2ad240b5ca76a0f102df06-999d737f3e561f4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9bf4e82df9f9f429f8a5e20b0c70e154",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:48 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1240,8 +1257,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:48 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.7049203Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.6336615Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1250,19 +1267,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "9bf4e82df9f9f429f8a5e20b0c70e154",
- "x-ms-request-id": "2075271a-b002-001b-2621-5aea7a000000",
+ "x-ms-request-id": "9b331b2b-4002-002c-2386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablej01j918u/@Element",
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.7049203Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.6336615Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"PartitionKey": "somPartition",
"RowKey": "16",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.7049203Z",
+ "Timestamp": "2020-07-17T22:09:07.6336615Z",
"SomeStringProperty": "This is table entity number 16",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:17:00Z",
@@ -1281,17 +1298,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablej01j918u?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9a546c2db58308409722bdd1820b8c42-d0d7a13b74e55a4a-00",
+ "traceparent": "00-2081f2a8d2d8454fba18869e5834b330-9dde2c0617418648-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1533722e187dfd3029f03316c2d82532",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:49 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1317,8 +1335,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:48 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.7479573Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.6807002Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1327,19 +1345,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "1533722e187dfd3029f03316c2d82532",
- "x-ms-request-id": "2075271d-b002-001b-2921-5aea7a000000",
+ "x-ms-request-id": "9b331b30-4002-002c-2886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablej01j918u/@Element",
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.7479573Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.6807002Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"PartitionKey": "somPartition",
"RowKey": "17",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.7479573Z",
+ "Timestamp": "2020-07-17T22:09:07.6807002Z",
"SomeStringProperty": "This is table entity number 17",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:18:00Z",
@@ -1358,17 +1376,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablej01j918u?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ddfa75896e1cfd48a83e9303b55871a3-011fd7939a2f8741-00",
+ "traceparent": "00-585a112505a46443a00b75d299d3b0ab-7a07de81b8c9f046-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ddc890036a6dfd0e647035e6c8e1c6db",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:49 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1394,8 +1413,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:48 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.791993Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.7267393Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1404,19 +1423,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ddc890036a6dfd0e647035e6c8e1c6db",
- "x-ms-request-id": "20752722-b002-001b-2e21-5aea7a000000",
+ "x-ms-request-id": "9b331b38-4002-002c-3086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablej01j918u/@Element",
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.791993Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.7267393Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"PartitionKey": "somPartition",
"RowKey": "18",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.791993Z",
+ "Timestamp": "2020-07-17T22:09:07.7267393Z",
"SomeStringProperty": "This is table entity number 18",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:19:00Z",
@@ -1435,17 +1454,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablej01j918u?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e55f886e09f8ab46a3c1cea96943e921-f3ad005eee6ca645-00",
+ "traceparent": "00-79374757b2354b4381428c23fbc4a84e-cc024e05032c9f49-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "572603e6075f1582b7f67108c512311f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:49 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1471,8 +1491,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:48 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.8340275Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.7727763Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1481,19 +1501,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "572603e6075f1582b7f67108c512311f",
- "x-ms-request-id": "2075272c-b002-001b-3721-5aea7a000000",
+ "x-ms-request-id": "9b331b3f-4002-002c-3786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablej01j918u/@Element",
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.8340275Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.7727763Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"PartitionKey": "somPartition",
"RowKey": "19",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.8340275Z",
+ "Timestamp": "2020-07-17T22:09:07.7727763Z",
"SomeStringProperty": "This is table entity number 19",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:20:00Z",
@@ -1512,17 +1532,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablej01j918u?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a769baa65e25fd48b99aa4b0f28df16e-fb2042f231389b41-00",
+ "traceparent": "00-e0e2b6c2fda8fb44ab9dc62c3a07ba31-71ca2aa5bff8e54e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7c07b08004a7c4e66336b10de2493447",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:49 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1548,8 +1569,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:48 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.8810661Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.8158125Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1558,19 +1579,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "7c07b08004a7c4e66336b10de2493447",
- "x-ms-request-id": "2075273c-b002-001b-4621-5aea7a000000",
+ "x-ms-request-id": "9b331b4b-4002-002c-4386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablej01j918u/@Element",
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.8810661Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.8158125Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"PartitionKey": "somPartition",
"RowKey": "20",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.8810661Z",
+ "Timestamp": "2020-07-17T22:09:07.8158125Z",
"SomeStringProperty": "This is table entity number 20",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:21:00Z",
@@ -1589,14 +1610,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablej01j918u()?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "bf305729cdb2fbd20eb32576f8053752",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:49 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1605,7 +1627,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:48 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:07 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1613,7 +1635,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "bf305729cdb2fbd20eb32576f8053752",
- "x-ms-request-id": "20752748-b002-001b-5221-5aea7a000000",
+ "x-ms-request-id": "9b331b53-4002-002c-4b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1622,12 +1644,12 @@
{
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.0423703Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A06.8500099Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.0423703Z",
+ "Timestamp": "2020-07-17T22:09:06.8500099Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:02:00Z",
@@ -1644,12 +1666,12 @@
{
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.0874077Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A06.8970495Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"PartitionKey": "somPartition",
"RowKey": "02",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.0874077Z",
+ "Timestamp": "2020-07-17T22:09:06.8970495Z",
"SomeStringProperty": "This is table entity number 02",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:03:00Z",
@@ -1666,12 +1688,12 @@
{
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.1374488Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A06.9410857Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"PartitionKey": "somPartition",
"RowKey": "03",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.1374488Z",
+ "Timestamp": "2020-07-17T22:09:06.9410857Z",
"SomeStringProperty": "This is table entity number 03",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:04:00Z",
@@ -1688,12 +1710,12 @@
{
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.1784829Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A06.9861231Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"PartitionKey": "somPartition",
"RowKey": "04",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.1784829Z",
+ "Timestamp": "2020-07-17T22:09:06.9861231Z",
"SomeStringProperty": "This is table entity number 04",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:05:00Z",
@@ -1710,12 +1732,12 @@
{
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.2225203Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.0321609Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"PartitionKey": "somPartition",
"RowKey": "05",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.2225203Z",
+ "Timestamp": "2020-07-17T22:09:07.0321609Z",
"SomeStringProperty": "This is table entity number 05",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:06:00Z",
@@ -1732,12 +1754,12 @@
{
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.2675568Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.0761988Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"PartitionKey": "somPartition",
"RowKey": "06",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.2675568Z",
+ "Timestamp": "2020-07-17T22:09:07.0761988Z",
"SomeStringProperty": "This is table entity number 06",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:07:00Z",
@@ -1754,12 +1776,12 @@
{
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.3115938Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.1232367Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"PartitionKey": "somPartition",
"RowKey": "07",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.3115938Z",
+ "Timestamp": "2020-07-17T22:09:07.1232367Z",
"SomeStringProperty": "This is table entity number 07",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:08:00Z",
@@ -1776,12 +1798,12 @@
{
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.3576316Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.1692754Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"PartitionKey": "somPartition",
"RowKey": "08",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.3576316Z",
+ "Timestamp": "2020-07-17T22:09:07.1692754Z",
"SomeStringProperty": "This is table entity number 08",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:09:00Z",
@@ -1798,12 +1820,12 @@
{
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.4016686Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.3103923Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"PartitionKey": "somPartition",
"RowKey": "09",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.4016686Z",
+ "Timestamp": "2020-07-17T22:09:07.3103923Z",
"SomeStringProperty": "This is table entity number 09",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:10:00Z",
@@ -1820,12 +1842,12 @@
{
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.446706Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.3574322Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"PartitionKey": "somPartition",
"RowKey": "10",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.446706Z",
+ "Timestamp": "2020-07-17T22:09:07.3574322Z",
"SomeStringProperty": "This is table entity number 10",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:11:00Z",
@@ -1842,12 +1864,12 @@
{
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.4897417Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.4044705Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"PartitionKey": "somPartition",
"RowKey": "11",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.4897417Z",
+ "Timestamp": "2020-07-17T22:09:07.4044705Z",
"SomeStringProperty": "This is table entity number 11",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:12:00Z",
@@ -1864,12 +1886,12 @@
{
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.5327774Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.448508Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"PartitionKey": "somPartition",
"RowKey": "12",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.5327774Z",
+ "Timestamp": "2020-07-17T22:09:07.448508Z",
"SomeStringProperty": "This is table entity number 12",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:13:00Z",
@@ -1886,12 +1908,12 @@
{
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.5748123Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.4905421Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"PartitionKey": "somPartition",
"RowKey": "13",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.5748123Z",
+ "Timestamp": "2020-07-17T22:09:07.4905421Z",
"SomeStringProperty": "This is table entity number 13",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:14:00Z",
@@ -1908,12 +1930,12 @@
{
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.6168472Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.5435862Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"PartitionKey": "somPartition",
"RowKey": "14",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.6168472Z",
+ "Timestamp": "2020-07-17T22:09:07.5435862Z",
"SomeStringProperty": "This is table entity number 14",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:15:00Z",
@@ -1930,12 +1952,12 @@
{
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.6608842Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.5896244Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"PartitionKey": "somPartition",
"RowKey": "15",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.6608842Z",
+ "Timestamp": "2020-07-17T22:09:07.5896244Z",
"SomeStringProperty": "This is table entity number 15",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:16:00Z",
@@ -1952,12 +1974,12 @@
{
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.7049203Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.6336615Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"PartitionKey": "somPartition",
"RowKey": "16",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.7049203Z",
+ "Timestamp": "2020-07-17T22:09:07.6336615Z",
"SomeStringProperty": "This is table entity number 16",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:17:00Z",
@@ -1974,12 +1996,12 @@
{
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.7479573Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.6807002Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"PartitionKey": "somPartition",
"RowKey": "17",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.7479573Z",
+ "Timestamp": "2020-07-17T22:09:07.6807002Z",
"SomeStringProperty": "This is table entity number 17",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:18:00Z",
@@ -1996,12 +2018,12 @@
{
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.791993Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.7267393Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"PartitionKey": "somPartition",
"RowKey": "18",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.791993Z",
+ "Timestamp": "2020-07-17T22:09:07.7267393Z",
"SomeStringProperty": "This is table entity number 18",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:19:00Z",
@@ -2018,12 +2040,12 @@
{
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.8340275Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.7727763Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"PartitionKey": "somPartition",
"RowKey": "19",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.8340275Z",
+ "Timestamp": "2020-07-17T22:09:07.7727763Z",
"SomeStringProperty": "This is table entity number 19",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:20:00Z",
@@ -2040,12 +2062,12 @@
{
"odata.type": "chrissscratch.testtablej01j918u",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A48.8810661Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A07.8158125Z\u0027\u0022",
"odata.editLink": "testtablej01j918u(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"PartitionKey": "somPartition",
"RowKey": "20",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:48.8810661Z",
+ "Timestamp": "2020-07-17T22:09:07.8158125Z",
"SomeStringProperty": "This is table entity number 20",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:21:00Z",
@@ -2068,13 +2090,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-1be13e7ca7bf7542aa6805599d63fa09-df44bd31daf9424f-00",
+ "traceparent": "00-075f64992072e7498b293afd3db3e5ad-ecaf56bebfa00d42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1866163f4adae1331d61f3295674336e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:49 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:08 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2083,14 +2105,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:48 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:07 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "1866163f4adae1331d61f3295674336e",
- "x-ms-request-id": "2075276c-b002-001b-7521-5aea7a000000",
+ "x-ms-request-id": "9b331b72-4002-002c-6986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedEntitiesCanBeQueriedWithFilters.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedEntitiesCanBeQueriedWithFilters.json
index 4856c2b09ae2..51764ce37d2d 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedEntitiesCanBeQueriedWithFilters.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedEntitiesCanBeQueriedWithFilters.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d0536a9e915b494eb80fdedddb5bc2bc-8c4ac0c79bea1c47-00",
+ "traceparent": "00-4e5df49cd663974cbd19d8238fd0ffda-db02df7d7d297f40-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "07be2e6eebb39db61a3c8dc1cdda4309",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:45 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:16 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:44 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablegoc9wtgt\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "07be2e6eebb39db61a3c8dc1cdda4309",
- "x-ms-request-id": "207506bb-b002-001b-1521-5aea7a000000",
+ "x-ms-request-id": "9b33097e-4002-002c-0886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c1fab797182c8b49967240ac16a582d4-bf7053c68bab934a-00",
+ "traceparent": "00-c9b398a392f22245b0df2dbac4e5bc01-8930f62035bf5841-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e08ad77e86d8a1d78f1bd0a72c07b466",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:45 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -85,8 +87,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:16 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.281958Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:44 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A45.7704598Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -95,19 +97,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "e08ad77e86d8a1d78f1bd0a72c07b466",
- "x-ms-request-id": "207506ca-b002-001b-2321-5aea7a000000",
+ "x-ms-request-id": "9b33098c-4002-002c-1486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablegoc9wtgt/@Element",
"odata.type": "chrissscratch.testtablegoc9wtgt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.281958Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A45.7704598Z\u0027\u0022",
"odata.editLink": "testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:16.281958Z",
+ "Timestamp": "2020-07-17T22:08:45.7704598Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:02:00Z",
@@ -126,17 +128,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a245e93ce317c4408bd291dead6e308f-dbda5f06dd70394c-00",
+ "traceparent": "00-9d99c2d5786bc8408e79db8694a66d3a-a491d0347c48db4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f5c246741e91bad297db86c0c31184a5",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:45 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -162,8 +165,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:16 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.3239916Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:45 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A45.813496Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -172,19 +175,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f5c246741e91bad297db86c0c31184a5",
- "x-ms-request-id": "207506da-b002-001b-3221-5aea7a000000",
+ "x-ms-request-id": "9b330992-4002-002c-1a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablegoc9wtgt/@Element",
"odata.type": "chrissscratch.testtablegoc9wtgt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.3239916Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A45.813496Z\u0027\u0022",
"odata.editLink": "testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"PartitionKey": "somPartition",
"RowKey": "02",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:16.3239916Z",
+ "Timestamp": "2020-07-17T22:08:45.813496Z",
"SomeStringProperty": "This is table entity number 02",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:03:00Z",
@@ -203,17 +206,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-cd883ce4539f9a448e5cc3962e3d5ca6-94d8ce67e3293f46-00",
+ "traceparent": "00-8a2189c4adf45a41b43cd984b3550d96-5ac03d95636e544c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "75886ec123c1e840561d77981a0f7112",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:45 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -239,8 +243,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:16 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.3680286Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:45 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A45.8615355Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -249,19 +253,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "75886ec123c1e840561d77981a0f7112",
- "x-ms-request-id": "207506e3-b002-001b-3b21-5aea7a000000",
+ "x-ms-request-id": "9b33099e-4002-002c-2586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablegoc9wtgt/@Element",
"odata.type": "chrissscratch.testtablegoc9wtgt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.3680286Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A45.8615355Z\u0027\u0022",
"odata.editLink": "testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"PartitionKey": "somPartition",
"RowKey": "03",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:16.3680286Z",
+ "Timestamp": "2020-07-17T22:08:45.8615355Z",
"SomeStringProperty": "This is table entity number 03",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:04:00Z",
@@ -280,17 +284,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-41cdc987c721e54387d904a6592d3463-e8d58f52601ef04a-00",
+ "traceparent": "00-07c071045b919a49b8d1b14eca0a249e-e9041179982b354f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "874c26874d17607804cf48fc0016de7e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:45 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -316,8 +321,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:16 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.4110647Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:45 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A45.9055721Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -326,19 +331,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "874c26874d17607804cf48fc0016de7e",
- "x-ms-request-id": "207506eb-b002-001b-4321-5aea7a000000",
+ "x-ms-request-id": "9b3309a5-4002-002c-2b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablegoc9wtgt/@Element",
"odata.type": "chrissscratch.testtablegoc9wtgt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.4110647Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A45.9055721Z\u0027\u0022",
"odata.editLink": "testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"PartitionKey": "somPartition",
"RowKey": "04",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:16.4110647Z",
+ "Timestamp": "2020-07-17T22:08:45.9055721Z",
"SomeStringProperty": "This is table entity number 04",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:05:00Z",
@@ -357,17 +362,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c45763b34e532d4d9f4ee81976a52ee3-c26441760052be4d-00",
+ "traceparent": "00-696e8b6969ae8545be8850eb3355069f-9eb3a2eddf888849-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "bee62a973e7f51a506da9e74a63a9f88",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -393,8 +399,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:16 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.4540996Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:45 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A45.9586179Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -403,19 +409,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "bee62a973e7f51a506da9e74a63a9f88",
- "x-ms-request-id": "207506f4-b002-001b-4c21-5aea7a000000",
+ "x-ms-request-id": "9b3309b0-4002-002c-3686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablegoc9wtgt/@Element",
"odata.type": "chrissscratch.testtablegoc9wtgt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.4540996Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A45.9586179Z\u0027\u0022",
"odata.editLink": "testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"PartitionKey": "somPartition",
"RowKey": "05",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:16.4540996Z",
+ "Timestamp": "2020-07-17T22:08:45.9586179Z",
"SomeStringProperty": "This is table entity number 05",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:06:00Z",
@@ -434,17 +440,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-5272e77a22764643a95939b4de12e0ad-a6137413be74fd4f-00",
+ "traceparent": "00-de630aec16721a469477f9c768c7e527-067dece963634c47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9c38746afcc4738ef52871f1da43e840",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -470,8 +477,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:16 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.5041414Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:45 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.0056562Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -480,19 +487,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "9c38746afcc4738ef52871f1da43e840",
- "x-ms-request-id": "20750704-b002-001b-5b21-5aea7a000000",
+ "x-ms-request-id": "9b3309bf-4002-002c-4486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablegoc9wtgt/@Element",
"odata.type": "chrissscratch.testtablegoc9wtgt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.5041414Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.0056562Z\u0027\u0022",
"odata.editLink": "testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"PartitionKey": "somPartition",
"RowKey": "06",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:16.5041414Z",
+ "Timestamp": "2020-07-17T22:08:46.0056562Z",
"SomeStringProperty": "This is table entity number 06",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:07:00Z",
@@ -511,17 +518,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-92ebd2e4aa9f1d4ea0a95268ca20ea24-8f559c825f833043-00",
+ "traceparent": "00-be257af732615644b58545c843f21dcb-c5a4aacaf765e04f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f001f93fb229499281fb803dae04b9c9",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -547,8 +555,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:16 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.552182Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:45 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.0496932Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -557,19 +565,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f001f93fb229499281fb803dae04b9c9",
- "x-ms-request-id": "20750712-b002-001b-6821-5aea7a000000",
+ "x-ms-request-id": "9b3309c5-4002-002c-4a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablegoc9wtgt/@Element",
"odata.type": "chrissscratch.testtablegoc9wtgt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.552182Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.0496932Z\u0027\u0022",
"odata.editLink": "testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"PartitionKey": "somPartition",
"RowKey": "07",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:16.552182Z",
+ "Timestamp": "2020-07-17T22:08:46.0496932Z",
"SomeStringProperty": "This is table entity number 07",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:08:00Z",
@@ -588,17 +596,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8288459ba7d7414fb2aa2af12d6e18a4-34a82ae6e25f2c42-00",
+ "traceparent": "00-2cdd75e44742d54b8d76e0cda1903143-5063e991fb64f042-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8b92c02f41dd9ab99c72c857cdb376c2",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -624,8 +633,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:16 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.5952184Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:45 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.0937285Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -634,19 +643,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "8b92c02f41dd9ab99c72c857cdb376c2",
- "x-ms-request-id": "2075071e-b002-001b-7421-5aea7a000000",
+ "x-ms-request-id": "9b3309d7-4002-002c-5886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablegoc9wtgt/@Element",
"odata.type": "chrissscratch.testtablegoc9wtgt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.5952184Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.0937285Z\u0027\u0022",
"odata.editLink": "testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"PartitionKey": "somPartition",
"RowKey": "08",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:16.5952184Z",
+ "Timestamp": "2020-07-17T22:08:46.0937285Z",
"SomeStringProperty": "This is table entity number 08",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:09:00Z",
@@ -665,17 +674,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6d083059d0c06342b026c22183f79a74-6770b2c8df231e49-00",
+ "traceparent": "00-a614c3cb635c7b45b1c92a8ee7e19aaf-2c74ccb80be01e4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ad355ef1af39b85fe1ef1bc97b50c4f0",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -701,8 +711,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:16 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.6392548Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:45 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.1397673Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -711,19 +721,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ad355ef1af39b85fe1ef1bc97b50c4f0",
- "x-ms-request-id": "20750728-b002-001b-7d21-5aea7a000000",
+ "x-ms-request-id": "9b3309ed-4002-002c-6c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablegoc9wtgt/@Element",
"odata.type": "chrissscratch.testtablegoc9wtgt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.6392548Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.1397673Z\u0027\u0022",
"odata.editLink": "testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"PartitionKey": "somPartition",
"RowKey": "09",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:16.6392548Z",
+ "Timestamp": "2020-07-17T22:08:46.1397673Z",
"SomeStringProperty": "This is table entity number 09",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:10:00Z",
@@ -742,17 +752,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-4e9def5ef3c4db41b479f61f7df8dc39-fa6dbae6d748b240-00",
+ "traceparent": "00-7abecf3551d2aa48bce127ed004f0d7f-ca5b8d8641388841-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1ac1a76e5cb1fd62406653b6e93a7cce",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -778,8 +789,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:16 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.683292Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:45 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.1948126Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -788,19 +799,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "1ac1a76e5cb1fd62406653b6e93a7cce",
- "x-ms-request-id": "20750730-b002-001b-0521-5aea7a000000",
+ "x-ms-request-id": "9b3309fd-4002-002c-7a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablegoc9wtgt/@Element",
"odata.type": "chrissscratch.testtablegoc9wtgt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.683292Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.1948126Z\u0027\u0022",
"odata.editLink": "testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"PartitionKey": "somPartition",
"RowKey": "10",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:16.683292Z",
+ "Timestamp": "2020-07-17T22:08:46.1948126Z",
"SomeStringProperty": "This is table entity number 10",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:11:00Z",
@@ -819,17 +830,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-20847a89b7c80841a341bbbccdfbafe4-2f2d618e5b115640-00",
+ "traceparent": "00-6ad200e990e30d4c9b32b3a4269cbf14-08edba1fc1871846-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "504bbe840bcf808f61daa9ee26ef1e4b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -855,8 +867,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:16 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.727328Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:45 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.245855Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -865,19 +877,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "504bbe840bcf808f61daa9ee26ef1e4b",
- "x-ms-request-id": "20750734-b002-001b-0921-5aea7a000000",
+ "x-ms-request-id": "9b330a09-4002-002c-0586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablegoc9wtgt/@Element",
"odata.type": "chrissscratch.testtablegoc9wtgt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.727328Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.245855Z\u0027\u0022",
"odata.editLink": "testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"PartitionKey": "somPartition",
"RowKey": "11",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:16.727328Z",
+ "Timestamp": "2020-07-17T22:08:46.245855Z",
"SomeStringProperty": "This is table entity number 11",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:12:00Z",
@@ -896,17 +908,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-75526df3425378418c3cc903dd7b8095-73df6786b1991a46-00",
+ "traceparent": "00-424da117dd9a10458ff941252574ed6d-10bf0d0431997d43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "25e8d8ae5cf29511fb376dd35ba8cea6",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -932,8 +945,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:16 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.7713648Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:45 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.2908929Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -942,19 +955,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "25e8d8ae5cf29511fb376dd35ba8cea6",
- "x-ms-request-id": "20750739-b002-001b-0e21-5aea7a000000",
+ "x-ms-request-id": "9b330a16-4002-002c-1186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablegoc9wtgt/@Element",
"odata.type": "chrissscratch.testtablegoc9wtgt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.7713648Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.2908929Z\u0027\u0022",
"odata.editLink": "testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"PartitionKey": "somPartition",
"RowKey": "12",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:16.7713648Z",
+ "Timestamp": "2020-07-17T22:08:46.2908929Z",
"SomeStringProperty": "This is table entity number 12",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:13:00Z",
@@ -973,17 +986,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-910ab1e2f7bd4842a48d3d437e2b440c-604a847c4c34ac4f-00",
+ "traceparent": "00-5a355679f1cc134881e8aaa7a82db931-5d6d0528baf03245-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "bd454d73740563211741b8d7b274d750",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1009,8 +1023,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:16 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.8154021Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:45 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.3359312Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1019,19 +1033,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "bd454d73740563211741b8d7b274d750",
- "x-ms-request-id": "20750740-b002-001b-1521-5aea7a000000",
+ "x-ms-request-id": "9b330a20-4002-002c-1a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablegoc9wtgt/@Element",
"odata.type": "chrissscratch.testtablegoc9wtgt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.8154021Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.3359312Z\u0027\u0022",
"odata.editLink": "testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"PartitionKey": "somPartition",
"RowKey": "13",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:16.8154021Z",
+ "Timestamp": "2020-07-17T22:08:46.3359312Z",
"SomeStringProperty": "This is table entity number 13",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:14:00Z",
@@ -1050,17 +1064,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-86dc38750614d047a1bcaf5aa4fc48d6-92e0c0c5bdf9884d-00",
+ "traceparent": "00-e29ba6c46c51b84caa2425833efe5ba5-9180ebecf6b3c040-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "11080748565228dbacb654989ebc24b8",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1086,8 +1101,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:16 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.8604393Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:45 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.3809686Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1096,19 +1111,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "11080748565228dbacb654989ebc24b8",
- "x-ms-request-id": "20750747-b002-001b-1b21-5aea7a000000",
+ "x-ms-request-id": "9b330a2f-4002-002c-2986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablegoc9wtgt/@Element",
"odata.type": "chrissscratch.testtablegoc9wtgt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.8604393Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.3809686Z\u0027\u0022",
"odata.editLink": "testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"PartitionKey": "somPartition",
"RowKey": "14",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:16.8604393Z",
+ "Timestamp": "2020-07-17T22:08:46.3809686Z",
"SomeStringProperty": "This is table entity number 14",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:15:00Z",
@@ -1127,17 +1142,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d4d39604ab48c742b5c8a7c8ceb54f21-6e961cf005b60149-00",
+ "traceparent": "00-f274e7f2c6fe8e4ca34623703d499c63-5fd8ab0c531d3f42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d97b030b60aa3946b7850db0a33ae287",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1163,8 +1179,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:16 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.9044761Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:45 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.4260057Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1173,19 +1189,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d97b030b60aa3946b7850db0a33ae287",
- "x-ms-request-id": "2075074e-b002-001b-2221-5aea7a000000",
+ "x-ms-request-id": "9b330a34-4002-002c-2e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablegoc9wtgt/@Element",
"odata.type": "chrissscratch.testtablegoc9wtgt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.9044761Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.4260057Z\u0027\u0022",
"odata.editLink": "testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"PartitionKey": "somPartition",
"RowKey": "15",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:16.9044761Z",
+ "Timestamp": "2020-07-17T22:08:46.4260057Z",
"SomeStringProperty": "This is table entity number 15",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:16:00Z",
@@ -1204,17 +1220,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-5f18eb4148c3d444a7642e2cf48cb4b0-05fafd84f7bbc348-00",
+ "traceparent": "00-b24c22a2ac94b741b69e9a1c8f3478ab-34b9ea42199ab947-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "548a1c5fbca01c54711c114f1f88c45a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1240,8 +1257,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:16 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.9495142Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:45 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.4710418Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1250,19 +1267,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "548a1c5fbca01c54711c114f1f88c45a",
- "x-ms-request-id": "20750763-b002-001b-3521-5aea7a000000",
+ "x-ms-request-id": "9b330a3c-4002-002c-3586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablegoc9wtgt/@Element",
"odata.type": "chrissscratch.testtablegoc9wtgt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.9495142Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.4710418Z\u0027\u0022",
"odata.editLink": "testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"PartitionKey": "somPartition",
"RowKey": "16",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:16.9495142Z",
+ "Timestamp": "2020-07-17T22:08:46.4710418Z",
"SomeStringProperty": "This is table entity number 16",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:17:00Z",
@@ -1281,17 +1298,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-36632f77d4f7c143a1af0a9009978690-cd503564e253ad4b-00",
+ "traceparent": "00-b4254b2f0040974788312c67bc3ad2f5-0a8268799dee3843-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "afcb001dfef9e8a6c1ce5acd492b8472",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1317,8 +1335,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:16 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.9945514Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:45 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.5180814Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1327,19 +1345,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "afcb001dfef9e8a6c1ce5acd492b8472",
- "x-ms-request-id": "2075076e-b002-001b-4021-5aea7a000000",
+ "x-ms-request-id": "9b330a43-4002-002c-3c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablegoc9wtgt/@Element",
"odata.type": "chrissscratch.testtablegoc9wtgt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.9945514Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.5180814Z\u0027\u0022",
"odata.editLink": "testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"PartitionKey": "somPartition",
"RowKey": "17",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:16.9945514Z",
+ "Timestamp": "2020-07-17T22:08:46.5180814Z",
"SomeStringProperty": "This is table entity number 17",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:18:00Z",
@@ -1358,17 +1376,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a16ef9a2cde36844af85743acbcc1629-e2164c4f319a5445-00",
+ "traceparent": "00-9a1b5efb84e76f4f8954ba307c55a220-d25ffa710741c947-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8238cdd3d0324f18ae5e678d4ff71a2e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1394,8 +1413,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:16 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A17.0355862Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:45 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.5691234Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1404,19 +1423,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "8238cdd3d0324f18ae5e678d4ff71a2e",
- "x-ms-request-id": "20750774-b002-001b-4621-5aea7a000000",
+ "x-ms-request-id": "9b330a48-4002-002c-4186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablegoc9wtgt/@Element",
"odata.type": "chrissscratch.testtablegoc9wtgt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A17.0355862Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.5691234Z\u0027\u0022",
"odata.editLink": "testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"PartitionKey": "somPartition",
"RowKey": "18",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:17.0355862Z",
+ "Timestamp": "2020-07-17T22:08:46.5691234Z",
"SomeStringProperty": "This is table entity number 18",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:19:00Z",
@@ -1435,17 +1454,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-62a34b4f88041f41b4d19a211115b057-f081426a7e0c9e47-00",
+ "traceparent": "00-f88a29da2176e142953546ca7c25a867-f09843b60a275046-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a393b2c0336e618d75a292d26287d345",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1471,8 +1491,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:16 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A17.0756201Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:45 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.6091571Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1481,19 +1501,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "a393b2c0336e618d75a292d26287d345",
- "x-ms-request-id": "2075077c-b002-001b-4e21-5aea7a000000",
+ "x-ms-request-id": "9b330a53-4002-002c-4a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablegoc9wtgt/@Element",
"odata.type": "chrissscratch.testtablegoc9wtgt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A17.0756201Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.6091571Z\u0027\u0022",
"odata.editLink": "testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"PartitionKey": "somPartition",
"RowKey": "19",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:17.0756201Z",
+ "Timestamp": "2020-07-17T22:08:46.6091571Z",
"SomeStringProperty": "This is table entity number 19",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:20:00Z",
@@ -1512,17 +1532,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a28929a33f6ac042b8cbdcaa256c4705-4f1ab81c5c9e7843-00",
+ "traceparent": "00-3155051db52c8c46b7374f0ec25810b7-36dd584a66454e42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "527b9e98424f4c28e77c009a961998ca",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1548,8 +1569,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:16 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A17.119656Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:45 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.6521929Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1558,19 +1579,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "527b9e98424f4c28e77c009a961998ca",
- "x-ms-request-id": "20750787-b002-001b-5721-5aea7a000000",
+ "x-ms-request-id": "9b330a5b-4002-002c-5286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablegoc9wtgt/@Element",
"odata.type": "chrissscratch.testtablegoc9wtgt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A17.119656Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.6521929Z\u0027\u0022",
"odata.editLink": "testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"PartitionKey": "somPartition",
"RowKey": "20",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:17.119656Z",
+ "Timestamp": "2020-07-17T22:08:46.6521929Z",
"SomeStringProperty": "This is table entity number 20",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:21:00Z",
@@ -1589,14 +1610,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20gt%20%2710%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "960c2bb4e197a0033fd70c903d46ed27",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1605,7 +1627,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:16 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:45 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1613,7 +1635,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "960c2bb4e197a0033fd70c903d46ed27",
- "x-ms-request-id": "2075078d-b002-001b-5d21-5aea7a000000",
+ "x-ms-request-id": "9b330a61-4002-002c-5786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1622,12 +1644,12 @@
{
"odata.type": "chrissscratch.testtablegoc9wtgt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.727328Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.245855Z\u0027\u0022",
"odata.editLink": "testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"PartitionKey": "somPartition",
"RowKey": "11",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:16.727328Z",
+ "Timestamp": "2020-07-17T22:08:46.245855Z",
"SomeStringProperty": "This is table entity number 11",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:12:00Z",
@@ -1644,12 +1666,12 @@
{
"odata.type": "chrissscratch.testtablegoc9wtgt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.7713648Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.2908929Z\u0027\u0022",
"odata.editLink": "testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"PartitionKey": "somPartition",
"RowKey": "12",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:16.7713648Z",
+ "Timestamp": "2020-07-17T22:08:46.2908929Z",
"SomeStringProperty": "This is table entity number 12",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:13:00Z",
@@ -1666,12 +1688,12 @@
{
"odata.type": "chrissscratch.testtablegoc9wtgt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.8154021Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.3359312Z\u0027\u0022",
"odata.editLink": "testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"PartitionKey": "somPartition",
"RowKey": "13",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:16.8154021Z",
+ "Timestamp": "2020-07-17T22:08:46.3359312Z",
"SomeStringProperty": "This is table entity number 13",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:14:00Z",
@@ -1688,12 +1710,12 @@
{
"odata.type": "chrissscratch.testtablegoc9wtgt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.8604393Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.3809686Z\u0027\u0022",
"odata.editLink": "testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"PartitionKey": "somPartition",
"RowKey": "14",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:16.8604393Z",
+ "Timestamp": "2020-07-17T22:08:46.3809686Z",
"SomeStringProperty": "This is table entity number 14",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:15:00Z",
@@ -1710,12 +1732,12 @@
{
"odata.type": "chrissscratch.testtablegoc9wtgt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.9044761Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.4260057Z\u0027\u0022",
"odata.editLink": "testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"PartitionKey": "somPartition",
"RowKey": "15",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:16.9044761Z",
+ "Timestamp": "2020-07-17T22:08:46.4260057Z",
"SomeStringProperty": "This is table entity number 15",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:16:00Z",
@@ -1732,12 +1754,12 @@
{
"odata.type": "chrissscratch.testtablegoc9wtgt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.9495142Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.4710418Z\u0027\u0022",
"odata.editLink": "testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"PartitionKey": "somPartition",
"RowKey": "16",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:16.9495142Z",
+ "Timestamp": "2020-07-17T22:08:46.4710418Z",
"SomeStringProperty": "This is table entity number 16",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:17:00Z",
@@ -1754,12 +1776,12 @@
{
"odata.type": "chrissscratch.testtablegoc9wtgt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A16.9945514Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.5180814Z\u0027\u0022",
"odata.editLink": "testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"PartitionKey": "somPartition",
"RowKey": "17",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:16.9945514Z",
+ "Timestamp": "2020-07-17T22:08:46.5180814Z",
"SomeStringProperty": "This is table entity number 17",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:18:00Z",
@@ -1776,12 +1798,12 @@
{
"odata.type": "chrissscratch.testtablegoc9wtgt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A17.0355862Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.5691234Z\u0027\u0022",
"odata.editLink": "testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"PartitionKey": "somPartition",
"RowKey": "18",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:17.0355862Z",
+ "Timestamp": "2020-07-17T22:08:46.5691234Z",
"SomeStringProperty": "This is table entity number 18",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:19:00Z",
@@ -1798,12 +1820,12 @@
{
"odata.type": "chrissscratch.testtablegoc9wtgt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A17.0756201Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.6091571Z\u0027\u0022",
"odata.editLink": "testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"PartitionKey": "somPartition",
"RowKey": "19",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:17.0756201Z",
+ "Timestamp": "2020-07-17T22:08:46.6091571Z",
"SomeStringProperty": "This is table entity number 19",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:20:00Z",
@@ -1820,12 +1842,12 @@
{
"odata.type": "chrissscratch.testtablegoc9wtgt",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A17.119656Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A46.6521929Z\u0027\u0022",
"odata.editLink": "testtablegoc9wtgt(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"PartitionKey": "somPartition",
"RowKey": "20",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:17.119656Z",
+ "Timestamp": "2020-07-17T22:08:46.6521929Z",
"SomeStringProperty": "This is table entity number 20",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:21:00Z",
@@ -1848,13 +1870,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-551423d0535a8144952a1e2aa766f671-5ae640076df8d744-00",
+ "traceparent": "00-734afc24774bac4daa052fff76524dff-f1d09cfcdf237c4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b0f4228bc77b7ede8a46bbf232f3ca5c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1863,14 +1885,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:46 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "b0f4228bc77b7ede8a46bbf232f3ca5c",
- "x-ms-request-id": "207507a7-b002-001b-7521-5aea7a000000",
+ "x-ms-request-id": "9b330a78-4002-002c-6d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedEntitiesCanBeQueriedWithFiltersAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedEntitiesCanBeQueriedWithFiltersAsync.json
index ebe8fe5170f7..6a026efa2b8c 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedEntitiesCanBeQueriedWithFiltersAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CreatedEntitiesCanBeQueriedWithFiltersAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-98e3f5145eaf7747add5a589e809509d-77f30fd5bab14b45-00",
+ "traceparent": "00-4a8ffb73d9f4b04c80e20f51257ea835-1d34df7a42ef424f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "71a2266425d05a1ef2835109c67c68e3",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:58 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:39 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:57 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable4nc4jk26\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "71a2266425d05a1ef2835109c67c68e3",
- "x-ms-request-id": "20751e97-b002-001b-1021-5aea7a000000",
+ "x-ms-request-id": "9b331408-4002-002c-1086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e8b417b1fcaa6c4c98c38c3ba4275134-0119e606d9157d4e-00",
+ "traceparent": "00-20d84750c0e63742970f760328eb2f9d-6b3fe883913a3b40-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a191d3185dd0548bc4254125dc18703d",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:58 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -85,8 +87,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:39 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.86258Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:57 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.7432598Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -95,19 +97,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "a191d3185dd0548bc4254125dc18703d",
- "x-ms-request-id": "20751e9e-b002-001b-1621-5aea7a000000",
+ "x-ms-request-id": "9b33141a-4002-002c-2186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable4nc4jk26/@Element",
"odata.type": "chrissscratch.testtable4nc4jk26",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.86258Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.7432598Z\u0027\u0022",
"odata.editLink": "testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:39.86258Z",
+ "Timestamp": "2020-07-17T22:08:58.7432598Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:02:00Z",
@@ -126,17 +128,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-fe5afc20c9ba8f42a162fa819ab79e9c-33a909c2d327da42-00",
+ "traceparent": "00-c0178bed5ad0674682827d188b632462-2493f8730556c84d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8ef858682b1fb5ee9269fb74fe5a8692",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:58 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -162,8 +165,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:39 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.9046149Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:57 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.7872967Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -172,19 +175,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "8ef858682b1fb5ee9269fb74fe5a8692",
- "x-ms-request-id": "20751eac-b002-001b-2321-5aea7a000000",
+ "x-ms-request-id": "9b331426-4002-002c-2a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable4nc4jk26/@Element",
"odata.type": "chrissscratch.testtable4nc4jk26",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.9046149Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.7872967Z\u0027\u0022",
"odata.editLink": "testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"PartitionKey": "somPartition",
"RowKey": "02",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:39.9046149Z",
+ "Timestamp": "2020-07-17T22:08:58.7872967Z",
"SomeStringProperty": "This is table entity number 02",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:03:00Z",
@@ -203,17 +206,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8f6236bf15e4a34793deb037bcdf6a29-ee22dd42a7458240-00",
+ "traceparent": "00-d4361998d044464e99b90762f5a351d0-9952483a6254494a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "778ce57678e706e29a4eadaae3f97dd9",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:58 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -239,8 +243,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:39 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.9506527Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:58 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.8293319Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -249,19 +253,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "778ce57678e706e29a4eadaae3f97dd9",
- "x-ms-request-id": "20751eb7-b002-001b-2e21-5aea7a000000",
+ "x-ms-request-id": "9b331432-4002-002c-3686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable4nc4jk26/@Element",
"odata.type": "chrissscratch.testtable4nc4jk26",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.9506527Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.8293319Z\u0027\u0022",
"odata.editLink": "testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"PartitionKey": "somPartition",
"RowKey": "03",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:39.9506527Z",
+ "Timestamp": "2020-07-17T22:08:58.8293319Z",
"SomeStringProperty": "This is table entity number 03",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:04:00Z",
@@ -280,17 +284,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-96075e0f0be4ee4c878b7318aa9dc8ab-af67c51293951649-00",
+ "traceparent": "00-5c36f62d59115e43b2148478cafaae51-0d1ba8925099144b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6ea11412da84edc3e4dc0e6661175569",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:58 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -316,8 +321,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:39 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.9966909Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:58 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.8763722Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -326,19 +331,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "6ea11412da84edc3e4dc0e6661175569",
- "x-ms-request-id": "20751ec4-b002-001b-3a21-5aea7a000000",
+ "x-ms-request-id": "9b331439-4002-002c-3d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable4nc4jk26/@Element",
"odata.type": "chrissscratch.testtable4nc4jk26",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A39.9966909Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.8763722Z\u0027\u0022",
"odata.editLink": "testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"PartitionKey": "somPartition",
"RowKey": "04",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:39.9966909Z",
+ "Timestamp": "2020-07-17T22:08:58.8763722Z",
"SomeStringProperty": "This is table entity number 04",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:05:00Z",
@@ -357,17 +362,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-b577b9bfaa38cd4695a7a3cf618049bb-2737e1df901bcb45-00",
+ "traceparent": "00-baf0593093ae084cb18fbadaabfda87a-1e5d70b22c8ebe41-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f7aeae9ef98cef5675f1f4d17d43d199",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:58 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -393,8 +399,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:39 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.0487341Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:58 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.9314178Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -403,19 +409,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f7aeae9ef98cef5675f1f4d17d43d199",
- "x-ms-request-id": "20751ecf-b002-001b-4321-5aea7a000000",
+ "x-ms-request-id": "9b331445-4002-002c-4986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable4nc4jk26/@Element",
"odata.type": "chrissscratch.testtable4nc4jk26",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.0487341Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.9314178Z\u0027\u0022",
"odata.editLink": "testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"PartitionKey": "somPartition",
"RowKey": "05",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:40.0487341Z",
+ "Timestamp": "2020-07-17T22:08:58.9314178Z",
"SomeStringProperty": "This is table entity number 05",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:06:00Z",
@@ -434,17 +440,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-41f43686f2624d4cad143d4eb85dbab2-4757d0b84db6df45-00",
+ "traceparent": "00-6e4947333161ea4e918ce87299a93f60-ed80bfa8ec8f1b4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ea6121ec18b99c0e229e920a697ca582",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -470,8 +477,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:39 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.096774Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:58 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.9784564Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -480,19 +487,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ea6121ec18b99c0e229e920a697ca582",
- "x-ms-request-id": "20751eee-b002-001b-5c21-5aea7a000000",
+ "x-ms-request-id": "9b33144e-4002-002c-5286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable4nc4jk26/@Element",
"odata.type": "chrissscratch.testtable4nc4jk26",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.096774Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A58.9784564Z\u0027\u0022",
"odata.editLink": "testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"PartitionKey": "somPartition",
"RowKey": "06",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:40.096774Z",
+ "Timestamp": "2020-07-17T22:08:58.9784564Z",
"SomeStringProperty": "This is table entity number 06",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:07:00Z",
@@ -511,17 +518,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-5fb4e58eb4f98e4ca3029165baf0c699-e67cbf19aa0e314c-00",
+ "traceparent": "00-eb807cee64ec924bb34014b6f4b11e61-1bacdcad93029e46-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "350c43f8864a184cbdb1f893e5f16fa1",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -547,8 +555,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:39 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.1408114Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:58 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.026497Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -557,19 +565,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "350c43f8864a184cbdb1f893e5f16fa1",
- "x-ms-request-id": "20751ef5-b002-001b-6321-5aea7a000000",
+ "x-ms-request-id": "9b331454-4002-002c-5886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable4nc4jk26/@Element",
"odata.type": "chrissscratch.testtable4nc4jk26",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.1408114Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.026497Z\u0027\u0022",
"odata.editLink": "testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"PartitionKey": "somPartition",
"RowKey": "07",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:40.1408114Z",
+ "Timestamp": "2020-07-17T22:08:59.026497Z",
"SomeStringProperty": "This is table entity number 07",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:08:00Z",
@@ -588,17 +596,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6a9ccbbde75ae74c890af5eea13464c3-6176f96678287c4a-00",
+ "traceparent": "00-beade1f2ea1132498a3243cc04a0f7cb-e08838f26fd7504e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4079750b6ab685b0a012d4ee674b85f9",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -624,8 +633,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:39 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.1938554Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:58 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.0725356Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -634,19 +643,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "4079750b6ab685b0a012d4ee674b85f9",
- "x-ms-request-id": "20751f00-b002-001b-6e21-5aea7a000000",
+ "x-ms-request-id": "9b331459-4002-002c-5d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable4nc4jk26/@Element",
"odata.type": "chrissscratch.testtable4nc4jk26",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.1938554Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.0725356Z\u0027\u0022",
"odata.editLink": "testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"PartitionKey": "somPartition",
"RowKey": "08",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:40.1938554Z",
+ "Timestamp": "2020-07-17T22:08:59.0725356Z",
"SomeStringProperty": "This is table entity number 08",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:09:00Z",
@@ -665,17 +674,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-103c5d913eb06f43bc572fd63d271fb3-965316b2a43cfc43-00",
+ "traceparent": "00-b06d7ec9a57d9a48902074bafc04157b-096ae21de4023045-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3ad8714c9b37664ed5492c07207ab630",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -701,8 +711,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:40 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.2358895Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:58 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.1165742Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -711,19 +721,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "3ad8714c9b37664ed5492c07207ab630",
- "x-ms-request-id": "20751f09-b002-001b-7721-5aea7a000000",
+ "x-ms-request-id": "9b331466-4002-002c-6a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable4nc4jk26/@Element",
"odata.type": "chrissscratch.testtable4nc4jk26",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.2358895Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.1165742Z\u0027\u0022",
"odata.editLink": "testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"PartitionKey": "somPartition",
"RowKey": "09",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:40.2358895Z",
+ "Timestamp": "2020-07-17T22:08:59.1165742Z",
"SomeStringProperty": "This is table entity number 09",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:10:00Z",
@@ -742,17 +752,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-70c89dc31df7734e91873e3d136c28f6-31b9d1a087bdf74d-00",
+ "traceparent": "00-8289141e1c1b974c8c8716b6ad87eda8-5b140893e5482840-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f4fff12e64028dcc93869437b15eb172",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -778,8 +789,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:40 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.278926Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:58 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.1586081Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -788,19 +799,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f4fff12e64028dcc93869437b15eb172",
- "x-ms-request-id": "20751f18-b002-001b-0521-5aea7a000000",
+ "x-ms-request-id": "9b331471-4002-002c-7586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable4nc4jk26/@Element",
"odata.type": "chrissscratch.testtable4nc4jk26",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.278926Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.1586081Z\u0027\u0022",
"odata.editLink": "testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"PartitionKey": "somPartition",
"RowKey": "10",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:40.278926Z",
+ "Timestamp": "2020-07-17T22:08:59.1586081Z",
"SomeStringProperty": "This is table entity number 10",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:11:00Z",
@@ -819,17 +830,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-5bdc92a0290a4e479ea6a20d1fa3eaa0-8e0003c15c38674c-00",
+ "traceparent": "00-91335bfb7da0b3419d1a083a9d5311df-6873bc1cbc6da247-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7447ff2b35186f6926136a6c3ea86525",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -855,8 +867,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:40 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.3229622Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:58 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.2036454Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -865,19 +877,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "7447ff2b35186f6926136a6c3ea86525",
- "x-ms-request-id": "20751f24-b002-001b-1021-5aea7a000000",
+ "x-ms-request-id": "9b33147e-4002-002c-0286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable4nc4jk26/@Element",
"odata.type": "chrissscratch.testtable4nc4jk26",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.3229622Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.2036454Z\u0027\u0022",
"odata.editLink": "testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"PartitionKey": "somPartition",
"RowKey": "11",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:40.3229622Z",
+ "Timestamp": "2020-07-17T22:08:59.2036454Z",
"SomeStringProperty": "This is table entity number 11",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:12:00Z",
@@ -896,17 +908,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-30a42c2af42c6c49953d6a6a0050928f-36500509f73f5d49-00",
+ "traceparent": "00-c915049e64eff94483f56f1eb0a54b56-97bbd32e00541c4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "75bfa45c914be7f6a44aa6b00716b576",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -932,8 +945,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:40 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.368Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:58 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.2436793Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -942,19 +955,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "75bfa45c914be7f6a44aa6b00716b576",
- "x-ms-request-id": "20751f31-b002-001b-1d21-5aea7a000000",
+ "x-ms-request-id": "9b331489-4002-002c-0b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable4nc4jk26/@Element",
"odata.type": "chrissscratch.testtable4nc4jk26",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.368Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.2436793Z\u0027\u0022",
"odata.editLink": "testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"PartitionKey": "somPartition",
"RowKey": "12",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:40.368Z",
+ "Timestamp": "2020-07-17T22:08:59.2436793Z",
"SomeStringProperty": "This is table entity number 12",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:13:00Z",
@@ -973,17 +986,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a37016c04ddf6244b398ae40348c1e86-e5637fa8ba660649-00",
+ "traceparent": "00-08147145391dc841a03138a6b40dacd0-1216d397bfccbb4d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "20dcba984133f9178790cdeffa5f4fea",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1009,8 +1023,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:40 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.4120357Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:58 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.2907183Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1019,19 +1033,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "20dcba984133f9178790cdeffa5f4fea",
- "x-ms-request-id": "20751f3d-b002-001b-2921-5aea7a000000",
+ "x-ms-request-id": "9b331494-4002-002c-1686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable4nc4jk26/@Element",
"odata.type": "chrissscratch.testtable4nc4jk26",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.4120357Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.2907183Z\u0027\u0022",
"odata.editLink": "testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"PartitionKey": "somPartition",
"RowKey": "13",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:40.4120357Z",
+ "Timestamp": "2020-07-17T22:08:59.2907183Z",
"SomeStringProperty": "This is table entity number 13",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:14:00Z",
@@ -1050,17 +1064,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-3ea3564cf239c64ca24cebede7276cb6-8bc932d2407a9e45-00",
+ "traceparent": "00-145e2545576a9543b08cf3c2f9389474-9fa875d904fb6c4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0cdb6e203b9e9a26095fcfcd8eb8680f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1086,8 +1101,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:40 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.4830955Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:58 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.3367577Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1096,19 +1111,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0cdb6e203b9e9a26095fcfcd8eb8680f",
- "x-ms-request-id": "20751f4f-b002-001b-3a21-5aea7a000000",
+ "x-ms-request-id": "9b3314a1-4002-002c-2186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable4nc4jk26/@Element",
"odata.type": "chrissscratch.testtable4nc4jk26",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.4830955Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.3367577Z\u0027\u0022",
"odata.editLink": "testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"PartitionKey": "somPartition",
"RowKey": "14",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:40.4830955Z",
+ "Timestamp": "2020-07-17T22:08:59.3367577Z",
"SomeStringProperty": "This is table entity number 14",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:15:00Z",
@@ -1127,17 +1142,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "603",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e830653e5d79c44783b710517a2811f4-76d600b117cff04f-00",
+ "traceparent": "00-3bec7b424be2f740991addf5426b9ee8-acbe1c90bb820741-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "83d4f45e45cc1af28dc6eebbc306ed44",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1163,8 +1179,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:40 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.5271317Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:58 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.3797927Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1173,19 +1189,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "83d4f45e45cc1af28dc6eebbc306ed44",
- "x-ms-request-id": "20751f63-b002-001b-4e21-5aea7a000000",
+ "x-ms-request-id": "9b3314a7-4002-002c-2786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable4nc4jk26/@Element",
"odata.type": "chrissscratch.testtable4nc4jk26",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.5271317Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.3797927Z\u0027\u0022",
"odata.editLink": "testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"PartitionKey": "somPartition",
"RowKey": "15",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:40.5271317Z",
+ "Timestamp": "2020-07-17T22:08:59.3797927Z",
"SomeStringProperty": "This is table entity number 15",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:16:00Z",
@@ -1204,17 +1220,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1544932b2b556d42a8df1a4ff0603d80-d1dfa7465af72840-00",
+ "traceparent": "00-3afcc0dcdbbee94abc8855c38428cdfa-6de159d4c4ff4048-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9890bbfba83b5cd8944117d371496ace",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1240,8 +1257,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:40 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.5721695Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:58 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.4368397Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1250,19 +1267,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "9890bbfba83b5cd8944117d371496ace",
- "x-ms-request-id": "20751f64-b002-001b-4f21-5aea7a000000",
+ "x-ms-request-id": "9b3314b4-4002-002c-3286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable4nc4jk26/@Element",
"odata.type": "chrissscratch.testtable4nc4jk26",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.5721695Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.4368397Z\u0027\u0022",
"odata.editLink": "testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"PartitionKey": "somPartition",
"RowKey": "16",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:40.5721695Z",
+ "Timestamp": "2020-07-17T22:08:59.4368397Z",
"SomeStringProperty": "This is table entity number 16",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:17:00Z",
@@ -1281,17 +1298,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-5e48bf3ebd6f13449898b00d9b09d518-c523a0d140002f4e-00",
+ "traceparent": "00-b5737cf2775f924d8c2ddb2007aa54ad-262c636049edad4b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0591bd28cc8bdb1e7cc17fd84d6ad602",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1317,8 +1335,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:40 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.6182077Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:58 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.4808763Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1327,19 +1345,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0591bd28cc8bdb1e7cc17fd84d6ad602",
- "x-ms-request-id": "20751f75-b002-001b-5e21-5aea7a000000",
+ "x-ms-request-id": "9b3314ba-4002-002c-3886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable4nc4jk26/@Element",
"odata.type": "chrissscratch.testtable4nc4jk26",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.6182077Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.4808763Z\u0027\u0022",
"odata.editLink": "testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"PartitionKey": "somPartition",
"RowKey": "17",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:40.6182077Z",
+ "Timestamp": "2020-07-17T22:08:59.4808763Z",
"SomeStringProperty": "This is table entity number 17",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:18:00Z",
@@ -1358,17 +1376,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e7421d0f4a77f04bbef66d1f19327f2e-6552ba9a7498284b-00",
+ "traceparent": "00-8b97f58535f9ff44b735ce9222fbe87f-5caa0c4894723344-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d3d28b72cf28b5d41c78ef8a2d1ea843",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1394,8 +1413,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:40 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.6712509Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:58 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.5219113Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1404,19 +1423,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d3d28b72cf28b5d41c78ef8a2d1ea843",
- "x-ms-request-id": "20751f7e-b002-001b-6721-5aea7a000000",
+ "x-ms-request-id": "9b3314be-4002-002c-3c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable4nc4jk26/@Element",
"odata.type": "chrissscratch.testtable4nc4jk26",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.6712509Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.5219113Z\u0027\u0022",
"odata.editLink": "testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"PartitionKey": "somPartition",
"RowKey": "18",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:40.6712509Z",
+ "Timestamp": "2020-07-17T22:08:59.5219113Z",
"SomeStringProperty": "This is table entity number 18",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:19:00Z",
@@ -1435,17 +1454,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f083d4822ce7ad4eb643087a7aa7b410-768b5b85b2486841-00",
+ "traceparent": "00-de7545b820c3504486cb20cb750b9e69-033a145819e66545-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "05931f5be7752fb99db41b7a28ff0f29",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1471,8 +1491,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:40 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.7152883Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:58 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.5669487Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1481,19 +1501,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "05931f5be7752fb99db41b7a28ff0f29",
- "x-ms-request-id": "20751f84-b002-001b-6d21-5aea7a000000",
+ "x-ms-request-id": "9b3314c5-4002-002c-4386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable4nc4jk26/@Element",
"odata.type": "chrissscratch.testtable4nc4jk26",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.7152883Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.5669487Z\u0027\u0022",
"odata.editLink": "testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"PartitionKey": "somPartition",
"RowKey": "19",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:40.7152883Z",
+ "Timestamp": "2020-07-17T22:08:59.5669487Z",
"SomeStringProperty": "This is table entity number 19",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:20:00Z",
@@ -1512,17 +1532,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "617",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-5774245571d6b945b0c82d865cb928d1-2fb6dcf02969f84a-00",
+ "traceparent": "00-bf19cf1d285bc64fb219fd9b212c64a5-e475540c427dc340-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e661156b977658a6e9dbe913dc93ae5e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1548,8 +1569,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:40 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.7613261Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:58 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.6129866Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1558,19 +1579,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "e661156b977658a6e9dbe913dc93ae5e",
- "x-ms-request-id": "20751f8c-b002-001b-7421-5aea7a000000",
+ "x-ms-request-id": "9b3314d1-4002-002c-4f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable4nc4jk26/@Element",
"odata.type": "chrissscratch.testtable4nc4jk26",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.7613261Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.6129866Z\u0027\u0022",
"odata.editLink": "testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"PartitionKey": "somPartition",
"RowKey": "20",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:40.7613261Z",
+ "Timestamp": "2020-07-17T22:08:59.6129866Z",
"SomeStringProperty": "This is table entity number 20",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:21:00Z",
@@ -1589,14 +1610,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20gt%20%2710%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2d7c3b18d0d78a8cd1a33673b35a8d1c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1605,7 +1627,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:40 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:58 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1613,7 +1635,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "2d7c3b18d0d78a8cd1a33673b35a8d1c",
- "x-ms-request-id": "20751f98-b002-001b-8021-5aea7a000000",
+ "x-ms-request-id": "9b3314d8-4002-002c-5686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1622,12 +1644,12 @@
{
"odata.type": "chrissscratch.testtable4nc4jk26",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.3229622Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.2036454Z\u0027\u0022",
"odata.editLink": "testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"PartitionKey": "somPartition",
"RowKey": "11",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:40.3229622Z",
+ "Timestamp": "2020-07-17T22:08:59.2036454Z",
"SomeStringProperty": "This is table entity number 11",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:12:00Z",
@@ -1644,12 +1666,12 @@
{
"odata.type": "chrissscratch.testtable4nc4jk26",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.368Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.2436793Z\u0027\u0022",
"odata.editLink": "testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"PartitionKey": "somPartition",
"RowKey": "12",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:40.368Z",
+ "Timestamp": "2020-07-17T22:08:59.2436793Z",
"SomeStringProperty": "This is table entity number 12",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:13:00Z",
@@ -1666,12 +1688,12 @@
{
"odata.type": "chrissscratch.testtable4nc4jk26",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.4120357Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.2907183Z\u0027\u0022",
"odata.editLink": "testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"PartitionKey": "somPartition",
"RowKey": "13",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:40.4120357Z",
+ "Timestamp": "2020-07-17T22:08:59.2907183Z",
"SomeStringProperty": "This is table entity number 13",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:14:00Z",
@@ -1688,12 +1710,12 @@
{
"odata.type": "chrissscratch.testtable4nc4jk26",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.4830955Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.3367577Z\u0027\u0022",
"odata.editLink": "testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"PartitionKey": "somPartition",
"RowKey": "14",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:40.4830955Z",
+ "Timestamp": "2020-07-17T22:08:59.3367577Z",
"SomeStringProperty": "This is table entity number 14",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:15:00Z",
@@ -1710,12 +1732,12 @@
{
"odata.type": "chrissscratch.testtable4nc4jk26",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.5271317Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.3797927Z\u0027\u0022",
"odata.editLink": "testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"PartitionKey": "somPartition",
"RowKey": "15",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:40.5271317Z",
+ "Timestamp": "2020-07-17T22:08:59.3797927Z",
"SomeStringProperty": "This is table entity number 15",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:16:00Z",
@@ -1732,12 +1754,12 @@
{
"odata.type": "chrissscratch.testtable4nc4jk26",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.5721695Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.4368397Z\u0027\u0022",
"odata.editLink": "testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"PartitionKey": "somPartition",
"RowKey": "16",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:40.5721695Z",
+ "Timestamp": "2020-07-17T22:08:59.4368397Z",
"SomeStringProperty": "This is table entity number 16",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:17:00Z",
@@ -1754,12 +1776,12 @@
{
"odata.type": "chrissscratch.testtable4nc4jk26",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.6182077Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.4808763Z\u0027\u0022",
"odata.editLink": "testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"PartitionKey": "somPartition",
"RowKey": "17",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:40.6182077Z",
+ "Timestamp": "2020-07-17T22:08:59.4808763Z",
"SomeStringProperty": "This is table entity number 17",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:18:00Z",
@@ -1776,12 +1798,12 @@
{
"odata.type": "chrissscratch.testtable4nc4jk26",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.6712509Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.5219113Z\u0027\u0022",
"odata.editLink": "testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"PartitionKey": "somPartition",
"RowKey": "18",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:40.6712509Z",
+ "Timestamp": "2020-07-17T22:08:59.5219113Z",
"SomeStringProperty": "This is table entity number 18",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:19:00Z",
@@ -1798,12 +1820,12 @@
{
"odata.type": "chrissscratch.testtable4nc4jk26",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.7152883Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.5669487Z\u0027\u0022",
"odata.editLink": "testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"PartitionKey": "somPartition",
"RowKey": "19",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:40.7152883Z",
+ "Timestamp": "2020-07-17T22:08:59.5669487Z",
"SomeStringProperty": "This is table entity number 19",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:20:00Z",
@@ -1820,12 +1842,12 @@
{
"odata.type": "chrissscratch.testtable4nc4jk26",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A40.7613261Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A59.6129866Z\u0027\u0022",
"odata.editLink": "testtable4nc4jk26(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"PartitionKey": "somPartition",
"RowKey": "20",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:40.7613261Z",
+ "Timestamp": "2020-07-17T22:08:59.6129866Z",
"SomeStringProperty": "This is table entity number 20",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:21:00Z",
@@ -1848,13 +1870,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-ddb9a9734856664eaa7b4805c89dd173-d7e3dd3e311f7348-00",
+ "traceparent": "00-e2935e4f20f73f429f9b4bb22a7d97d7-674256d7e967254e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "171ec568c1bcc4cc783a1c9afda65209",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1863,14 +1885,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:40 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:58 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "171ec568c1bcc4cc783a1c9afda65209",
- "x-ms-request-id": "20751f9c-b002-001b-0421-5aea7a000000",
+ "x-ms-request-id": "9b3314f5-4002-002c-6f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CustomEntityCanBeUpserted.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CustomEntityCanBeUpserted.json
index 8f1bdcbc502d..4bd9a701d345 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CustomEntityCanBeUpserted.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CustomEntityCanBeUpserted.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-87b7fe6e15543947a8e239b2bfb8d682-8b345a89336d1e4e-00",
+ "traceparent": "00-9cdf0dffe13ea945a926e70f483555be-36f050fa414d5443-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7039af77780e68f7c2408fdd6089e1c2",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:47 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:46 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable4k2syqpc\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "7039af77780e68f7c2408fdd6089e1c2",
- "x-ms-request-id": "207507e4-b002-001b-2d21-5aea7a000000",
+ "x-ms-request-id": "9b330a9b-4002-002c-0f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable4k2syqpc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "181",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-c3297f53edcb17428d22aae65ccd6796-2706e7f936988f4c-00",
+ "traceparent": "00-f7a5e3c3a461244f8ce0089e59fe6019-636c319761972b46-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ac9184176d97737699ac85f473bac456",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:47 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -75,15 +77,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:17 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A17.5329397Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:46 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A47.0965619Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ac9184176d97737699ac85f473bac456",
- "x-ms-request-id": "207507f4-b002-001b-3b21-5aea7a000000",
+ "x-ms-request-id": "9b330aaa-4002-002c-1a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -92,14 +94,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable4k2syqpc()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e56606a342a71daa4c90afe3b9cb14b8",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:47 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -108,7 +111,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:46 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -116,7 +119,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "e56606a342a71daa4c90afe3b9cb14b8",
- "x-ms-request-id": "207507f9-b002-001b-4021-5aea7a000000",
+ "x-ms-request-id": "9b330ab9-4002-002c-2986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -125,12 +128,12 @@
{
"odata.type": "chrissscratch.testtable4k2syqpc",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable4k2syqpc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A17.5329397Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A47.0965619Z\u0027\u0022",
"odata.editLink": "testtable4k2syqpc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:17.5329397Z",
+ "Timestamp": "2020-07-17T22:08:47.0965619Z",
"StringTypeProperty": "This is the original"
}
]
@@ -140,29 +143,30 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable4k2syqpc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "580",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-b12b02de87008f41a725241d44cf587b-0c9271f3bab87549-00",
+ "traceparent": "00-6bd7e331161be3458386831fdf099cfe-6f640415e34e8342-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "bb9d81472c1a42dfc3fc74cc72744e86",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:47 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
"odata.type": "chrissscratch.testtable4k2syqpc",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable4k2syqpc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A17.5329397Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A47.0965619Z\u0027\u0022",
"odata.editLink": "testtable4k2syqpc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"SomeStringProperty": "This is new and improved!",
- "Timestamp": "2020-07-14T20:56:17.5329397Z",
+ "Timestamp": "2020-07-17T22:08:47.0965619Z",
"Timestamp@odata.type": "Edm.DateTime",
"StringTypeProperty": "This is the original"
},
@@ -170,15 +174,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:17 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A17.615008Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:46 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A47.1946443Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "bb9d81472c1a42dfc3fc74cc72744e86",
- "x-ms-request-id": "20750800-b002-001b-4621-5aea7a000000",
+ "x-ms-request-id": "9b330ac9-4002-002c-3786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -187,14 +191,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable4k2syqpc()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "83bd86cbdc7bd45eda735f07bd92bace",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:47 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -203,7 +208,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:46 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -211,7 +216,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "83bd86cbdc7bd45eda735f07bd92bace",
- "x-ms-request-id": "20750805-b002-001b-4b21-5aea7a000000",
+ "x-ms-request-id": "9b330adc-4002-002c-4886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -220,12 +225,12 @@
{
"odata.type": "chrissscratch.testtable4k2syqpc",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable4k2syqpc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A17.615008Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A47.1946443Z\u0027\u0022",
"odata.editLink": "testtable4k2syqpc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:17.615008Z",
+ "Timestamp": "2020-07-17T22:08:47.1946443Z",
"SomeStringProperty": "This is new and improved!",
"StringTypeProperty": "This is the original"
}
@@ -238,13 +243,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-8e2c95ca250d9e4392982283a8be3022-52febbed172bc14e-00",
+ "traceparent": "00-302ddbcbf320f6419a1aeea055a26cc4-cf5b908c2548154b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f1accc98081c763c262322aacddeabd8",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:47 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -253,14 +258,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:46 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f1accc98081c763c262322aacddeabd8",
- "x-ms-request-id": "2075080f-b002-001b-5521-5aea7a000000",
+ "x-ms-request-id": "9b330ae0-4002-002c-4c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CustomEntityCanBeUpsertedAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CustomEntityCanBeUpsertedAsync.json
index f6905102f4f9..717db8f609ce 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CustomEntityCanBeUpsertedAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CustomEntityCanBeUpsertedAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-abddd0985792e84c9e994f08dac3578f-33c8faf11879a744-00",
+ "traceparent": "00-3ba290740609eb4eb411ee1dbc89b765-6dcba9424bd95344-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5793850e2f98ebce6b1d792ca456bcaa",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:40 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:59 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable06k6etuo\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "5793850e2f98ebce6b1d792ca456bcaa",
- "x-ms-request-id": "20751fc9-b002-001b-2f21-5aea7a000000",
+ "x-ms-request-id": "9b331523-4002-002c-1886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable06k6etuo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "181",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-0ca3d762d1bfb14e9e8638ddb83cb19f-bf05c6aca1ea504a-00",
+ "traceparent": "00-9db2c13f0b1b4d4faa28222489e80d8f-56fb28b67e9a0e41-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d3ca6398b547781bab014b7bf062f85d",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -75,15 +77,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:40 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A41.1946348Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:59 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A00.0403419Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d3ca6398b547781bab014b7bf062f85d",
- "x-ms-request-id": "20751fcf-b002-001b-3421-5aea7a000000",
+ "x-ms-request-id": "9b33152e-4002-002c-2186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -92,14 +94,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable06k6etuo()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5f43ce637257892e55d72ad9f76de4ef",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -108,7 +111,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:59 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -116,7 +119,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "5f43ce637257892e55d72ad9f76de4ef",
- "x-ms-request-id": "20751fd8-b002-001b-3d21-5aea7a000000",
+ "x-ms-request-id": "9b33153c-4002-002c-2c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -125,12 +128,12 @@
{
"odata.type": "chrissscratch.testtable06k6etuo",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable06k6etuo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A41.1946348Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A00.0403419Z\u0027\u0022",
"odata.editLink": "testtable06k6etuo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:41.1946348Z",
+ "Timestamp": "2020-07-17T22:09:00.0403419Z",
"StringTypeProperty": "This is the original"
}
]
@@ -140,29 +143,30 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable06k6etuo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "580",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-937123502c8ea847a18cd9f8bd214680-ee43820a1755654f-00",
+ "traceparent": "00-23bbde51046e32438af50cced510bf76-21e997f533203f45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "cf2cb41dde8bd0c778dfed2d826f7abb",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
"odata.type": "chrissscratch.testtable06k6etuo",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable06k6etuo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A41.1946348Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A00.0403419Z\u0027\u0022",
"odata.editLink": "testtable06k6etuo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"SomeStringProperty": "This is new and improved!",
- "Timestamp": "2020-07-14T20:56:41.1946348Z",
+ "Timestamp": "2020-07-17T22:09:00.0403419Z",
"Timestamp@odata.type": "Edm.DateTime",
"StringTypeProperty": "This is the original"
},
@@ -170,15 +174,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:41 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A41.2716985Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:59 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A00.1224105Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "cf2cb41dde8bd0c778dfed2d826f7abb",
- "x-ms-request-id": "20751fe1-b002-001b-4621-5aea7a000000",
+ "x-ms-request-id": "9b331546-4002-002c-3686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -187,14 +191,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable06k6etuo()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8741cf804a78251f35417e6f8b41803e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -203,7 +208,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:59 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -211,7 +216,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "8741cf804a78251f35417e6f8b41803e",
- "x-ms-request-id": "20751fe4-b002-001b-4921-5aea7a000000",
+ "x-ms-request-id": "9b331551-4002-002c-4186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -220,12 +225,12 @@
{
"odata.type": "chrissscratch.testtable06k6etuo",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable06k6etuo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A41.2716985Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A00.1224105Z\u0027\u0022",
"odata.editLink": "testtable06k6etuo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:41.2716985Z",
+ "Timestamp": "2020-07-17T22:09:00.1224105Z",
"SomeStringProperty": "This is new and improved!",
"StringTypeProperty": "This is the original"
}
@@ -238,13 +243,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-9bb5d9522c3b4741b87d445e923f13f6-7dfb4dd3ee34f44e-00",
+ "traceparent": "00-371a41acaf53074e932bd5da328269b0-735fcbdb3101f145-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3b5d5c1c293584d10773e777850006e5",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -253,14 +258,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:59 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "3b5d5c1c293584d10773e777850006e5",
- "x-ms-request-id": "20751fe9-b002-001b-4e21-5aea7a000000",
+ "x-ms-request-id": "9b33155b-4002-002c-4b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CustomEntityDeleteRespectsEtag.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CustomEntityDeleteRespectsEtag.json
index 8971984a4644..50f02b49f471 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CustomEntityDeleteRespectsEtag.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CustomEntityDeleteRespectsEtag.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f113f1bc90d3524493ee57ba839b73f5-2380d560c3275045-00",
+ "traceparent": "00-4197403b57a1c140a308444f76248761-19f633f34564b948-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e4a2ee3662f1ed2fea214223fbd64a16",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:47 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:46 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable7ozm26y8\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "e4a2ee3662f1ed2fea214223fbd64a16",
- "x-ms-request-id": "20750819-b002-001b-5f21-5aea7a000000",
+ "x-ms-request-id": "9b330af8-4002-002c-6286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable7ozm26y8(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "181",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-f0196664cac6464baf3aefdfaa4ed3d0-6ec0e54cf3c97b43-00",
+ "traceparent": "00-f6412747a87a9e4aa4e9c55763ef8127-085c8886254eb248-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d8f33a58f6779a3c802538818f89f428",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:47 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -75,15 +77,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:17 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A17.794157Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:46 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A47.4228345Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d8f33a58f6779a3c802538818f89f428",
- "x-ms-request-id": "2075081f-b002-001b-6321-5aea7a000000",
+ "x-ms-request-id": "9b330b03-4002-002c-6c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -92,14 +94,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable7ozm26y8()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "fca9ec7829866a3da9f2f09441734c11",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:47 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -108,7 +111,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:46 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -116,7 +119,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "fca9ec7829866a3da9f2f09441734c11",
- "x-ms-request-id": "20750824-b002-001b-6821-5aea7a000000",
+ "x-ms-request-id": "9b330b09-4002-002c-7286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -125,12 +128,12 @@
{
"odata.type": "chrissscratch.testtable7ozm26y8",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable7ozm26y8(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A17.794157Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A47.4228345Z\u0027\u0022",
"odata.editLink": "testtable7ozm26y8(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:17.794157Z",
+ "Timestamp": "2020-07-17T22:08:47.4228345Z",
"StringTypeProperty": "This is the original"
}
]
@@ -140,16 +143,17 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable7ozm26y8(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "DELETE",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"If-Match": "*",
- "traceparent": "00-ab9d12cc0396b54899268e651328c05d-211d72c27d87614b-00",
+ "traceparent": "00-0ba968dc69596c4ca2df04998e2ae991-2850c69938629c48-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "dd7fc9868886f7bf664a703df76b5b98",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:47 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -158,14 +162,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:46 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "dd7fc9868886f7bf664a703df76b5b98",
- "x-ms-request-id": "20750829-b002-001b-6c21-5aea7a000000",
+ "x-ms-request-id": "9b330b11-4002-002c-7a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -174,14 +178,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable7ozm26y8()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ea83fa4e1aa02feffc892e8506a7590d",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:47 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -190,7 +195,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:46 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -198,7 +203,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ea83fa4e1aa02feffc892e8506a7590d",
- "x-ms-request-id": "20750830-b002-001b-7321-5aea7a000000",
+ "x-ms-request-id": "9b330b1a-4002-002c-0386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -210,17 +215,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable7ozm26y8(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "181",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-54c6e5f31f8ade4eac9bb68295f72ca7-4a60450b44eb2c41-00",
+ "traceparent": "00-330efb2317964e4e81df5091f2867dd3-98f624f61be40748-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c6fa27d91609efa22db2963cb800733e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:47 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -236,15 +242,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:17 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A17.9582935Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:46 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A47.5939774Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "c6fa27d91609efa22db2963cb800733e",
- "x-ms-request-id": "20750839-b002-001b-7b21-5aea7a000000",
+ "x-ms-request-id": "9b330b23-4002-002c-0c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -253,14 +259,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable7ozm26y8()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4646579762f06c70d950e1fd5a3af1be",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:47 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -269,7 +276,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:46 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -277,7 +284,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "4646579762f06c70d950e1fd5a3af1be",
- "x-ms-request-id": "2075083f-b002-001b-8021-5aea7a000000",
+ "x-ms-request-id": "9b330b2c-4002-002c-1586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -286,12 +293,12 @@
{
"odata.type": "chrissscratch.testtable7ozm26y8",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable7ozm26y8(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A17.9582935Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A47.5939774Z\u0027\u0022",
"odata.editLink": "testtable7ozm26y8(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:17.9582935Z",
+ "Timestamp": "2020-07-17T22:08:47.5939774Z",
"StringTypeProperty": "This is the original"
}
]
@@ -301,16 +308,17 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable7ozm26y8(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "DELETE",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A17.794157Z\u0027\u0022",
- "traceparent": "00-6ae0b045ea29304d99f5b28cde6bf768-65d386f17e5c4444-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T22%3A08%3A47.4228345Z\u0027\u0022",
+ "traceparent": "00-1a454ff3c6c6e34f91594e71adbc34c2-87badf28f0c56642-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d06362f09570388f5893bcee84b376fc",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:47 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -319,7 +327,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:46 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -327,7 +335,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d06362f09570388f5893bcee84b376fc",
- "x-ms-request-id": "20750845-b002-001b-0621-5aea7a000000",
+ "x-ms-request-id": "9b330b3f-4002-002c-2886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -335,7 +343,7 @@
"code": "UpdateConditionNotSatisfied",
"message": {
"lang": "en-US",
- "value": "The update condition specified in the request was not satisfied.\nRequestId:20750845-b002-001b-0621-5aea7a000000\nTime:2020-07-14T20:56:18.0404267Z"
+ "value": "The update condition specified in the request was not satisfied.\nRequestId:9b330b3f-4002-002c-2886-5c46d5000000\nTime:2020-07-17T22:08:47.6920595Z"
}
}
}
@@ -344,16 +352,17 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable7ozm26y8(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "DELETE",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A17.9582935Z\u0027\u0022",
- "traceparent": "00-b36dd1b4021f3d4f8d2248de41e57f2f-1d9429fab19d9b4e-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T22%3A08%3A47.5939774Z\u0027\u0022",
+ "traceparent": "00-897d052431f2754f85539eef36acb06e-7bf64808ec43f644-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "aeedf0161361771db68eecb835a495f3",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:47 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -362,14 +371,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:46 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "aeedf0161361771db68eecb835a495f3",
- "x-ms-request-id": "20750852-b002-001b-1221-5aea7a000000",
+ "x-ms-request-id": "9b330b51-4002-002c-3a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -378,14 +387,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable7ozm26y8()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "564bd7c0a29c01cdc80ded5ca582e726",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:47 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -394,7 +404,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:46 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -402,7 +412,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "564bd7c0a29c01cdc80ded5ca582e726",
- "x-ms-request-id": "2075085b-b002-001b-1921-5aea7a000000",
+ "x-ms-request-id": "9b330b5b-4002-002c-4486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -416,13 +426,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-45143bc3a4d540428c6549f6bdc8e522-926238164bd3274c-00",
+ "traceparent": "00-a79a83550bc6e64789a8a62d6c8428ea-78b57962bd7df043-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6ae7e4d9424cdd5c44ec19e2a8d603b4",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:47 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -431,14 +441,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:17 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:47 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "6ae7e4d9424cdd5c44ec19e2a8d603b4",
- "x-ms-request-id": "20750863-b002-001b-2121-5aea7a000000",
+ "x-ms-request-id": "9b330b63-4002-002c-4c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CustomEntityDeleteRespectsEtagAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CustomEntityDeleteRespectsEtagAsync.json
index a3acf2c23592..df712f762413 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CustomEntityDeleteRespectsEtagAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CustomEntityDeleteRespectsEtagAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-7cbd3486ca34d1479f56bf99d09ef464-e0bfb7181d804044-00",
+ "traceparent": "00-5f020171f6a6de4cb813b5914e78195e-0a917c3e9f42c647-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "142cecd7d31d2d75a5c29f8eccd0bb86",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:59 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablepb9bn996\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "142cecd7d31d2d75a5c29f8eccd0bb86",
- "x-ms-request-id": "20751ff4-b002-001b-5821-5aea7a000000",
+ "x-ms-request-id": "9b331566-4002-002c-5686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablepb9bn996(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "181",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-99a333d88f96524480efe95667407156-af153c3e3fc9b741-00",
+ "traceparent": "00-e63eba6388412c4286eeb358397bdfa2-814ae88edafec848-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "bb0ea30f01da9e7eda4b4622029e8b9e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -75,15 +77,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:41 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A41.4628575Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:59 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A00.3165711Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "bb0ea30f01da9e7eda4b4622029e8b9e",
- "x-ms-request-id": "20752002-b002-001b-6521-5aea7a000000",
+ "x-ms-request-id": "9b331574-4002-002c-6186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -92,14 +94,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablepb9bn996()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9eea90a13f97e6835f66d933478498be",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -108,7 +111,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:59 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -116,7 +119,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "9eea90a13f97e6835f66d933478498be",
- "x-ms-request-id": "20752011-b002-001b-7321-5aea7a000000",
+ "x-ms-request-id": "9b331578-4002-002c-6486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -125,12 +128,12 @@
{
"odata.type": "chrissscratch.testtablepb9bn996",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablepb9bn996(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A41.4628575Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A00.3165711Z\u0027\u0022",
"odata.editLink": "testtablepb9bn996(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:41.4628575Z",
+ "Timestamp": "2020-07-17T22:09:00.3165711Z",
"StringTypeProperty": "This is the original"
}
]
@@ -140,16 +143,17 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablepb9bn996(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "DELETE",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"If-Match": "*",
- "traceparent": "00-a4377eee6a524c41b0b1a535a22d9dbf-3845b484977fe344-00",
+ "traceparent": "00-2b6e49f4f78a3845a220c03f89988aeb-e132cf33b8b5994e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "85bb5ae496cfebfdad7542882f0ba323",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -158,14 +162,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:59 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "85bb5ae496cfebfdad7542882f0ba323",
- "x-ms-request-id": "2075201f-b002-001b-7e21-5aea7a000000",
+ "x-ms-request-id": "9b33157f-4002-002c-6a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -174,14 +178,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablepb9bn996()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "402bf014e8d1cf8020275c73284b5756",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -190,7 +195,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:59 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -198,7 +203,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "402bf014e8d1cf8020275c73284b5756",
- "x-ms-request-id": "20752026-b002-001b-0521-5aea7a000000",
+ "x-ms-request-id": "9b331585-4002-002c-6f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -210,17 +215,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablepb9bn996(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "181",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-5f1d563f73883d428f737ad8ae19cf65-4c3b37de18338946-00",
+ "traceparent": "00-eb2f6d2e35036d49b8cb7f6a58823575-67cda130eb97914b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a73e87b206e30bce92fff021fcfab754",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -236,15 +242,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:41 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A41.6279953Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:59 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A00.4967217Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "a73e87b206e30bce92fff021fcfab754",
- "x-ms-request-id": "2075202f-b002-001b-0e21-5aea7a000000",
+ "x-ms-request-id": "9b33158d-4002-002c-7686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -253,14 +259,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablepb9bn996()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "571eb5c35859fbedd9eb64a73989c262",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -269,7 +276,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:59 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -277,7 +284,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "571eb5c35859fbedd9eb64a73989c262",
- "x-ms-request-id": "2075203c-b002-001b-1a21-5aea7a000000",
+ "x-ms-request-id": "9b331598-4002-002c-7f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -286,12 +293,12 @@
{
"odata.type": "chrissscratch.testtablepb9bn996",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablepb9bn996(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A41.6279953Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A00.4967217Z\u0027\u0022",
"odata.editLink": "testtablepb9bn996(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:41.6279953Z",
+ "Timestamp": "2020-07-17T22:09:00.4967217Z",
"StringTypeProperty": "This is the original"
}
]
@@ -301,16 +308,17 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablepb9bn996(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "DELETE",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A41.4628575Z\u0027\u0022",
- "traceparent": "00-b678cf368a177849b087bbea7477f726-17ef5e9cb8000c4b-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T22%3A09%3A00.3165711Z\u0027\u0022",
+ "traceparent": "00-ac43c42a0f8f4c448da26cf5c2b6f149-429a8a9ea103a64b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a7d6ec1efbcc0e40221fadd2f75ed226",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -319,7 +327,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:59 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -327,7 +335,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "a7d6ec1efbcc0e40221fadd2f75ed226",
- "x-ms-request-id": "20752048-b002-001b-2621-5aea7a000000",
+ "x-ms-request-id": "9b3315a2-4002-002c-0886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -335,7 +343,7 @@
"code": "UpdateConditionNotSatisfied",
"message": {
"lang": "en-US",
- "value": "The update condition specified in the request was not satisfied.\nRequestId:20752048-b002-001b-2621-5aea7a000000\nTime:2020-07-14T20:56:41.7141170Z"
+ "value": "The update condition specified in the request was not satisfied.\nRequestId:9b3315a2-4002-002c-0886-5c46d5000000\nTime:2020-07-17T22:09:00.5777887Z"
}
}
}
@@ -344,16 +352,17 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablepb9bn996(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "DELETE",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A41.6279953Z\u0027\u0022",
- "traceparent": "00-854ca68fa9b57e488feef8857b6eb2cc-12d64bd30e9cc749-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T22%3A09%3A00.4967217Z\u0027\u0022",
+ "traceparent": "00-1d42489ba68028409328cd4416269f86-5b11558cce3d1a44-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "73b00770002c5afc9a42cef8a126d208",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -362,14 +371,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:59 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "73b00770002c5afc9a42cef8a126d208",
- "x-ms-request-id": "20752057-b002-001b-3521-5aea7a000000",
+ "x-ms-request-id": "9b3315aa-4002-002c-0d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -378,14 +387,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablepb9bn996()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "10038e3c0f24c7877510343aaa1a047a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -394,7 +404,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:59 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -402,7 +412,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "10038e3c0f24c7877510343aaa1a047a",
- "x-ms-request-id": "20752061-b002-001b-3f21-5aea7a000000",
+ "x-ms-request-id": "9b3315b1-4002-002c-1386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -416,13 +426,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-e7780e9a29d3ba47b58c41136a00c071-915b9f36305c7b45-00",
+ "traceparent": "00-64287aac69ef4949b289c2f02b7e162d-9df9e368b288bb46-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "31373e184fd91e36ef7b0d8a2d476cfb",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -431,14 +441,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:59 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "31373e184fd91e36ef7b0d8a2d476cfb",
- "x-ms-request-id": "20752070-b002-001b-4e21-5aea7a000000",
+ "x-ms-request-id": "9b3315b5-4002-002c-1786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CustomEntityMergeRespectsEtag.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CustomEntityMergeRespectsEtag.json
index 7a70b71cb7d3..7cadd8296121 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CustomEntityMergeRespectsEtag.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CustomEntityMergeRespectsEtag.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-bda9559f17862c42aeb33c2e751f5ef5-f2aaa5cad42cdb4c-00",
+ "traceparent": "00-d6024db890439d42ad4b00669dc673ce-5be59391f9d1fa44-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "24150bb7c0511832d88ed2fba1dae3f4",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:47 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:47 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablel1upyyea\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "24150bb7c0511832d88ed2fba1dae3f4",
- "x-ms-request-id": "2075086b-b002-001b-2921-5aea7a000000",
+ "x-ms-request-id": "9b330b6d-4002-002c-5586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablel1upyyea(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "181",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-2c816677f53e5d4ebabe5277bb2e52bc-33557f9db9aabc4c-00",
+ "traceparent": "00-cd92b2fd35d93e428f1b5f6947ba4411-5c7a1728444a4147-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1be297f834642ff9488ee8e1e0753152",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -75,15 +77,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:18 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A18.2675508Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:47 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A47.9392674Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "1be297f834642ff9488ee8e1e0753152",
- "x-ms-request-id": "20750875-b002-001b-3221-5aea7a000000",
+ "x-ms-request-id": "9b330b7d-4002-002c-6486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -92,14 +94,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablel1upyyea()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "23452352fe1712572f05374d8124fb23",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -108,7 +111,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:47 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -116,7 +119,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "23452352fe1712572f05374d8124fb23",
- "x-ms-request-id": "20750882-b002-001b-3f21-5aea7a000000",
+ "x-ms-request-id": "9b330b93-4002-002c-7a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -125,12 +128,12 @@
{
"odata.type": "chrissscratch.testtablel1upyyea",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablel1upyyea(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A18.2675508Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A47.9392674Z\u0027\u0022",
"odata.editLink": "testtablel1upyyea(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:18.2675508Z",
+ "Timestamp": "2020-07-17T22:08:47.9392674Z",
"StringTypeProperty": "This is the original"
}
]
@@ -140,30 +143,31 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablel1upyyea(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PATCH",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "580",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
"If-Match": "*",
- "traceparent": "00-9e6920622164184eb72cefb734df84d1-7ba75aa149455b41-00",
+ "traceparent": "00-9d5cb5507583f0438448ae63e4b2f44c-069329618f3e3940-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6650de8a82ffd7521bf509324a37f818",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
"odata.type": "chrissscratch.testtablel1upyyea",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablel1upyyea(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A18.2675508Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A47.9392674Z\u0027\u0022",
"odata.editLink": "testtablel1upyyea(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"SomeStringProperty": "This is new and improved!",
- "Timestamp": "2020-07-14T20:56:18.2675508Z",
+ "Timestamp": "2020-07-17T22:08:47.9392674Z",
"Timestamp@odata.type": "Edm.DateTime",
"StringTypeProperty": "This is the original"
},
@@ -171,15 +175,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:18 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A18.3546236Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:47 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A48.1764656Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "6650de8a82ffd7521bf509324a37f818",
- "x-ms-request-id": "2075088d-b002-001b-4a21-5aea7a000000",
+ "x-ms-request-id": "9b330ba2-4002-002c-0686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -188,14 +192,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablel1upyyea()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b64ea9a0d09df9fb3fd0eb5ffcacae23",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -204,7 +209,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:47 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -212,7 +217,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "b64ea9a0d09df9fb3fd0eb5ffcacae23",
- "x-ms-request-id": "20750893-b002-001b-5021-5aea7a000000",
+ "x-ms-request-id": "9b330baf-4002-002c-1386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -221,12 +226,12 @@
{
"odata.type": "chrissscratch.testtablel1upyyea",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablel1upyyea(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A18.3546236Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A48.1764656Z\u0027\u0022",
"odata.editLink": "testtablel1upyyea(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:18.3546236Z",
+ "Timestamp": "2020-07-17T22:08:48.1764656Z",
"SomeStringProperty": "This is new and improved!",
"StringTypeProperty": "This is the original"
}
@@ -237,29 +242,30 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablel1upyyea(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PATCH",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "590",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A18.2675508Z\u0027\u0022",
- "traceparent": "00-de7d0b16ce766e4f979a5d0c05359f5a-5a87e96fbcd13645-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T22%3A08%3A47.9392674Z\u0027\u0022",
+ "traceparent": "00-aacf3ea30362aa44a24be2453cf00500-38209f3b867e4d4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0156c592cb24cf53d06e0721f525c7f8",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
"odata.type": "chrissscratch.testtablel1upyyea",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablel1upyyea(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A18.3546236Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A48.1764656Z\u0027\u0022",
"odata.editLink": "testtablel1upyyea(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp": "2020-07-14T20:56:18.3546236Z",
+ "Timestamp": "2020-07-17T22:08:48.1764656Z",
"Timestamp@odata.type": "Edm.DateTime",
"SomeStringProperty": "This changed due to a matching Etag",
"StringTypeProperty": "This is the original"
@@ -268,7 +274,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:47 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -276,7 +282,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0156c592cb24cf53d06e0721f525c7f8",
- "x-ms-request-id": "2075089b-b002-001b-5821-5aea7a000000",
+ "x-ms-request-id": "9b330bb5-4002-002c-1986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -284,7 +290,7 @@
"code": "UpdateConditionNotSatisfied",
"message": {
"lang": "en-US",
- "value": "The update condition specified in the request was not satisfied.\nRequestId:2075089b-b002-001b-5821-5aea7a000000\nTime:2020-07-14T20:56:18.4407615Z"
+ "value": "The update condition specified in the request was not satisfied.\nRequestId:9b330bb5-4002-002c-1986-5c46d5000000\nTime:2020-07-17T22:08:48.2605351Z"
}
}
}
@@ -293,29 +299,30 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablel1upyyea(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PATCH",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "590",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A18.3546236Z\u0027\u0022",
- "traceparent": "00-2f7b64d0d7d03b49b59a0b2930be3125-2937720785a8e547-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T22%3A08%3A48.1764656Z\u0027\u0022",
+ "traceparent": "00-c852ba6a889938489a6f476f9736fd70-226f8debf513224c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d7ad1e0c45d6b986e356272e96f3da6f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
"odata.type": "chrissscratch.testtablel1upyyea",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablel1upyyea(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A18.3546236Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A48.1764656Z\u0027\u0022",
"odata.editLink": "testtablel1upyyea(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp": "2020-07-14T20:56:18.3546236Z",
+ "Timestamp": "2020-07-17T22:08:48.1764656Z",
"Timestamp@odata.type": "Edm.DateTime",
"SomeStringProperty": "This changed due to a matching Etag",
"StringTypeProperty": "This is the original"
@@ -324,15 +331,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:18 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A18.4797273Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:47 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A48.303572Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d7ad1e0c45d6b986e356272e96f3da6f",
- "x-ms-request-id": "207508a4-b002-001b-5f21-5aea7a000000",
+ "x-ms-request-id": "9b330bbd-4002-002c-1f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -341,14 +348,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablel1upyyea()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "849fe546f7e0d4f3567ee52ec8d9041a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -357,7 +365,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:47 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -365,7 +373,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "849fe546f7e0d4f3567ee52ec8d9041a",
- "x-ms-request-id": "207508ae-b002-001b-6921-5aea7a000000",
+ "x-ms-request-id": "9b330bcd-4002-002c-2d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -374,12 +382,12 @@
{
"odata.type": "chrissscratch.testtablel1upyyea",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablel1upyyea(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A18.4797273Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A48.303572Z\u0027\u0022",
"odata.editLink": "testtablel1upyyea(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:18.4797273Z",
+ "Timestamp": "2020-07-17T22:08:48.303572Z",
"SomeStringProperty": "This changed due to a matching Etag",
"StringTypeProperty": "This is the original"
}
@@ -392,13 +400,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-3cf7fdd88fae2c4aac699975ca013fbe-0690b21cc9f9704c-00",
+ "traceparent": "00-dbb7d93fc0c3034a88408c932af8186f-34335e1b02948e4c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "de52f308d7ff4d4c3f9d1dcea42439dd",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -407,14 +415,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:47 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "de52f308d7ff4d4c3f9d1dcea42439dd",
- "x-ms-request-id": "207508b9-b002-001b-7421-5aea7a000000",
+ "x-ms-request-id": "9b330bd5-4002-002c-3586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CustomEntityMergeRespectsEtagAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CustomEntityMergeRespectsEtagAsync.json
index ac5b9a267242..6cd34d3191ba 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CustomEntityMergeRespectsEtagAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CustomEntityMergeRespectsEtagAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c4fa465f0c11fc4894cadd4ea853a8dd-c459eff4697ac545-00",
+ "traceparent": "00-76cc9b9623443f44a6a7f227080ca826-6dc59c16601f354c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1cf32bdca4ae290335e1c2c69ef96da7",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:59 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtables1rcphkk\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "1cf32bdca4ae290335e1c2c69ef96da7",
- "x-ms-request-id": "2075207b-b002-001b-5921-5aea7a000000",
+ "x-ms-request-id": "9b3315bc-4002-002c-1c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtables1rcphkk(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "181",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-0c94e01a3c1a064980fd07967d156e31-64d273d56951664d-00",
+ "traceparent": "00-ecb03ba534e15943a0c16f0f8caa60b1-95946f2d9c8f4946-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0d506f77479012faaa55c8f68f6d6b0a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -75,15 +77,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:41 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A41.9412567Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:59 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A00.8039789Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0d506f77479012faaa55c8f68f6d6b0a",
- "x-ms-request-id": "20752088-b002-001b-6521-5aea7a000000",
+ "x-ms-request-id": "9b3315c5-4002-002c-2286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -92,14 +94,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtables1rcphkk()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "747a8b1c3752821f21173ab2f32debeb",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -108,7 +111,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:00 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -116,7 +119,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "747a8b1c3752821f21173ab2f32debeb",
- "x-ms-request-id": "2075208f-b002-001b-6c21-5aea7a000000",
+ "x-ms-request-id": "9b3315cf-4002-002c-2b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -125,12 +128,12 @@
{
"odata.type": "chrissscratch.testtables1rcphkk",
"odata.id": "https://chrissscratch.table.core.windows.net/testtables1rcphkk(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A41.9412567Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A00.8039789Z\u0027\u0022",
"odata.editLink": "testtables1rcphkk(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:41.9412567Z",
+ "Timestamp": "2020-07-17T22:09:00.8039789Z",
"StringTypeProperty": "This is the original"
}
]
@@ -140,30 +143,31 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtables1rcphkk(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PATCH",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "580",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
"If-Match": "*",
- "traceparent": "00-1b9c86bfa3fa0b4aa3e9c154489acb2b-624e5c2054ed9e45-00",
+ "traceparent": "00-92f63d25e3081345b4b0027b9190c0be-6004bb8db906e644-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2eb3c64312eae44cf90a034e3b32a673",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
"odata.type": "chrissscratch.testtables1rcphkk",
"odata.id": "https://chrissscratch.table.core.windows.net/testtables1rcphkk(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A41.9412567Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A00.8039789Z\u0027\u0022",
"odata.editLink": "testtables1rcphkk(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"SomeStringProperty": "This is new and improved!",
- "Timestamp": "2020-07-14T20:56:41.9412567Z",
+ "Timestamp": "2020-07-17T22:09:00.8039789Z",
"Timestamp@odata.type": "Edm.DateTime",
"StringTypeProperty": "This is the original"
},
@@ -171,15 +175,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:41 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A42.0253258Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:00 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A00.8980554Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "2eb3c64312eae44cf90a034e3b32a673",
- "x-ms-request-id": "20752096-b002-001b-7321-5aea7a000000",
+ "x-ms-request-id": "9b3315d6-4002-002c-3286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -188,14 +192,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtables1rcphkk()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6d82bc5732f240fa50ceec780c471e7d",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -204,7 +209,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:00 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -212,7 +217,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "6d82bc5732f240fa50ceec780c471e7d",
- "x-ms-request-id": "2075209e-b002-001b-7b21-5aea7a000000",
+ "x-ms-request-id": "9b3315e2-4002-002c-3a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -221,12 +226,12 @@
{
"odata.type": "chrissscratch.testtables1rcphkk",
"odata.id": "https://chrissscratch.table.core.windows.net/testtables1rcphkk(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A42.0253258Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A00.8980554Z\u0027\u0022",
"odata.editLink": "testtables1rcphkk(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:42.0253258Z",
+ "Timestamp": "2020-07-17T22:09:00.8980554Z",
"SomeStringProperty": "This is new and improved!",
"StringTypeProperty": "This is the original"
}
@@ -237,29 +242,30 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtables1rcphkk(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PATCH",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "590",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A41.9412567Z\u0027\u0022",
- "traceparent": "00-d77e86421ef6a14f840253059439f901-e8b7b86cce00c543-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T22%3A09%3A00.8039789Z\u0027\u0022",
+ "traceparent": "00-530af8fada92504b97ecd7ada5da62a6-7280074fae5ad548-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c8b3dc6a3cb9091f3f957b4833d047ee",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
"odata.type": "chrissscratch.testtables1rcphkk",
"odata.id": "https://chrissscratch.table.core.windows.net/testtables1rcphkk(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A42.0253258Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A00.8980554Z\u0027\u0022",
"odata.editLink": "testtables1rcphkk(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp": "2020-07-14T20:56:42.0253258Z",
+ "Timestamp": "2020-07-17T22:09:00.8980554Z",
"Timestamp@odata.type": "Edm.DateTime",
"SomeStringProperty": "This changed due to a matching Etag",
"StringTypeProperty": "This is the original"
@@ -268,7 +274,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:00 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -276,7 +282,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "c8b3dc6a3cb9091f3f957b4833d047ee",
- "x-ms-request-id": "207520ad-b002-001b-0821-5aea7a000000",
+ "x-ms-request-id": "9b3315e9-4002-002c-4186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -284,7 +290,7 @@
"code": "UpdateConditionNotSatisfied",
"message": {
"lang": "en-US",
- "value": "The update condition specified in the request was not satisfied.\nRequestId:207520ad-b002-001b-0821-5aea7a000000\nTime:2020-07-14T20:56:42.1254581Z"
+ "value": "The update condition specified in the request was not satisfied.\nRequestId:9b3315e9-4002-002c-4186-5c46d5000000\nTime:2020-07-17T22:09:00.9841266Z"
}
}
}
@@ -293,29 +299,30 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtables1rcphkk(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PATCH",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "590",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A42.0253258Z\u0027\u0022",
- "traceparent": "00-d1bc32a1300e6a4e890700dd2f7e042b-262375938988db47-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T22%3A09%3A00.8980554Z\u0027\u0022",
+ "traceparent": "00-e4c4b126b7faa34dbefc2f72c1660e30-3cca98f4f1123e4b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "375bc6717dab11f9cc73dd1c26d3d8b1",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
"odata.type": "chrissscratch.testtables1rcphkk",
"odata.id": "https://chrissscratch.table.core.windows.net/testtables1rcphkk(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A42.0253258Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A00.8980554Z\u0027\u0022",
"odata.editLink": "testtables1rcphkk(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp": "2020-07-14T20:56:42.0253258Z",
+ "Timestamp": "2020-07-17T22:09:00.8980554Z",
"Timestamp@odata.type": "Edm.DateTime",
"SomeStringProperty": "This changed due to a matching Etag",
"StringTypeProperty": "This is the original"
@@ -324,15 +331,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:41 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A42.1734486Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:00 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A01.0261628Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "375bc6717dab11f9cc73dd1c26d3d8b1",
- "x-ms-request-id": "207520be-b002-001b-1921-5aea7a000000",
+ "x-ms-request-id": "9b3315f0-4002-002c-4886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -341,14 +348,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtables1rcphkk()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5ee386ebdd7e1ab99c792d5cb6b20c7f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -357,7 +365,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:41 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:00 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -365,7 +373,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "5ee386ebdd7e1ab99c792d5cb6b20c7f",
- "x-ms-request-id": "207520ca-b002-001b-2321-5aea7a000000",
+ "x-ms-request-id": "9b3315f7-4002-002c-4e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -374,12 +382,12 @@
{
"odata.type": "chrissscratch.testtables1rcphkk",
"odata.id": "https://chrissscratch.table.core.windows.net/testtables1rcphkk(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A42.1734486Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A01.0261628Z\u0027\u0022",
"odata.editLink": "testtables1rcphkk(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:42.1734486Z",
+ "Timestamp": "2020-07-17T22:09:01.0261628Z",
"SomeStringProperty": "This changed due to a matching Etag",
"StringTypeProperty": "This is the original"
}
@@ -392,13 +400,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-aeab386c820afd41a170cee8b7c94b87-399959c74d1cbc4b-00",
+ "traceparent": "00-bc995e49e66e9e43b494f5f6d239cd2e-07bbe168b953964b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4507fd86e6ecedd2e3a2fc465e03e26c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -407,14 +415,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:00 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "4507fd86e6ecedd2e3a2fc465e03e26c",
- "x-ms-request-id": "207520d8-b002-001b-3121-5aea7a000000",
+ "x-ms-request-id": "9b3315fa-4002-002c-5186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CustomEntityUpdateRespectsEtag.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CustomEntityUpdateRespectsEtag.json
index 337bda7247cc..5ed72f74c743 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CustomEntityUpdateRespectsEtag.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CustomEntityUpdateRespectsEtag.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-7bd11734221ea34f8c340bc53b658174-0f68b17cc36b3e44-00",
+ "traceparent": "00-9ac293ef7408bb4890576c051baccd8d-0ebf7a66e18fa44c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "125785b1ba02c2c0b850c672be3ba20b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:47 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablen34od0g5\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "125785b1ba02c2c0b850c672be3ba20b",
- "x-ms-request-id": "207508ce-b002-001b-0721-5aea7a000000",
+ "x-ms-request-id": "9b330be1-4002-002c-4186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablen34od0g5(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "181",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-4e17ff563b3bf84ab78b977ca41078e0-db24188457263a4c-00",
+ "traceparent": "00-cdaff746ea4bdb48a428ac4dc21ac38c-1ab4e3345d0a6a41-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "88ea1ba383e8a60cd0bd82614e61fcb0",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -75,15 +77,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:18 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A18.6498697Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:47 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A48.513747Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "88ea1ba383e8a60cd0bd82614e61fcb0",
- "x-ms-request-id": "207508d4-b002-001b-0c21-5aea7a000000",
+ "x-ms-request-id": "9b330bee-4002-002c-4d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -92,14 +94,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablen34od0g5()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "046fad0b50bc4888fc633e0fee29363e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -108,7 +111,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:47 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -116,7 +119,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "046fad0b50bc4888fc633e0fee29363e",
- "x-ms-request-id": "207508e2-b002-001b-1a21-5aea7a000000",
+ "x-ms-request-id": "9b330bf3-4002-002c-5286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -125,12 +128,12 @@
{
"odata.type": "chrissscratch.testtablen34od0g5",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablen34od0g5(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A18.6498697Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A48.513747Z\u0027\u0022",
"odata.editLink": "testtablen34od0g5(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:18.6498697Z",
+ "Timestamp": "2020-07-17T22:08:48.513747Z",
"StringTypeProperty": "This is the original"
}
]
@@ -140,30 +143,31 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablen34od0g5(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
- "Content-Length": "580",
+ "Content-Length": "579",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
"If-Match": "*",
- "traceparent": "00-3f186639337cac4d956433fce92e5fea-063d737b51f1294e-00",
+ "traceparent": "00-0e97f10a27a57f40819b903824595bab-46ec6eec2abde541-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f192af11504d02c84a6b32fd3e6069ee",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
"odata.type": "chrissscratch.testtablen34od0g5",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablen34od0g5(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A18.6498697Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A48.513747Z\u0027\u0022",
"odata.editLink": "testtablen34od0g5(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"SomeStringProperty": "This is new and improved!",
- "Timestamp": "2020-07-14T20:56:18.6498697Z",
+ "Timestamp": "2020-07-17T22:08:48.5137470Z",
"Timestamp@odata.type": "Edm.DateTime",
"StringTypeProperty": "This is the original"
},
@@ -171,15 +175,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:18 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A18.7369412Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:47 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A48.5978169Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f192af11504d02c84a6b32fd3e6069ee",
- "x-ms-request-id": "207508f2-b002-001b-2821-5aea7a000000",
+ "x-ms-request-id": "9b330bfa-4002-002c-5986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -188,14 +192,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablen34od0g5()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8db3c2ca0632520b92a18c8445fdb8a7",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -204,7 +209,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:47 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -212,7 +217,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "8db3c2ca0632520b92a18c8445fdb8a7",
- "x-ms-request-id": "207508f6-b002-001b-2c21-5aea7a000000",
+ "x-ms-request-id": "9b330c03-4002-002c-6186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -221,12 +226,12 @@
{
"odata.type": "chrissscratch.testtablen34od0g5",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablen34od0g5(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A18.7369412Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A48.5978169Z\u0027\u0022",
"odata.editLink": "testtablen34od0g5(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:18.7369412Z",
+ "Timestamp": "2020-07-17T22:08:48.5978169Z",
"SomeStringProperty": "This is new and improved!",
"StringTypeProperty": "This is the original"
}
@@ -237,29 +242,30 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablen34od0g5(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "590",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A18.6498697Z\u0027\u0022",
- "traceparent": "00-3977de8a075280439b5abca71c32d60a-f817eb86a7e5e44e-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T22%3A08%3A48.513747Z\u0027\u0022",
+ "traceparent": "00-75129b2e8ef0eb4db0a8e494b7be7151-c4977b57411b9c4f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9f5043870acfbb62e56dba501e8b0a9b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
"odata.type": "chrissscratch.testtablen34od0g5",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablen34od0g5(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A18.7369412Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A48.5978169Z\u0027\u0022",
"odata.editLink": "testtablen34od0g5(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp": "2020-07-14T20:56:18.7369412Z",
+ "Timestamp": "2020-07-17T22:08:48.5978169Z",
"Timestamp@odata.type": "Edm.DateTime",
"SomeStringProperty": "This changed due to a matching Etag",
"StringTypeProperty": "This is the original"
@@ -268,7 +274,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:47 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -276,7 +282,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "9f5043870acfbb62e56dba501e8b0a9b",
- "x-ms-request-id": "207508fb-b002-001b-3121-5aea7a000000",
+ "x-ms-request-id": "9b330c0c-4002-002c-6a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -284,7 +290,7 @@
"code": "UpdateConditionNotSatisfied",
"message": {
"lang": "en-US",
- "value": "The update condition specified in the request was not satisfied.\nRequestId:207508fb-b002-001b-3121-5aea7a000000\nTime:2020-07-14T20:56:18.8220794Z"
+ "value": "The update condition specified in the request was not satisfied.\nRequestId:9b330c0c-4002-002c-6a86-5c46d5000000\nTime:2020-07-17T22:08:48.6868905Z"
}
}
}
@@ -293,29 +299,30 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablen34od0g5(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "590",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A18.7369412Z\u0027\u0022",
- "traceparent": "00-70b4c560f3316543b6670040cc3cb8af-646d70d2e101174b-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T22%3A08%3A48.5978169Z\u0027\u0022",
+ "traceparent": "00-dfe20af06e67f649839c7f02573b94d7-2967130aa05d8f40-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2c454ff9a8760a0ba3405eacc343bc4c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
"odata.type": "chrissscratch.testtablen34od0g5",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablen34od0g5(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A18.7369412Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A48.5978169Z\u0027\u0022",
"odata.editLink": "testtablen34od0g5(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp": "2020-07-14T20:56:18.7369412Z",
+ "Timestamp": "2020-07-17T22:08:48.5978169Z",
"Timestamp@odata.type": "Edm.DateTime",
"SomeStringProperty": "This changed due to a matching Etag",
"StringTypeProperty": "This is the original"
@@ -324,15 +331,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:18 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A18.8620462Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:47 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A48.7289259Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "2c454ff9a8760a0ba3405eacc343bc4c",
- "x-ms-request-id": "207508ff-b002-001b-3521-5aea7a000000",
+ "x-ms-request-id": "9b330c15-4002-002c-7286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -341,14 +348,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablen34od0g5()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "fa758ab3ca10bf1f5ff7a8c44cbb3307",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -357,7 +365,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:47 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -365,7 +373,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "fa758ab3ca10bf1f5ff7a8c44cbb3307",
- "x-ms-request-id": "20750905-b002-001b-3921-5aea7a000000",
+ "x-ms-request-id": "9b330c20-4002-002c-7c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -374,12 +382,12 @@
{
"odata.type": "chrissscratch.testtablen34od0g5",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablen34od0g5(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A18.8620462Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A48.7289259Z\u0027\u0022",
"odata.editLink": "testtablen34od0g5(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:18.8620462Z",
+ "Timestamp": "2020-07-17T22:08:48.7289259Z",
"SomeStringProperty": "This changed due to a matching Etag",
"StringTypeProperty": "This is the original"
}
@@ -392,13 +400,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-ab4461156bdb464b8ec9a172c1173cfb-305246d7ef3b3c47-00",
+ "traceparent": "00-e20d1ccdbdca59498289013ed9c2e373-8360b5ef998fa14e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f58af0968cb8de313746fc8eacb6f7a1",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -407,14 +415,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:48 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f58af0968cb8de313746fc8eacb6f7a1",
- "x-ms-request-id": "20750912-b002-001b-4421-5aea7a000000",
+ "x-ms-request-id": "9b330c31-4002-002c-0d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CustomEntityUpdateRespectsEtagAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CustomEntityUpdateRespectsEtagAsync.json
index 99f0e2aeecb7..48deefce35ac 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CustomEntityUpdateRespectsEtagAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/CustomEntityUpdateRespectsEtagAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c652794b71f06746bd9679b98f96fe80-dcf317f46957a940-00",
+ "traceparent": "00-c2306a227e081248b48eb8d6038efb08-ef429d97143aa142-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "72b0d5fd556eaa28c275cfce5bd76d07",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:00 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableeu4wb4gs\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "72b0d5fd556eaa28c275cfce5bd76d07",
- "x-ms-request-id": "207520e8-b002-001b-4021-5aea7a000000",
+ "x-ms-request-id": "9b3315fd-4002-002c-5486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableeu4wb4gs(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "181",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-6a30f0e6a5209848a184cc4dca204ea7-fd2e7ad32b744e40-00",
+ "traceparent": "00-cd2d7f287555d3439658b8571fa6e9d4-037996173cb1854d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3f639e208a6505c9c31de60dad28c3fa",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -75,15 +77,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:42 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A42.4156501Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:00 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A01.2113159Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "3f639e208a6505c9c31de60dad28c3fa",
- "x-ms-request-id": "20752104-b002-001b-5a21-5aea7a000000",
+ "x-ms-request-id": "9b331609-4002-002c-5c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -92,14 +94,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableeu4wb4gs()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "35f1223bfb2047fe1a55c42a339f3fb3",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -108,7 +111,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:00 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -116,7 +119,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "35f1223bfb2047fe1a55c42a339f3fb3",
- "x-ms-request-id": "20752113-b002-001b-6921-5aea7a000000",
+ "x-ms-request-id": "9b331610-4002-002c-6386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -125,12 +128,12 @@
{
"odata.type": "chrissscratch.testtableeu4wb4gs",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableeu4wb4gs(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A42.4156501Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A01.2113159Z\u0027\u0022",
"odata.editLink": "testtableeu4wb4gs(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:42.4156501Z",
+ "Timestamp": "2020-07-17T22:09:01.2113159Z",
"StringTypeProperty": "This is the original"
}
]
@@ -140,30 +143,31 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableeu4wb4gs(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "580",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
"If-Match": "*",
- "traceparent": "00-af19b07a56a5e7429bbebce1eefd16fb-6ce80a4018b3af47-00",
+ "traceparent": "00-0a220aee42893847be1aa49c55db3848-29a8405826b5ea41-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "09d10b9b2a934a97e66daa37429c154c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
"odata.type": "chrissscratch.testtableeu4wb4gs",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableeu4wb4gs(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A42.4156501Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A01.2113159Z\u0027\u0022",
"odata.editLink": "testtableeu4wb4gs(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"SomeStringProperty": "This is new and improved!",
- "Timestamp": "2020-07-14T20:56:42.4156501Z",
+ "Timestamp": "2020-07-17T22:09:01.2113159Z",
"Timestamp@odata.type": "Edm.DateTime",
"StringTypeProperty": "This is the original"
},
@@ -171,15 +175,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:42 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A42.4947163Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:00 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A01.2933837Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "09d10b9b2a934a97e66daa37429c154c",
- "x-ms-request-id": "2075211d-b002-001b-7321-5aea7a000000",
+ "x-ms-request-id": "9b33161e-4002-002c-6f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -188,14 +192,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableeu4wb4gs()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b520d30bd27c24f59f1c240fc69fd124",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -204,7 +209,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:00 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -212,7 +217,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "b520d30bd27c24f59f1c240fc69fd124",
- "x-ms-request-id": "20752128-b002-001b-7d21-5aea7a000000",
+ "x-ms-request-id": "9b331626-4002-002c-7786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -221,12 +226,12 @@
{
"odata.type": "chrissscratch.testtableeu4wb4gs",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableeu4wb4gs(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A42.4947163Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A01.2933837Z\u0027\u0022",
"odata.editLink": "testtableeu4wb4gs(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:42.4947163Z",
+ "Timestamp": "2020-07-17T22:09:01.2933837Z",
"SomeStringProperty": "This is new and improved!",
"StringTypeProperty": "This is the original"
}
@@ -237,29 +242,30 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableeu4wb4gs(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "590",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A42.4156501Z\u0027\u0022",
- "traceparent": "00-cee2abf2c43d4b478897f3a181b19f48-6365bb69f2fd4249-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T22%3A09%3A01.2113159Z\u0027\u0022",
+ "traceparent": "00-0f951331a7f5b34b8c11f6df8b57836b-a0bd28f3f5649e49-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a17232deb95710668aa64eb351c6057d",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
"odata.type": "chrissscratch.testtableeu4wb4gs",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableeu4wb4gs(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A42.4947163Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A01.2933837Z\u0027\u0022",
"odata.editLink": "testtableeu4wb4gs(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp": "2020-07-14T20:56:42.4947163Z",
+ "Timestamp": "2020-07-17T22:09:01.2933837Z",
"Timestamp@odata.type": "Edm.DateTime",
"SomeStringProperty": "This changed due to a matching Etag",
"StringTypeProperty": "This is the original"
@@ -268,7 +274,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:00 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -276,7 +282,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "a17232deb95710668aa64eb351c6057d",
- "x-ms-request-id": "20752135-b002-001b-0921-5aea7a000000",
+ "x-ms-request-id": "9b331631-4002-002c-0186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -284,7 +290,7 @@
"code": "UpdateConditionNotSatisfied",
"message": {
"lang": "en-US",
- "value": "The update condition specified in the request was not satisfied.\nRequestId:20752135-b002-001b-0921-5aea7a000000\nTime:2020-07-14T20:56:42.5768328Z"
+ "value": "The update condition specified in the request was not satisfied.\nRequestId:9b331631-4002-002c-0186-5c46d5000000\nTime:2020-07-17T22:09:01.3814573Z"
}
}
}
@@ -293,29 +299,30 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableeu4wb4gs(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "590",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A42.4947163Z\u0027\u0022",
- "traceparent": "00-7b1c788be7383d4c8a31a2a22bb2ec7f-8ba31b3bdc727641-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T22%3A09%3A01.2933837Z\u0027\u0022",
+ "traceparent": "00-a119cc02c1885349bd0fa235dcb69769-c2bda2fc9062e747-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "601e783f897fc93715ac697705888447",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
"odata.type": "chrissscratch.testtableeu4wb4gs",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableeu4wb4gs(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A42.4947163Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A01.2933837Z\u0027\u0022",
"odata.editLink": "testtableeu4wb4gs(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp": "2020-07-14T20:56:42.4947163Z",
+ "Timestamp": "2020-07-17T22:09:01.2933837Z",
"Timestamp@odata.type": "Edm.DateTime",
"SomeStringProperty": "This changed due to a matching Etag",
"StringTypeProperty": "This is the original"
@@ -324,15 +331,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:42 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A42.6168183Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:00 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A01.422491Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "601e783f897fc93715ac697705888447",
- "x-ms-request-id": "20752141-b002-001b-1521-5aea7a000000",
+ "x-ms-request-id": "9b331636-4002-002c-0586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -341,14 +348,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableeu4wb4gs()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0f59869b732a51f46c0f2bd58342d3d8",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -357,7 +365,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:00 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -365,7 +373,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0f59869b732a51f46c0f2bd58342d3d8",
- "x-ms-request-id": "20752148-b002-001b-1c21-5aea7a000000",
+ "x-ms-request-id": "9b331640-4002-002c-0d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -374,12 +382,12 @@
{
"odata.type": "chrissscratch.testtableeu4wb4gs",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableeu4wb4gs(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A42.6168183Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A01.422491Z\u0027\u0022",
"odata.editLink": "testtableeu4wb4gs(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:42.6168183Z",
+ "Timestamp": "2020-07-17T22:09:01.422491Z",
"SomeStringProperty": "This changed due to a matching Etag",
"StringTypeProperty": "This is the original"
}
@@ -392,13 +400,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-b58f0718c8759743b01c31277e2966e7-22ddab0e32a5f142-00",
+ "traceparent": "00-cdd689fc1907c5498997649373f1f4e2-8c0ebdf44579c64e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4ecfa716718154a5fba98caa50ee0b02",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -407,14 +415,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:00 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "4ecfa716718154a5fba98caa50ee0b02",
- "x-ms-request-id": "2075214c-b002-001b-2021-5aea7a000000",
+ "x-ms-request-id": "9b33164a-4002-002c-1786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityCanBeUpserted.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityCanBeUpserted.json
index e7450405cf33..e1c90560fc59 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityCanBeUpserted.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityCanBeUpserted.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ed75ea2582a8cc47ba0e86507a79a13c-5ec5d6c577345c4f-00",
+ "traceparent": "00-16af9c5d67bec9469e2cba85d06ea43e-26f8e927eb7e0448-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "773232caf4ac27459110524016fa8395",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:48 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable445m49yq\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "773232caf4ac27459110524016fa8395",
- "x-ms-request-id": "20750920-b002-001b-5221-5aea7a000000",
+ "x-ms-request-id": "9b330c3b-4002-002c-1786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable445m49yq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "88",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-89a488015c22904ba55712827610ebb3-3eb5313b2e7fe847-00",
+ "traceparent": "00-76b2fbe04fe7db4ea952b3b79771aa93-1d940d45d6c4fc42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c4ad7263b9e1ac10daf16502a0ea491f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -72,15 +74,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:18 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A19.037191Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:48 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A48.9431035Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "c4ad7263b9e1ac10daf16502a0ea491f",
- "x-ms-request-id": "2075092d-b002-001b-5d21-5aea7a000000",
+ "x-ms-request-id": "9b330c48-4002-002c-2386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -89,14 +91,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable445m49yq()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b7028d804f66348eb4d4388b8397d48c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -105,7 +108,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:48 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -113,7 +116,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "b7028d804f66348eb4d4388b8397d48c",
- "x-ms-request-id": "20750934-b002-001b-6421-5aea7a000000",
+ "x-ms-request-id": "9b330c52-4002-002c-2d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -122,12 +125,12 @@
{
"odata.type": "chrissscratch.testtable445m49yq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable445m49yq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A19.037191Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A48.9431035Z\u0027\u0022",
"odata.editLink": "testtable445m49yq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:19.037191Z",
+ "Timestamp": "2020-07-17T22:08:48.9431035Z",
"SomeStringProperty": "This is the original"
}
]
@@ -137,28 +140,29 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable445m49yq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
- "Content-Length": "535",
+ "Content-Length": "536",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-2e4df8888f04e74db6af9fe16c3783dc-0ac6af81292fa645-00",
+ "traceparent": "00-5884c0581debc944a1ff9d2552ae2684-958f2042f2cbda4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3e62d777694b79e921cbd103e024f126",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
"odata.type": "chrissscratch.testtable445m49yq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable445m49yq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A19.037191Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A48.9431035Z\u0027\u0022",
"odata.editLink": "testtable445m49yq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp": "2020-07-14T20:56:19.0371910Z",
+ "Timestamp": "2020-07-17T22:08:48.9431035Z",
"Timestamp@odata.type": "Edm.DateTime",
"SomeStringProperty": "This is new and improved!"
},
@@ -166,15 +170,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:18 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A19.1172572Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:48 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A49.0251722Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "3e62d777694b79e921cbd103e024f126",
- "x-ms-request-id": "2075093e-b002-001b-6c21-5aea7a000000",
+ "x-ms-request-id": "9b330c5f-4002-002c-3a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -183,14 +187,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable445m49yq()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6c962008dd8013ece4790f0d81842843",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -199,7 +204,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:48 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -207,7 +212,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "6c962008dd8013ece4790f0d81842843",
- "x-ms-request-id": "20750944-b002-001b-7221-5aea7a000000",
+ "x-ms-request-id": "9b330c66-4002-002c-4186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -216,12 +221,12 @@
{
"odata.type": "chrissscratch.testtable445m49yq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable445m49yq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A19.1172572Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A49.0251722Z\u0027\u0022",
"odata.editLink": "testtable445m49yq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:19.1172572Z",
+ "Timestamp": "2020-07-17T22:08:49.0251722Z",
"SomeStringProperty": "This is new and improved!"
}
]
@@ -233,13 +238,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-9a5047dfe220c349953683ad31f0e20f-198fcdbda8b22c4e-00",
+ "traceparent": "00-0ebcbb904ea6e74e83bbbbedde28f2ad-b232021fbd752640-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c88bd81c0b8716d4a489959a7d8b5490",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -248,14 +253,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:18 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:48 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "c88bd81c0b8716d4a489959a7d8b5490",
- "x-ms-request-id": "20750948-b002-001b-7621-5aea7a000000",
+ "x-ms-request-id": "9b330c6f-4002-002c-4986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityCanBeUpsertedAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityCanBeUpsertedAsync.json
index 44b1888e1081..30f6efe0bf5e 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityCanBeUpsertedAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityCanBeUpsertedAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-2c61838855296a449b25a7c39291603e-7db607f66f2e8246-00",
+ "traceparent": "00-488fe5918f5e374f84600685488e489a-8f9a5a5aa6afbb47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e901d1adcb1608800ebe6f0ae04c128a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:43 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:00 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableg2cnn5r9\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "e901d1adcb1608800ebe6f0ae04c128a",
- "x-ms-request-id": "20752155-b002-001b-2921-5aea7a000000",
+ "x-ms-request-id": "9b331651-4002-002c-1d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableg2cnn5r9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "88",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-d47e1fe7be54a745ba3e50c55e20c73c-242df9b5cd35764e-00",
+ "traceparent": "00-9aa06bed88653042b2d27feadcfb2ad0-c4f4df3c49c8094a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c7e3fa916a2c4e778df6764a0d5ffef9",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:43 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -72,15 +74,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:42 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A42.7829556Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:00 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A01.5976366Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "c7e3fa916a2c4e778df6764a0d5ffef9",
- "x-ms-request-id": "2075215c-b002-001b-2f21-5aea7a000000",
+ "x-ms-request-id": "9b33165b-4002-002c-2686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -89,14 +91,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableg2cnn5r9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "bc3248405de57118937a37c88dd1e774",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:43 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -105,7 +108,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:00 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -113,7 +116,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "bc3248405de57118937a37c88dd1e774",
- "x-ms-request-id": "20752160-b002-001b-3321-5aea7a000000",
+ "x-ms-request-id": "9b331663-4002-002c-2e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -122,12 +125,12 @@
{
"odata.type": "chrissscratch.testtableg2cnn5r9",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableg2cnn5r9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A42.7829556Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A01.5976366Z\u0027\u0022",
"odata.editLink": "testtableg2cnn5r9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:42.7829556Z",
+ "Timestamp": "2020-07-17T22:09:01.5976366Z",
"SomeStringProperty": "This is the original"
}
]
@@ -137,28 +140,29 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableg2cnn5r9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "536",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-86d22d0b10e34448b8823ea413091766-7bcfe7a25a81d546-00",
+ "traceparent": "00-a2aa044faa7a5c4786780bc73dba4fab-455ee95ac2fa2440-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5ee8e5a1480f66818a9b88d40abd005f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:43 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
"odata.type": "chrissscratch.testtableg2cnn5r9",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableg2cnn5r9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A42.7829556Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A01.5976366Z\u0027\u0022",
"odata.editLink": "testtableg2cnn5r9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp": "2020-07-14T20:56:42.7829556Z",
+ "Timestamp": "2020-07-17T22:09:01.5976366Z",
"Timestamp@odata.type": "Edm.DateTime",
"SomeStringProperty": "This is new and improved!"
},
@@ -166,15 +170,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:42 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A42.8650239Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:00 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A01.6777028Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "5ee8e5a1480f66818a9b88d40abd005f",
- "x-ms-request-id": "20752172-b002-001b-4421-5aea7a000000",
+ "x-ms-request-id": "9b331667-4002-002c-3286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -183,14 +187,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableg2cnn5r9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "04a01070cedf33afe17234b233aec0bb",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:43 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -199,7 +204,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:00 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -207,7 +212,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "04a01070cedf33afe17234b233aec0bb",
- "x-ms-request-id": "20752181-b002-001b-5321-5aea7a000000",
+ "x-ms-request-id": "9b331672-4002-002c-3b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -216,12 +221,12 @@
{
"odata.type": "chrissscratch.testtableg2cnn5r9",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableg2cnn5r9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A42.8650239Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A01.6777028Z\u0027\u0022",
"odata.editLink": "testtableg2cnn5r9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:42.8650239Z",
+ "Timestamp": "2020-07-17T22:09:01.6777028Z",
"SomeStringProperty": "This is new and improved!"
}
]
@@ -233,13 +238,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-4c3b4d3c1d42374db0ea79c5b2971c7b-7f833e69af0c074d-00",
+ "traceparent": "00-f42603a972e4e34ebadb886af1d49da6-7e4cb1156bd53543-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "27a9010ea076f7eac7cb314ad54467d5",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:43 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -248,14 +253,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:00 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "27a9010ea076f7eac7cb314ad54467d5",
- "x-ms-request-id": "2075218a-b002-001b-5c21-5aea7a000000",
+ "x-ms-request-id": "9b331678-4002-002c-4186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityDeleteRespectsEtag.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityDeleteRespectsEtag.json
index 97d1cc966860..232b3168bae9 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityDeleteRespectsEtag.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityDeleteRespectsEtag.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-dddb12ba1d1fa142b18bdcd51758f6b6-6022c317ac1d624c-00",
+ "traceparent": "00-67cfd48798fda94eb65e989f0e1b27df-1088afcd373fe142-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9733354053f402bd7ccf860ebf7fa3b3",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:48 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablexuh14aqc\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "9733354053f402bd7ccf860ebf7fa3b3",
- "x-ms-request-id": "20750959-b002-001b-0521-5aea7a000000",
+ "x-ms-request-id": "9b330c7a-4002-002c-5386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablexuh14aqc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "88",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-ae4d07efadf21e4d9979bf18dfe2e16c-eae1a0241b659340-00",
+ "traceparent": "00-8e709faf87e1e0429c5920092e5af18b-5935eb2c1cb0ef48-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7339ac8a0d3e11e1605d476680c75d24",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -72,15 +74,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:19 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A19.3054141Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:48 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A49.2333448Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "7339ac8a0d3e11e1605d476680c75d24",
- "x-ms-request-id": "2075095e-b002-001b-0921-5aea7a000000",
+ "x-ms-request-id": "9b330c8e-4002-002c-6686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -89,14 +91,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablexuh14aqc()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "169f7fe496ea0652890df0f8fb7a0a08",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -105,7 +108,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:48 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -113,7 +116,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "169f7fe496ea0652890df0f8fb7a0a08",
- "x-ms-request-id": "20750968-b002-001b-1121-5aea7a000000",
+ "x-ms-request-id": "9b330c99-4002-002c-7186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -122,12 +125,12 @@
{
"odata.type": "chrissscratch.testtablexuh14aqc",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablexuh14aqc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A19.3054141Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A49.2333448Z\u0027\u0022",
"odata.editLink": "testtablexuh14aqc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:19.3054141Z",
+ "Timestamp": "2020-07-17T22:08:49.2333448Z",
"SomeStringProperty": "This is the original"
}
]
@@ -137,16 +140,17 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablexuh14aqc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "DELETE",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"If-Match": "*",
- "traceparent": "00-aeb693aa1b7d694f9aa7c80a24f9699e-d4b330e916e24f45-00",
+ "traceparent": "00-c4282bd63f2f1b44a71ce0bab8c9a063-fd8f06c88dc6e645-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8988c36a12982802528594f6759bfc07",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -155,14 +159,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:48 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "8988c36a12982802528594f6759bfc07",
- "x-ms-request-id": "20750971-b002-001b-1a21-5aea7a000000",
+ "x-ms-request-id": "9b330ca0-4002-002c-7886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -171,14 +175,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablexuh14aqc()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "00dae9289c04f3235932e9311de816e6",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -187,7 +192,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:48 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -195,7 +200,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "00dae9289c04f3235932e9311de816e6",
- "x-ms-request-id": "20750975-b002-001b-1e21-5aea7a000000",
+ "x-ms-request-id": "9b330ca4-4002-002c-7c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -207,17 +212,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablexuh14aqc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "88",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-724d15cab60d8944954dfdb2e9d33284-c6940fdcefa7a24f-00",
+ "traceparent": "00-3e3088a8860fcf4fa31999e868700552-69b35c746d464a46-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "bdfc3f53d33fd18c7d77c464025c91ed",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -230,15 +236,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:19 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A19.4715527Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:48 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A49.3964813Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "bdfc3f53d33fd18c7d77c464025c91ed",
- "x-ms-request-id": "2075097f-b002-001b-2621-5aea7a000000",
+ "x-ms-request-id": "9b330ca7-4002-002c-7f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -247,14 +253,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablexuh14aqc()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "12d0e8110a9fce049f952f6629d10a69",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -263,7 +270,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:48 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -271,7 +278,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "12d0e8110a9fce049f952f6629d10a69",
- "x-ms-request-id": "20750985-b002-001b-2c21-5aea7a000000",
+ "x-ms-request-id": "9b330cb1-4002-002c-0886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -280,12 +287,12 @@
{
"odata.type": "chrissscratch.testtablexuh14aqc",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablexuh14aqc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A19.4715527Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A49.3964813Z\u0027\u0022",
"odata.editLink": "testtablexuh14aqc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:19.4715527Z",
+ "Timestamp": "2020-07-17T22:08:49.3964813Z",
"SomeStringProperty": "This is the original"
}
]
@@ -295,16 +302,17 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablexuh14aqc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "DELETE",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A19.3054141Z\u0027\u0022",
- "traceparent": "00-37079332c5dfb343be019632aa3fa49d-a31eef2b16b8f043-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T22%3A08%3A49.2333448Z\u0027\u0022",
+ "traceparent": "00-bad4b3e785e42e439d65ed1dc967615b-6d74f83abe9c014c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "36a2ae6f3e9f54c85c09828dd8bef1fd",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -313,7 +321,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:48 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -321,7 +329,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "36a2ae6f3e9f54c85c09828dd8bef1fd",
- "x-ms-request-id": "2075098b-b002-001b-3221-5aea7a000000",
+ "x-ms-request-id": "9b330cbc-4002-002c-1386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -329,7 +337,7 @@
"code": "UpdateConditionNotSatisfied",
"message": {
"lang": "en-US",
- "value": "The update condition specified in the request was not satisfied.\nRequestId:2075098b-b002-001b-3221-5aea7a000000\nTime:2020-07-14T20:56:19.5556932Z"
+ "value": "The update condition specified in the request was not satisfied.\nRequestId:9b330cbc-4002-002c-1386-5c46d5000000\nTime:2020-07-17T22:08:49.4985658Z"
}
}
}
@@ -338,16 +346,17 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablexuh14aqc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "DELETE",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A19.4715527Z\u0027\u0022",
- "traceparent": "00-b7e41e458e27904e84d0551d665724a6-ae021036b8467a42-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T22%3A08%3A49.3964813Z\u0027\u0022",
+ "traceparent": "00-c47ef376594a3f409a08e988a5b4e335-a80bc20bd95b534a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "341ffba0031848463b2e1daaa426a8ac",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -356,14 +365,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:48 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "341ffba0031848463b2e1daaa426a8ac",
- "x-ms-request-id": "20750991-b002-001b-3821-5aea7a000000",
+ "x-ms-request-id": "9b330cce-4002-002c-2486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -372,14 +381,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablexuh14aqc()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "53f55a6c5ab9d24e207bb5968776f5e0",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -388,7 +398,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:48 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -396,7 +406,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "53f55a6c5ab9d24e207bb5968776f5e0",
- "x-ms-request-id": "20750996-b002-001b-3d21-5aea7a000000",
+ "x-ms-request-id": "9b330cd7-4002-002c-2d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -410,13 +420,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-b56c52d53281274c8b05f0f93ae82b87-6db77ed8804aa740-00",
+ "traceparent": "00-2cc4ec3b94168a4690b74a8fa6ffb247-3f8c3ee90031c749-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2dc532a3d5b16c51685afb71211eb036",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -425,14 +435,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:48 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "2dc532a3d5b16c51685afb71211eb036",
- "x-ms-request-id": "2075099f-b002-001b-4621-5aea7a000000",
+ "x-ms-request-id": "9b330ce1-4002-002c-3586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityDeleteRespectsEtagAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityDeleteRespectsEtagAsync.json
index 2d80c83b4836..2c20a77ac664 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityDeleteRespectsEtagAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityDeleteRespectsEtagAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-373fcb9b8b8b1c4ab51704c9149576de-c59218af08705c43-00",
+ "traceparent": "00-6634297d0469d741926ae68b272a2c63-60adb93f83824740-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e6cd5cbf6b63ae666115c193572e0449",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:43 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:00 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable15crens9\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "e6cd5cbf6b63ae666115c193572e0449",
- "x-ms-request-id": "20752196-b002-001b-6821-5aea7a000000",
+ "x-ms-request-id": "9b331683-4002-002c-4a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable15crens9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "88",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-41b45e22bfac9845bbc1541b6bde9898-d22b58f40b64c040-00",
+ "traceparent": "00-1715371bf06cad438f2fe21ce2e3bd1d-6b3220daa98f504a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5578b029765270f011502de13dc387fb",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:43 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -72,15 +74,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:42 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A43.0511787Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:01 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A01.8718646Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "5578b029765270f011502de13dc387fb",
- "x-ms-request-id": "207521a3-b002-001b-7421-5aea7a000000",
+ "x-ms-request-id": "9b33168c-4002-002c-5286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -89,14 +91,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable15crens9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0144b4c647b9197602c7a6862821e18c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:43 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -105,7 +108,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:01 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -113,7 +116,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0144b4c647b9197602c7a6862821e18c",
- "x-ms-request-id": "207521b5-b002-001b-0121-5aea7a000000",
+ "x-ms-request-id": "9b331691-4002-002c-5686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -122,12 +125,12 @@
{
"odata.type": "chrissscratch.testtable15crens9",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable15crens9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A43.0511787Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A01.8718646Z\u0027\u0022",
"odata.editLink": "testtable15crens9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:43.0511787Z",
+ "Timestamp": "2020-07-17T22:09:01.8718646Z",
"SomeStringProperty": "This is the original"
}
]
@@ -137,16 +140,17 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable15crens9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "DELETE",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"If-Match": "*",
- "traceparent": "00-4f126daa7f76494ba10862dface55643-e5f1c11696bb5442-00",
+ "traceparent": "00-a6a37e91aa99d945beb115cc692afdfe-ba9392dc765d674a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "09dd0bf62fa3e56ddd76521b38cc2352",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:43 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -155,14 +159,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:01 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "09dd0bf62fa3e56ddd76521b38cc2352",
- "x-ms-request-id": "207521c0-b002-001b-0c21-5aea7a000000",
+ "x-ms-request-id": "9b33169b-4002-002c-6086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -171,14 +175,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable15crens9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7990983947bfe244395f528ad06947ef",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:43 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -187,7 +192,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:42 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:01 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -195,7 +200,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "7990983947bfe244395f528ad06947ef",
- "x-ms-request-id": "207521d1-b002-001b-1d21-5aea7a000000",
+ "x-ms-request-id": "9b3316a6-4002-002c-6986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -207,17 +212,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable15crens9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "88",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-314580c11cde414592bac2f4c06a2c1b-d1c8df7595ccc747-00",
+ "traceparent": "00-f873a4b677e1944fb67ab8a248b6f792-c78fe5ffb0bd704b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "32eaa16e7ee69757475f2443f45be036",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:43 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -230,15 +236,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:43 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A43.2353319Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:01 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A02.0360015Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "32eaa16e7ee69757475f2443f45be036",
- "x-ms-request-id": "207521d8-b002-001b-2421-5aea7a000000",
+ "x-ms-request-id": "9b3316b0-4002-002c-7386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -247,14 +253,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable15crens9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8f4c54a36791afcdc6fad044dce21473",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:43 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -263,7 +270,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:43 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:01 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -271,7 +278,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "8f4c54a36791afcdc6fad044dce21473",
- "x-ms-request-id": "207521e6-b002-001b-3221-5aea7a000000",
+ "x-ms-request-id": "9b3316b9-4002-002c-7c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -280,12 +287,12 @@
{
"odata.type": "chrissscratch.testtable15crens9",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable15crens9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A43.2353319Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A02.0360015Z\u0027\u0022",
"odata.editLink": "testtable15crens9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:43.2353319Z",
+ "Timestamp": "2020-07-17T22:09:02.0360015Z",
"SomeStringProperty": "This is the original"
}
]
@@ -295,16 +302,17 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable15crens9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "DELETE",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A43.0511787Z\u0027\u0022",
- "traceparent": "00-1c42d0b790612844a523e5be4c30dcad-e129da04e59d5240-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T22%3A09%3A01.8718646Z\u0027\u0022",
+ "traceparent": "00-834f4bd0e718fc40a39f9372bb8b2e4a-0697dbbf2931564d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "97ad622ef1e1bb6b41f8325f2201eddd",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:43 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -313,7 +321,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:43 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:01 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -321,7 +329,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "97ad622ef1e1bb6b41f8325f2201eddd",
- "x-ms-request-id": "207521f1-b002-001b-3a21-5aea7a000000",
+ "x-ms-request-id": "9b3316c3-4002-002c-0486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -329,7 +337,7 @@
"code": "UpdateConditionNotSatisfied",
"message": {
"lang": "en-US",
- "value": "The update condition specified in the request was not satisfied.\nRequestId:207521f1-b002-001b-3a21-5aea7a000000\nTime:2020-07-14T20:56:43.3194497Z"
+ "value": "The update condition specified in the request was not satisfied.\nRequestId:9b3316c3-4002-002c-0486-5c46d5000000\nTime:2020-07-17T22:09:02.1210723Z"
}
}
}
@@ -338,16 +346,17 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable15crens9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "DELETE",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A43.2353319Z\u0027\u0022",
- "traceparent": "00-76d2a4a655e5854ea5c566f404686437-0a1cc9908cb3a147-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T22%3A09%3A02.0360015Z\u0027\u0022",
+ "traceparent": "00-2a5b74b9953485429040b7bafc6c4505-5610b5e0f9115641-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7ce71c7eb81c065ed43a6bebae13bb64",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:43 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -356,14 +365,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:43 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:01 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "7ce71c7eb81c065ed43a6bebae13bb64",
- "x-ms-request-id": "20752203-b002-001b-4b21-5aea7a000000",
+ "x-ms-request-id": "9b3316ca-4002-002c-0a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -372,14 +381,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable15crens9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9114b14a49aeb154e8914e98356d8dc5",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:43 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -388,7 +398,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:43 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:01 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -396,7 +406,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "9114b14a49aeb154e8914e98356d8dc5",
- "x-ms-request-id": "20752211-b002-001b-5721-5aea7a000000",
+ "x-ms-request-id": "9b3316d1-4002-002c-1186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -410,13 +420,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-0fc589938d884145942b045317a672c4-4b63bb304e98df42-00",
+ "traceparent": "00-bfa116f24398e54ab5bed1246dc4d678-56953dfb646be549-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "bfc5f20d98fa765604a6c2a786800c2e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:43 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -425,14 +435,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:43 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:01 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "bfc5f20d98fa765604a6c2a786800c2e",
- "x-ms-request-id": "20752222-b002-001b-6821-5aea7a000000",
+ "x-ms-request-id": "9b3316da-4002-002c-1a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityMergeDoesPartialPropertyUpdates.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityMergeDoesPartialPropertyUpdates.json
index 7a7003ebaf71..8aae3dd3c8cc 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityMergeDoesPartialPropertyUpdates.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityMergeDoesPartialPropertyUpdates.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6a1aedb62968ed48ba3974eeeed2f8f7-e783dfcb809d0048-00",
+ "traceparent": "00-25de51035803d64b8d8922e2c5df706a-6d88f44c16309e4b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d83a40587ac4bee4c2018fe4cafed795",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:48 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable1sfd3os6\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d83a40587ac4bee4c2018fe4cafed795",
- "x-ms-request-id": "207509a6-b002-001b-4d21-5aea7a000000",
+ "x-ms-request-id": "9b330cf6-4002-002c-4a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable1sfd3os6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "88",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-e1c9e8c931fde54eb0ad5e0576349d1d-bcaae6236fc5c644-00",
+ "traceparent": "00-9e87359e3878ea40877b4ae377de81f2-bacffa03435b234c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0a523213e8c55765d71c7952adc0ad7b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -72,15 +74,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:19 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A19.7738042Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:48 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A49.7257542Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0a523213e8c55765d71c7952adc0ad7b",
- "x-ms-request-id": "207509b3-b002-001b-5921-5aea7a000000",
+ "x-ms-request-id": "9b330cff-4002-002c-5286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -89,14 +91,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable1sfd3os6()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c75f72c7c8c206a3bb04d0d4c5156363",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -105,7 +108,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:48 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -113,7 +116,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "c75f72c7c8c206a3bb04d0d4c5156363",
- "x-ms-request-id": "207509bb-b002-001b-6021-5aea7a000000",
+ "x-ms-request-id": "9b330d0c-4002-002c-5e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -122,12 +125,12 @@
{
"odata.type": "chrissscratch.testtable1sfd3os6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable1sfd3os6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A19.7738042Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A49.7257542Z\u0027\u0022",
"odata.editLink": "testtable1sfd3os6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:19.7738042Z",
+ "Timestamp": "2020-07-17T22:08:49.7257542Z",
"SomeStringProperty": "This is the original"
}
]
@@ -137,17 +140,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable1sfd3os6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PATCH",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "80",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-07cd259d129b6045a88f5a8ee7aeec5f-106ab19f96b29849-00",
+ "traceparent": "00-d90aed28d57d224b9beb97cbbdc5c834-4a974e8145d6dd4b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "fefeac8f21845893d480ed5d6a6c1541",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -160,15 +164,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:19 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A19.8538703Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:48 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A49.8078233Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "fefeac8f21845893d480ed5d6a6c1541",
- "x-ms-request-id": "207509bf-b002-001b-6421-5aea7a000000",
+ "x-ms-request-id": "9b330d16-4002-002c-6786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -177,14 +181,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable1sfd3os6()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8b0269e1cd774b428e4b4ec1179192c1",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -193,7 +198,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:49 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -201,7 +206,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "8b0269e1cd774b428e4b4ec1179192c1",
- "x-ms-request-id": "207509c6-b002-001b-6b21-5aea7a000000",
+ "x-ms-request-id": "9b330d1b-4002-002c-6c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -210,12 +215,12 @@
{
"odata.type": "chrissscratch.testtable1sfd3os6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable1sfd3os6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A19.8538703Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A49.8078233Z\u0027\u0022",
"odata.editLink": "testtable1sfd3os6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:19.8538703Z",
+ "Timestamp": "2020-07-17T22:08:49.8078233Z",
"MergedProperty": "This was merged!",
"SomeStringProperty": "This is the original"
}
@@ -226,17 +231,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable1sfd3os6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PATCH",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "89",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-1c0ad549424bc147824500ea046e8370-75f957877ab8e241-00",
+ "traceparent": "00-909498e7d2c76b42aed533a09e99ab40-15a261a8e8bf454c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "00c316b8afc1a6f6df07f241db459c4f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -249,15 +255,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:19 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A19.9559553Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:49 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A49.8978974Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "00c316b8afc1a6f6df07f241db459c4f",
- "x-ms-request-id": "207509d1-b002-001b-7621-5aea7a000000",
+ "x-ms-request-id": "9b330d2c-4002-002c-7b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -266,14 +272,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable1sfd3os6()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5cf28feed813c1eb6ab36f39d2d14043",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -282,7 +289,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:49 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -290,7 +297,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "5cf28feed813c1eb6ab36f39d2d14043",
- "x-ms-request-id": "207509d5-b002-001b-7a21-5aea7a000000",
+ "x-ms-request-id": "9b330d34-4002-002c-0386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -299,12 +306,12 @@
{
"odata.type": "chrissscratch.testtable1sfd3os6",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable1sfd3os6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A19.9559553Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A49.8978974Z\u0027\u0022",
"odata.editLink": "testtable1sfd3os6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:19.9559553Z",
+ "Timestamp": "2020-07-17T22:08:49.8978974Z",
"MergedProperty": "merged value was updated!",
"SomeStringProperty": "This is the original"
}
@@ -317,13 +324,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-c47f963d951a5f449067c65092313498-5929924a870e364f-00",
+ "traceparent": "00-59f1e06886f11d4d9596ba8d61d6af82-ebbb406369056441-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "54a52bee14a83280735cab70da006f48",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -332,14 +339,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:49 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "54a52bee14a83280735cab70da006f48",
- "x-ms-request-id": "207509e1-b002-001b-0421-5aea7a000000",
+ "x-ms-request-id": "9b330d3b-4002-002c-0a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityMergeDoesPartialPropertyUpdatesAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityMergeDoesPartialPropertyUpdatesAsync.json
index 61627bae5473..29c40ae0216f 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityMergeDoesPartialPropertyUpdatesAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityMergeDoesPartialPropertyUpdatesAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-fab113241a90a4418d4f946e56900f7e-24eeeaf849b73642-00",
+ "traceparent": "00-996933e526d9eb4dbba12c0e7a066137-2c320d0289f01f41-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6459da925d81c985758d0b0e0a22d32a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:43 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:43 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:01 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablem45me066\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "6459da925d81c985758d0b0e0a22d32a",
- "x-ms-request-id": "20752232-b002-001b-7821-5aea7a000000",
+ "x-ms-request-id": "9b3316e4-4002-002c-2386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablem45me066(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "88",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-645a297bf139f74e9b8edd357e9cb147-2176ad0b89bbf84a-00",
+ "traceparent": "00-231b2c777bb987488ebe75d05285e6dc-f48581dc59e1d540-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "88139caf55f8d39083f617c82dc08657",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:43 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -72,15 +74,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:43 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A43.5545971Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:01 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A02.358269Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "88139caf55f8d39083f617c82dc08657",
- "x-ms-request-id": "2075223e-b002-001b-0321-5aea7a000000",
+ "x-ms-request-id": "9b3316f5-4002-002c-3386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -89,14 +91,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablem45me066()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6887dabf50206441447a8f6191897e7a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:43 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -105,7 +108,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:43 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:01 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -113,7 +116,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "6887dabf50206441447a8f6191897e7a",
- "x-ms-request-id": "2075225e-b002-001b-2021-5aea7a000000",
+ "x-ms-request-id": "9b331701-4002-002c-3f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -122,12 +125,12 @@
{
"odata.type": "chrissscratch.testtablem45me066",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablem45me066(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A43.5545971Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A02.358269Z\u0027\u0022",
"odata.editLink": "testtablem45me066(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:43.5545971Z",
+ "Timestamp": "2020-07-17T22:09:02.358269Z",
"SomeStringProperty": "This is the original"
}
]
@@ -137,17 +140,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablem45me066(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PATCH",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "80",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-3b5389f62cccdd409460811afdf83bfb-4340b7b18cc2af42-00",
+ "traceparent": "00-dd7d1e41ca83354db298d3dfe066eb47-a117db0dfb5dd04b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "358f0464eb308599c991fe666e0047cc",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:43 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -160,15 +164,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:43 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A43.6957149Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:01 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A02.4353335Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "358f0464eb308599c991fe666e0047cc",
- "x-ms-request-id": "20752272-b002-001b-3321-5aea7a000000",
+ "x-ms-request-id": "9b33170f-4002-002c-4a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -177,14 +181,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablem45me066()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "484bb685c14c5f6f5aae447dc62e41fa",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -193,7 +198,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:43 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:01 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -201,7 +206,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "484bb685c14c5f6f5aae447dc62e41fa",
- "x-ms-request-id": "2075227c-b002-001b-3d21-5aea7a000000",
+ "x-ms-request-id": "9b331715-4002-002c-4f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -210,12 +215,12 @@
{
"odata.type": "chrissscratch.testtablem45me066",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablem45me066(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A43.6957149Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A02.4353335Z\u0027\u0022",
"odata.editLink": "testtablem45me066(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:43.6957149Z",
+ "Timestamp": "2020-07-17T22:09:02.4353335Z",
"MergedProperty": "This was merged!",
"SomeStringProperty": "This is the original"
}
@@ -226,17 +231,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablem45me066(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PATCH",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "89",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-61d455733ac90c489c78ad2621730ffd-af44779390eca245-00",
+ "traceparent": "00-0b7efeaefd6b4246a2914e11524d8aa0-f58ecf9a41ca3944-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "28649d785031d32640029e8f51dbf643",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -249,15 +255,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:43 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A43.772779Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:01 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A02.5164009Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "28649d785031d32640029e8f51dbf643",
- "x-ms-request-id": "20752285-b002-001b-4521-5aea7a000000",
+ "x-ms-request-id": "9b331722-4002-002c-5b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -266,14 +272,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablem45me066()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "dbdbc232363da22d9530db81a61cbe9b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -282,7 +289,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:43 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:01 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -290,7 +297,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "dbdbc232363da22d9530db81a61cbe9b",
- "x-ms-request-id": "20752293-b002-001b-5321-5aea7a000000",
+ "x-ms-request-id": "9b331730-4002-002c-6886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -299,12 +306,12 @@
{
"odata.type": "chrissscratch.testtablem45me066",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablem45me066(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A43.772779Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A02.5164009Z\u0027\u0022",
"odata.editLink": "testtablem45me066(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:43.772779Z",
+ "Timestamp": "2020-07-17T22:09:02.5164009Z",
"MergedProperty": "merged value was updated!",
"SomeStringProperty": "This is the original"
}
@@ -317,13 +324,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-514435dd14b47e4cb599b2c380a575fd-c28d298f94f68044-00",
+ "traceparent": "00-83383ca11b1d22498a3fa6a7462c4e4c-ca2edf5d9fba5844-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d0ed044f1f9c349b9077074a22df0d7e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -332,14 +339,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:43 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:01 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d0ed044f1f9c349b9077074a22df0d7e",
- "x-ms-request-id": "207522a0-b002-001b-6021-5aea7a000000",
+ "x-ms-request-id": "9b331738-4002-002c-7086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityMergeRespectsEtag.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityMergeRespectsEtag.json
index 72fe8525b05f..37fc5d833c82 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityMergeRespectsEtag.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityMergeRespectsEtag.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a63676639c11514c8c731bbd8aaabe2f-7953ef2e03490745-00",
+ "traceparent": "00-6f19d77c9f6e52418b3ef4a8922dae9c-86006bb8f6889048-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "332a360cc7523f2cc21618e913032bee",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:49 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablegrtwjczw\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "332a360cc7523f2cc21618e913032bee",
- "x-ms-request-id": "207509e6-b002-001b-0921-5aea7a000000",
+ "x-ms-request-id": "9b330d43-4002-002c-1086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablegrtwjczw(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "88",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-f07af82874f4ef42a4e4d2ffd8409907-adad68ce2bb87745-00",
+ "traceparent": "00-1eae5279a8aa96469b76ffd5be686695-e7e4b13dc8602848-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e53ddd1d794cba39d392827cf7128099",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -72,15 +74,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:19 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A20.125096Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:49 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A50.0740438Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "e53ddd1d794cba39d392827cf7128099",
- "x-ms-request-id": "207509ef-b002-001b-1021-5aea7a000000",
+ "x-ms-request-id": "9b330d4d-4002-002c-1986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -89,14 +91,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablegrtwjczw()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f1a4552e85f25640887239317105d48b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -105,7 +108,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:19 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:49 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -113,7 +116,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f1a4552e85f25640887239317105d48b",
- "x-ms-request-id": "207509f7-b002-001b-1621-5aea7a000000",
+ "x-ms-request-id": "9b330d54-4002-002c-2086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -122,12 +125,12 @@
{
"odata.type": "chrissscratch.testtablegrtwjczw",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablegrtwjczw(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A20.125096Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A50.0740438Z\u0027\u0022",
"odata.editLink": "testtablegrtwjczw(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:20.125096Z",
+ "Timestamp": "2020-07-17T22:08:50.0740438Z",
"SomeStringProperty": "This is the original"
}
]
@@ -137,29 +140,30 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablegrtwjczw(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PATCH",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
- "Content-Length": "535",
+ "Content-Length": "536",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
"If-Match": "*",
- "traceparent": "00-de1ba7b95fa37644833e38d7c8d39489-5e61cc3b0b17b148-00",
+ "traceparent": "00-b9987e458e5c5347a01f211dc42e9d01-082f3a67320d2443-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a5f9b1a8a148bcc0f1797f35a9c3cb03",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
"odata.type": "chrissscratch.testtablegrtwjczw",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablegrtwjczw(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A20.125096Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A50.0740438Z\u0027\u0022",
"odata.editLink": "testtablegrtwjczw(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp": "2020-07-14T20:56:20.1250960Z",
+ "Timestamp": "2020-07-17T22:08:50.0740438Z",
"Timestamp@odata.type": "Edm.DateTime",
"SomeStringProperty": "This is new and improved!"
},
@@ -167,15 +171,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:20 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A20.2091676Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:49 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A50.1581141Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "a5f9b1a8a148bcc0f1797f35a9c3cb03",
- "x-ms-request-id": "20750a07-b002-001b-2121-5aea7a000000",
+ "x-ms-request-id": "9b330d5c-4002-002c-2786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -184,14 +188,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablegrtwjczw()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "aee54f97fc8698419ce75cd9400748cd",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -200,7 +205,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:49 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -208,7 +213,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "aee54f97fc8698419ce75cd9400748cd",
- "x-ms-request-id": "20750a13-b002-001b-2d21-5aea7a000000",
+ "x-ms-request-id": "9b330d67-4002-002c-3286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -217,12 +222,12 @@
{
"odata.type": "chrissscratch.testtablegrtwjczw",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablegrtwjczw(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A20.2091676Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A50.1581141Z\u0027\u0022",
"odata.editLink": "testtablegrtwjczw(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:20.2091676Z",
+ "Timestamp": "2020-07-17T22:08:50.1581141Z",
"SomeStringProperty": "This is new and improved!"
}
]
@@ -232,29 +237,30 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablegrtwjczw(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PATCH",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "546",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A20.125096Z\u0027\u0022",
- "traceparent": "00-ca8fd1ae3aad51439b78ffc8fa87ca21-fa59140b7e09f64a-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T22%3A08%3A50.0740438Z\u0027\u0022",
+ "traceparent": "00-734e92bfe458a24686cd5cda1c09e436-d0806564a412e047-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "46d3f7beda198d5194e70078060bacc5",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
"odata.type": "chrissscratch.testtablegrtwjczw",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablegrtwjczw(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A20.2091676Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A50.1581141Z\u0027\u0022",
"odata.editLink": "testtablegrtwjczw(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp": "2020-07-14T20:56:20.2091676Z",
+ "Timestamp": "2020-07-17T22:08:50.1581141Z",
"Timestamp@odata.type": "Edm.DateTime",
"SomeStringProperty": "This changed due to a matching Etag"
},
@@ -262,7 +268,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:49 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -270,7 +276,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "46d3f7beda198d5194e70078060bacc5",
- "x-ms-request-id": "20750a1e-b002-001b-3821-5aea7a000000",
+ "x-ms-request-id": "9b330d70-4002-002c-3b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -278,7 +284,7 @@
"code": "UpdateConditionNotSatisfied",
"message": {
"lang": "en-US",
- "value": "The update condition specified in the request was not satisfied.\nRequestId:20750a1e-b002-001b-3821-5aea7a000000\nTime:2020-07-14T20:56:20.2923100Z"
+ "value": "The update condition specified in the request was not satisfied.\nRequestId:9b330d70-4002-002c-3b86-5c46d5000000\nTime:2020-07-17T22:08:50.2401819Z"
}
}
}
@@ -287,29 +293,30 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablegrtwjczw(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PATCH",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "546",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A20.2091676Z\u0027\u0022",
- "traceparent": "00-ba6a795b2708af4f8ecf943e57aaf4bb-51d97e8057e71a45-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T22%3A08%3A50.1581141Z\u0027\u0022",
+ "traceparent": "00-487635728a78094abdddc2ca9a063990-982afda79760cb48-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "219935a72520ab046f60086144e77ce9",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
"odata.type": "chrissscratch.testtablegrtwjczw",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablegrtwjczw(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A20.2091676Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A50.1581141Z\u0027\u0022",
"odata.editLink": "testtablegrtwjczw(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp": "2020-07-14T20:56:20.2091676Z",
+ "Timestamp": "2020-07-17T22:08:50.1581141Z",
"Timestamp@odata.type": "Edm.DateTime",
"SomeStringProperty": "This changed due to a matching Etag"
},
@@ -317,15 +324,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:20 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A20.3392741Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:49 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A50.2812165Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "219935a72520ab046f60086144e77ce9",
- "x-ms-request-id": "20750a30-b002-001b-4921-5aea7a000000",
+ "x-ms-request-id": "9b330d73-4002-002c-3e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -334,14 +341,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablegrtwjczw()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b177b13085efbdeafe58199ffcc89291",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -350,7 +358,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:49 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -358,7 +366,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "b177b13085efbdeafe58199ffcc89291",
- "x-ms-request-id": "20750a3d-b002-001b-5521-5aea7a000000",
+ "x-ms-request-id": "9b330d7b-4002-002c-4686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -367,12 +375,12 @@
{
"odata.type": "chrissscratch.testtablegrtwjczw",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablegrtwjczw(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A20.3392741Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A50.2812165Z\u0027\u0022",
"odata.editLink": "testtablegrtwjczw(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:20.3392741Z",
+ "Timestamp": "2020-07-17T22:08:50.2812165Z",
"SomeStringProperty": "This changed due to a matching Etag"
}
]
@@ -384,13 +392,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-8d6f60b12373694da956b56e012eb0ed-7252505903927445-00",
+ "traceparent": "00-6e9d032d4760d642b1f37711662285cb-b9b903c862db204d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0b32973a276d98adf327d6b8d1ef49ad",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -399,14 +407,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:49 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0b32973a276d98adf327d6b8d1ef49ad",
- "x-ms-request-id": "20750a43-b002-001b-5b21-5aea7a000000",
+ "x-ms-request-id": "9b330d7f-4002-002c-4a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityMergeRespectsEtagAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityMergeRespectsEtagAsync.json
index edc10f2ae4b2..520af6a42f30 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityMergeRespectsEtagAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityMergeRespectsEtagAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-5ec794247fbdc5499bf9826761309e0a-629a11d7df317449-00",
+ "traceparent": "00-c4209e6d29443944bf28fc98806ae497-3715cc460777aa42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0944726010206347ea0dc57a2011e069",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:43 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:01 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableihsy07k1\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0944726010206347ea0dc57a2011e069",
- "x-ms-request-id": "207522ad-b002-001b-6d21-5aea7a000000",
+ "x-ms-request-id": "9b331746-4002-002c-7d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableihsy07k1(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "88",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-c6c2a948f9ed9e4fbd8af62b3c92309a-0ae733c16c02b045-00",
+ "traceparent": "00-cf3c3e33ef49cc41ae1603fad675963b-e309eeee4f8ccb4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "cf9e53e67f7eac7a5eb166ca532ad50a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -72,15 +74,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:43 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A43.9499264Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:01 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A02.703557Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "cf9e53e67f7eac7a5eb166ca532ad50a",
- "x-ms-request-id": "207522b1-b002-001b-7021-5aea7a000000",
+ "x-ms-request-id": "9b331757-4002-002c-0d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -89,14 +91,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableihsy07k1()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "362a3262066d16b95771828e642e66aa",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -105,7 +108,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:43 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:01 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -113,7 +116,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "362a3262066d16b95771828e642e66aa",
- "x-ms-request-id": "207522da-b002-001b-1621-5aea7a000000",
+ "x-ms-request-id": "9b331764-4002-002c-1a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -122,12 +125,12 @@
{
"odata.type": "chrissscratch.testtableihsy07k1",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableihsy07k1(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A43.9499264Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A02.703557Z\u0027\u0022",
"odata.editLink": "testtableihsy07k1(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:43.9499264Z",
+ "Timestamp": "2020-07-17T22:09:02.703557Z",
"SomeStringProperty": "This is the original"
}
]
@@ -137,29 +140,30 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableihsy07k1(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PATCH",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
- "Content-Length": "536",
+ "Content-Length": "535",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
"If-Match": "*",
- "traceparent": "00-a370b7b85c84524398428cba33448cb5-0a6830b94b113f47-00",
+ "traceparent": "00-bd8f94fe06b84a448f57e7fba283b6b0-0946f912c5df2e41-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f29550a32717f3e2ca5dc25fe09997e3",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
"odata.type": "chrissscratch.testtableihsy07k1",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableihsy07k1(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A43.9499264Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A02.703557Z\u0027\u0022",
"odata.editLink": "testtableihsy07k1(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp": "2020-07-14T20:56:43.9499264Z",
+ "Timestamp": "2020-07-17T22:09:02.7035570Z",
"Timestamp@odata.type": "Edm.DateTime",
"SomeStringProperty": "This is new and improved!"
},
@@ -167,15 +171,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:43 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A44.1250725Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:01 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A02.7976343Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f29550a32717f3e2ca5dc25fe09997e3",
- "x-ms-request-id": "207522e7-b002-001b-2321-5aea7a000000",
+ "x-ms-request-id": "9b33176f-4002-002c-2486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -184,14 +188,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableihsy07k1()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "dfbe6fef33b6e07d9987780cfdeb482f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -200,7 +205,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:43 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:02 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -208,7 +213,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "dfbe6fef33b6e07d9987780cfdeb482f",
- "x-ms-request-id": "207522f0-b002-001b-2c21-5aea7a000000",
+ "x-ms-request-id": "9b33177e-4002-002c-3186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -217,12 +222,12 @@
{
"odata.type": "chrissscratch.testtableihsy07k1",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableihsy07k1(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A44.1250725Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A02.7976343Z\u0027\u0022",
"odata.editLink": "testtableihsy07k1(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:44.1250725Z",
+ "Timestamp": "2020-07-17T22:09:02.7976343Z",
"SomeStringProperty": "This is new and improved!"
}
]
@@ -232,29 +237,30 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableihsy07k1(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PATCH",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "546",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A43.9499264Z\u0027\u0022",
- "traceparent": "00-1eda73771cc25842bc14994ee4ff16c1-318cb54a584c7641-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T22%3A09%3A02.703557Z\u0027\u0022",
+ "traceparent": "00-ae238dc092820c4cb30e95f881221993-a165b89868f3e44e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0326bc4ae3943bf350366b0f435a36bd",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
"odata.type": "chrissscratch.testtableihsy07k1",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableihsy07k1(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A44.1250725Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A02.7976343Z\u0027\u0022",
"odata.editLink": "testtableihsy07k1(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp": "2020-07-14T20:56:44.1250725Z",
+ "Timestamp": "2020-07-17T22:09:02.7976343Z",
"Timestamp@odata.type": "Edm.DateTime",
"SomeStringProperty": "This changed due to a matching Etag"
},
@@ -262,7 +268,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:43 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:02 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -270,7 +276,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0326bc4ae3943bf350366b0f435a36bd",
- "x-ms-request-id": "207522f9-b002-001b-3521-5aea7a000000",
+ "x-ms-request-id": "9b331786-4002-002c-3986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -278,7 +284,7 @@
"code": "UpdateConditionNotSatisfied",
"message": {
"lang": "en-US",
- "value": "The update condition specified in the request was not satisfied.\nRequestId:207522f9-b002-001b-3521-5aea7a000000\nTime:2020-07-14T20:56:44.2091887Z"
+ "value": "The update condition specified in the request was not satisfied.\nRequestId:9b331786-4002-002c-3986-5c46d5000000\nTime:2020-07-17T22:09:02.8997192Z"
}
}
}
@@ -287,29 +293,30 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableihsy07k1(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PATCH",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "546",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A44.1250725Z\u0027\u0022",
- "traceparent": "00-071c64e29832d6409d5a952bd122e596-b3135f26e4015e46-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T22%3A09%3A02.7976343Z\u0027\u0022",
+ "traceparent": "00-54bce08242c5314fb37c39e6d825b42a-462e08d87a82e143-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f49f9eda87706ff4d2b5588faed5f6de",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
"odata.type": "chrissscratch.testtableihsy07k1",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableihsy07k1(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A44.1250725Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A02.7976343Z\u0027\u0022",
"odata.editLink": "testtableihsy07k1(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp": "2020-07-14T20:56:44.1250725Z",
+ "Timestamp": "2020-07-17T22:09:02.7976343Z",
"Timestamp@odata.type": "Edm.DateTime",
"SomeStringProperty": "This changed due to a matching Etag"
},
@@ -317,15 +324,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:44 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A44.2481749Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:02 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A02.9457571Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f49f9eda87706ff4d2b5588faed5f6de",
- "x-ms-request-id": "20752300-b002-001b-3b21-5aea7a000000",
+ "x-ms-request-id": "9b331791-4002-002c-4386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -334,14 +341,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableihsy07k1()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2314931593720c4f7c828f80c76d9c3f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -350,7 +358,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:02 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -358,7 +366,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "2314931593720c4f7c828f80c76d9c3f",
- "x-ms-request-id": "20752307-b002-001b-4221-5aea7a000000",
+ "x-ms-request-id": "9b33179b-4002-002c-4b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -367,12 +375,12 @@
{
"odata.type": "chrissscratch.testtableihsy07k1",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableihsy07k1(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A44.2481749Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A02.9457571Z\u0027\u0022",
"odata.editLink": "testtableihsy07k1(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:44.2481749Z",
+ "Timestamp": "2020-07-17T22:09:02.9457571Z",
"SomeStringProperty": "This changed due to a matching Etag"
}
]
@@ -384,13 +392,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-52fb46000447ce468eba8f10951033f4-53e28b3e14450546-00",
+ "traceparent": "00-9fc382c7e6e6894483541750006a5003-88e9ea0513400843-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5e32ba50534cc3bfc8b630de8b638c7a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -399,14 +407,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:02 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "5e32ba50534cc3bfc8b630de8b638c7a",
- "x-ms-request-id": "2075230b-b002-001b-4621-5aea7a000000",
+ "x-ms-request-id": "9b3317a4-4002-002c-5486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityUpdateRespectsEtag.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityUpdateRespectsEtag.json
index 84d4e598e3fe..20730f644cad 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityUpdateRespectsEtag.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityUpdateRespectsEtag.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a13f4ecd97f08644ab2a0f587c829535-216711605d769546-00",
+ "traceparent": "00-0dfafcc9c4c1004db50f6b97568578d0-c100a27bdca43d43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "59e3599441fc6ba59598503d87811ebe",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:49 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable34jrbdpa\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "59e3599441fc6ba59598503d87811ebe",
- "x-ms-request-id": "20750a4b-b002-001b-6221-5aea7a000000",
+ "x-ms-request-id": "9b330d84-4002-002c-4f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable34jrbdpa(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "88",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-515671736486c942915bdbbd4c9e347a-ac38cf6b6b732844-00",
+ "traceparent": "00-41956af9661ae64a83a0e893cc9ab4e8-c1a70fdbb9979d45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "11ebaeaf49abfe074e3f53162e419b9d",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -72,15 +74,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:20 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A20.5164232Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:49 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A50.4663704Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "11ebaeaf49abfe074e3f53162e419b9d",
- "x-ms-request-id": "20750a53-b002-001b-6721-5aea7a000000",
+ "x-ms-request-id": "9b330d8b-4002-002c-5586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -89,14 +91,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable34jrbdpa()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "cc146a8cffc0705608d60c42a395724d",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -105,7 +108,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:49 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -113,7 +116,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "cc146a8cffc0705608d60c42a395724d",
- "x-ms-request-id": "20750a63-b002-001b-7521-5aea7a000000",
+ "x-ms-request-id": "9b330d92-4002-002c-5c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -122,12 +125,12 @@
{
"odata.type": "chrissscratch.testtable34jrbdpa",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable34jrbdpa(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A20.5164232Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A50.4663704Z\u0027\u0022",
"odata.editLink": "testtable34jrbdpa(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:20.5164232Z",
+ "Timestamp": "2020-07-17T22:08:50.4663704Z",
"SomeStringProperty": "This is the original"
}
]
@@ -137,29 +140,30 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable34jrbdpa(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "536",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
"If-Match": "*",
- "traceparent": "00-ea1f7204958a0148842448aeb20c5f51-e692b4abc7549a49-00",
+ "traceparent": "00-95bfe0d6a32fec4983eacaa3d4421571-0022cf3eb7b64741-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "de5238e627460fe8dc5aae0151546757",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
"odata.type": "chrissscratch.testtable34jrbdpa",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable34jrbdpa(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A20.5164232Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A50.4663704Z\u0027\u0022",
"odata.editLink": "testtable34jrbdpa(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp": "2020-07-14T20:56:20.5164232Z",
+ "Timestamp": "2020-07-17T22:08:50.4663704Z",
"Timestamp@odata.type": "Edm.DateTime",
"SomeStringProperty": "This is new and improved!"
},
@@ -167,15 +171,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:20 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A20.6014922Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:49 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A50.5504399Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "de5238e627460fe8dc5aae0151546757",
- "x-ms-request-id": "20750a71-b002-001b-0221-5aea7a000000",
+ "x-ms-request-id": "9b330d9b-4002-002c-6586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -184,14 +188,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable34jrbdpa()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "16fb9fb5f20ab003587b09d43dc45bb8",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -200,7 +205,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:49 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -208,7 +213,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "16fb9fb5f20ab003587b09d43dc45bb8",
- "x-ms-request-id": "20750a82-b002-001b-1021-5aea7a000000",
+ "x-ms-request-id": "9b330d9e-4002-002c-6886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -217,12 +222,12 @@
{
"odata.type": "chrissscratch.testtable34jrbdpa",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable34jrbdpa(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A20.6014922Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A50.5504399Z\u0027\u0022",
"odata.editLink": "testtable34jrbdpa(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:20.6014922Z",
+ "Timestamp": "2020-07-17T22:08:50.5504399Z",
"SomeStringProperty": "This is new and improved!"
}
]
@@ -232,29 +237,30 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable34jrbdpa(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "546",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A20.5164232Z\u0027\u0022",
- "traceparent": "00-f6dc506330b18e43822aad2d33540bcc-db549efa1b05f640-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T22%3A08%3A50.4663704Z\u0027\u0022",
+ "traceparent": "00-a78e11438509f247814012f091a0a807-6afb3d211a1cfc47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f63006ccbcee64578104f06550541eb3",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
"odata.type": "chrissscratch.testtable34jrbdpa",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable34jrbdpa(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A20.6014922Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A50.5504399Z\u0027\u0022",
"odata.editLink": "testtable34jrbdpa(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp": "2020-07-14T20:56:20.6014922Z",
+ "Timestamp": "2020-07-17T22:08:50.5504399Z",
"Timestamp@odata.type": "Edm.DateTime",
"SomeStringProperty": "This changed due to a matching Etag"
},
@@ -262,7 +268,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:49 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -270,7 +276,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f63006ccbcee64578104f06550541eb3",
- "x-ms-request-id": "20750a92-b002-001b-1f21-5aea7a000000",
+ "x-ms-request-id": "9b330da5-4002-002c-6f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -278,7 +284,7 @@
"code": "UpdateConditionNotSatisfied",
"message": {
"lang": "en-US",
- "value": "The update condition specified in the request was not satisfied.\nRequestId:20750a92-b002-001b-1f21-5aea7a000000\nTime:2020-07-14T20:56:20.6876383Z"
+ "value": "The update condition specified in the request was not satisfied.\nRequestId:9b330da5-4002-002c-6f86-5c46d5000000\nTime:2020-07-17T22:08:50.6345102Z"
}
}
}
@@ -287,29 +293,30 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable34jrbdpa(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "546",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A20.6014922Z\u0027\u0022",
- "traceparent": "00-1faa10e132345742bb28e353b11a0d97-34aac4a791fa784f-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T22%3A08%3A50.5504399Z\u0027\u0022",
+ "traceparent": "00-7232b54319ef0b47940d6a8e0d660c60-6dca4177a56b8140-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "038db56f5c9af44234a286ca1e14d117",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
"odata.type": "chrissscratch.testtable34jrbdpa",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable34jrbdpa(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A20.6014922Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A50.5504399Z\u0027\u0022",
"odata.editLink": "testtable34jrbdpa(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp": "2020-07-14T20:56:20.6014922Z",
+ "Timestamp": "2020-07-17T22:08:50.5504399Z",
"Timestamp@odata.type": "Edm.DateTime",
"SomeStringProperty": "This changed due to a matching Etag"
},
@@ -317,15 +324,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:20 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A20.7295992Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:49 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A50.6775456Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "038db56f5c9af44234a286ca1e14d117",
- "x-ms-request-id": "20750a9d-b002-001b-2a21-5aea7a000000",
+ "x-ms-request-id": "9b330daa-4002-002c-7486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -334,14 +341,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable34jrbdpa()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4a34f6ff7024f86848969405019d5f03",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -350,7 +358,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:49 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -358,7 +366,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "4a34f6ff7024f86848969405019d5f03",
- "x-ms-request-id": "20750aa7-b002-001b-3421-5aea7a000000",
+ "x-ms-request-id": "9b330daf-4002-002c-7986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -367,12 +375,12 @@
{
"odata.type": "chrissscratch.testtable34jrbdpa",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable34jrbdpa(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A20.7295992Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A50.6775456Z\u0027\u0022",
"odata.editLink": "testtable34jrbdpa(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:20.7295992Z",
+ "Timestamp": "2020-07-17T22:08:50.6775456Z",
"SomeStringProperty": "This changed due to a matching Etag"
}
]
@@ -384,13 +392,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-6fa5cd6c0d7dd949bb26b453bd6e64a0-5221f4a616d52c4e-00",
+ "traceparent": "00-3a43a9ce243f924d97537de47ee5d531-4dc5cd4a9e62684c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8864555d5837701ec43bc14b368c466d",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -399,14 +407,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:49 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "8864555d5837701ec43bc14b368c466d",
- "x-ms-request-id": "20750ab0-b002-001b-3d21-5aea7a000000",
+ "x-ms-request-id": "9b330db4-4002-002c-7d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityUpdateRespectsEtagAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityUpdateRespectsEtagAsync.json
index ba267f5ce787..a08798e01fb0 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityUpdateRespectsEtagAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/EntityUpdateRespectsEtagAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-54285447b3b4aa4297f2449d1a28d5ac-e3e3bfdecf9f9b44-00",
+ "traceparent": "00-3269191f31f9f1428cc2df3d62e96404-bd01346088f47b48-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0e491bf140075806a995cdad58b0da31",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:02 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableqlvala7b\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0e491bf140075806a995cdad58b0da31",
- "x-ms-request-id": "20752312-b002-001b-4d21-5aea7a000000",
+ "x-ms-request-id": "9b3317b0-4002-002c-5e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableqlvala7b(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "88",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-f5feaffe9f8c0a4eb8ce849353fa5b7f-0a2ba8bcdd453447-00",
+ "traceparent": "00-3dcd575275be61478d11ceadb7b44cfb-7b34cfc7366b1e4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "895abd28b001e4795001d0922cb80277",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -72,15 +74,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:44 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A44.4213181Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:02 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A03.130911Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "895abd28b001e4795001d0922cb80277",
- "x-ms-request-id": "2075231a-b002-001b-5421-5aea7a000000",
+ "x-ms-request-id": "9b3317c0-4002-002c-6b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -89,14 +91,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableqlvala7b()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6906470b8ce8c7a9541838e5f85e1369",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -105,7 +108,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:02 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -113,7 +116,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "6906470b8ce8c7a9541838e5f85e1369",
- "x-ms-request-id": "2075231f-b002-001b-5921-5aea7a000000",
+ "x-ms-request-id": "9b3317ca-4002-002c-7586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -122,12 +125,12 @@
{
"odata.type": "chrissscratch.testtableqlvala7b",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableqlvala7b(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A44.4213181Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A03.130911Z\u0027\u0022",
"odata.editLink": "testtableqlvala7b(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:44.4213181Z",
+ "Timestamp": "2020-07-17T22:09:03.130911Z",
"SomeStringProperty": "This is the original"
}
]
@@ -137,29 +140,30 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableqlvala7b(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
- "Content-Length": "536",
+ "Content-Length": "535",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
"If-Match": "*",
- "traceparent": "00-f5a0ac55fe4a6645bc700865baaaebb0-a0d5315c9e4c2048-00",
+ "traceparent": "00-d70ed90b1ebd014997f97bfb28ecda73-286bbfcd69ab1b4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c1063c703aa86befd02ab73e36c57cdd",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
"odata.type": "chrissscratch.testtableqlvala7b",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableqlvala7b(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A44.4213181Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A03.130911Z\u0027\u0022",
"odata.editLink": "testtableqlvala7b(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp": "2020-07-14T20:56:44.4213181Z",
+ "Timestamp": "2020-07-17T22:09:03.1309110Z",
"Timestamp@odata.type": "Edm.DateTime",
"SomeStringProperty": "This is new and improved!"
},
@@ -167,15 +171,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:44 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A44.5123942Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:02 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A03.2069747Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "c1063c703aa86befd02ab73e36c57cdd",
- "x-ms-request-id": "2075232d-b002-001b-6721-5aea7a000000",
+ "x-ms-request-id": "9b3317d4-4002-002c-7d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -184,14 +188,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableqlvala7b()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "694d36cac7d49cd8139335e87893ecf2",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -200,7 +205,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:02 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -208,7 +213,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "694d36cac7d49cd8139335e87893ecf2",
- "x-ms-request-id": "20752338-b002-001b-7221-5aea7a000000",
+ "x-ms-request-id": "9b3317e1-4002-002c-0886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -217,12 +222,12 @@
{
"odata.type": "chrissscratch.testtableqlvala7b",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableqlvala7b(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A44.5123942Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A03.2069747Z\u0027\u0022",
"odata.editLink": "testtableqlvala7b(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:44.5123942Z",
+ "Timestamp": "2020-07-17T22:09:03.2069747Z",
"SomeStringProperty": "This is new and improved!"
}
]
@@ -232,29 +237,30 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableqlvala7b(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "546",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A44.4213181Z\u0027\u0022",
- "traceparent": "00-d54d987de4c1704cbda38a8b253b1cfd-62bce95dabc3ed40-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T22%3A09%3A03.130911Z\u0027\u0022",
+ "traceparent": "00-b7979db76768ca47bc4808bb3051a348-4b33e1de8277fc4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f02267ee40b1d0ce579b99bed46a918e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
"odata.type": "chrissscratch.testtableqlvala7b",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableqlvala7b(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A44.5123942Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A03.2069747Z\u0027\u0022",
"odata.editLink": "testtableqlvala7b(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp": "2020-07-14T20:56:44.5123942Z",
+ "Timestamp": "2020-07-17T22:09:03.2069747Z",
"Timestamp@odata.type": "Edm.DateTime",
"SomeStringProperty": "This changed due to a matching Etag"
},
@@ -262,7 +268,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:02 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -270,7 +276,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f02267ee40b1d0ce579b99bed46a918e",
- "x-ms-request-id": "20752345-b002-001b-7d21-5aea7a000000",
+ "x-ms-request-id": "9b3317e8-4002-002c-0f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -278,7 +284,7 @@
"code": "UpdateConditionNotSatisfied",
"message": {
"lang": "en-US",
- "value": "The update condition specified in the request was not satisfied.\nRequestId:20752345-b002-001b-7d21-5aea7a000000\nTime:2020-07-14T20:56:44.6015144Z"
+ "value": "The update condition specified in the request was not satisfied.\nRequestId:9b3317e8-4002-002c-0f86-5c46d5000000\nTime:2020-07-17T22:09:03.2920454Z"
}
}
}
@@ -287,29 +293,30 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableqlvala7b(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "546",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "If-Match": "W/\u0022datetime\u00272020-07-14T20%3A56%3A44.5123942Z\u0027\u0022",
- "traceparent": "00-3fecc1f1f73fbf478a71084248f33b81-8f95471b86150a47-00",
+ "If-Match": "W/\u0022datetime\u00272020-07-17T22%3A09%3A03.2069747Z\u0027\u0022",
+ "traceparent": "00-d960b9af5c5992499f6d6e4cf0d34650-575120db45fd0948-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c11a5a9caa11a895636aad150507f23c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": {
"odata.type": "chrissscratch.testtableqlvala7b",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableqlvala7b(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A44.5123942Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A03.2069747Z\u0027\u0022",
"odata.editLink": "testtableqlvala7b(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
- "Timestamp": "2020-07-14T20:56:44.5123942Z",
+ "Timestamp": "2020-07-17T22:09:03.2069747Z",
"Timestamp@odata.type": "Edm.DateTime",
"SomeStringProperty": "This changed due to a matching Etag"
},
@@ -317,15 +324,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:44 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A44.6395Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:02 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A03.3320787Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "c11a5a9caa11a895636aad150507f23c",
- "x-ms-request-id": "2075234c-b002-001b-0421-5aea7a000000",
+ "x-ms-request-id": "9b3317f2-4002-002c-1886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -334,14 +341,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableqlvala7b()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%271%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "cf50c43d8ba38a2b677c11392e19c7a8",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -350,7 +358,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:02 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -358,7 +366,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "cf50c43d8ba38a2b677c11392e19c7a8",
- "x-ms-request-id": "20752356-b002-001b-0e21-5aea7a000000",
+ "x-ms-request-id": "9b3317f9-4002-002c-1f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -367,12 +375,12 @@
{
"odata.type": "chrissscratch.testtableqlvala7b",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableqlvala7b(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A44.6395Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A03.3320787Z\u0027\u0022",
"odata.editLink": "testtableqlvala7b(PartitionKey=\u0027somPartition\u0027,RowKey=\u00271\u0027)",
"PartitionKey": "somPartition",
"RowKey": "1",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:44.6395Z",
+ "Timestamp": "2020-07-17T22:09:03.3320787Z",
"SomeStringProperty": "This changed due to a matching Etag"
}
]
@@ -384,13 +392,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-4050b8841b8b6043bed43fa5efbbc37d-c3369652e02c504f-00",
+ "traceparent": "00-b451f7f61ce7564585980be05454b7c0-322733377341a348-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1e4ca7022a7844e1d2798d4792b9cb50",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:45 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -399,14 +407,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:02 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "1e4ca7022a7844e1d2798d4792b9cb50",
- "x-ms-request-id": "20752366-b002-001b-1e21-5aea7a000000",
+ "x-ms-request-id": "9b331804-4002-002c-2986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/GetAccessPoliciesReturnsPolicies.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/GetAccessPoliciesReturnsPolicies.json
index 59e56b1637de..6120da92291b 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/GetAccessPoliciesReturnsPolicies.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/GetAccessPoliciesReturnsPolicies.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d137d8f56e98244e827a53af1b976d9c-08df3bc02be9f84f-00",
+ "traceparent": "00-90266e7a81a364408d941a1a34dc8860-f7d88e6aa6c10c4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "67573acf221df4acc624e95f738990c9",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:50 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablebwnd5w7z\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "67573acf221df4acc624e95f738990c9",
- "x-ms-request-id": "20750ac7-b002-001b-5321-5aea7a000000",
+ "x-ms-request-id": "9b330dc3-4002-002c-0c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,16 +50,17 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablebwnd5w7z?comp=acl",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/xml",
"Authorization": "Sanitized",
"Content-Length": "239",
"Content-Type": "application/xml",
- "traceparent": "00-9cb7e3e5132bb74ca9eeba49327f2243-e886f353e1397843-00",
+ "traceparent": "00-efdb937273b55f4682be13a816a839b4-2d80ee5356913d41-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "771a095a4a7b1337f3c5bad8f76fe327",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -66,13 +68,13 @@
"StatusCode": 204,
"ResponseHeaders": {
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:50 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-client-request-id": "771a095a4a7b1337f3c5bad8f76fe327",
- "x-ms-request-id": "20750ad6-b002-001b-6121-5aea7a000000",
+ "x-ms-request-id": "9b330dd1-4002-002c-1986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -82,13 +84,13 @@
"RequestMethod": "GET",
"RequestHeaders": {
"Authorization": "Sanitized",
- "traceparent": "00-aa0a3693634ec84c9b35ec50763802f5-49fbba20f20e7444-00",
+ "traceparent": "00-b55751bca3063e499c19220ef1712e9f-401e199f8a488249-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5e47ef735f822f1d107860e2d08e5242",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -96,14 +98,14 @@
"StatusCode": 200,
"ResponseHeaders": {
"Content-Type": "application/xml",
- "Date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:50 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"Transfer-Encoding": "chunked",
"x-ms-client-request-id": "5e47ef735f822f1d107860e2d08e5242",
- "x-ms-request-id": "20750ae5-b002-001b-7021-5aea7a000000",
+ "x-ms-request-id": "9b330df9-4002-002c-4186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CSignedIdentifiers\u003E\u003CSignedIdentifier\u003E\u003CId\u003EMyPolicy\u003C/Id\u003E\u003CAccessPolicy\u003E\u003CStart\u003E2020-01-01T01:01:00.0000000Z\u003C/Start\u003E\u003CExpiry\u003E2021-01-01T01:01:00.0000000Z\u003C/Expiry\u003E\u003CPermission\u003Er\u003C/Permission\u003E\u003C/AccessPolicy\u003E\u003C/SignedIdentifier\u003E\u003C/SignedIdentifiers\u003E"
@@ -114,13 +116,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-f8496ef1f43d8047ba40b36f30af4981-b2b302f26dd80e4d-00",
+ "traceparent": "00-f0557359d4161044904c6141ccd66890-c707180f5776c14c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5db2ca35904b84e80344745867d3fc57",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -129,14 +131,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:50 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "5db2ca35904b84e80344745867d3fc57",
- "x-ms-request-id": "20750af3-b002-001b-7e21-5aea7a000000",
+ "x-ms-request-id": "9b330e1b-4002-002c-6386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/GetAccessPoliciesReturnsPoliciesAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/GetAccessPoliciesReturnsPoliciesAsync.json
index 6900ed9663f7..7e9a38fb7b80 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/GetAccessPoliciesReturnsPoliciesAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/GetAccessPoliciesReturnsPoliciesAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-221e3770fb6f41489a683ffd4002cc6d-1aaedf675b54a743-00",
+ "traceparent": "00-f1681807682aa14987b51d91debda31d-c872c8d6d82da048-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "479f98a5994d1fe8edbf0960070322f0",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:45 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:02 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableshjbae05\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "479f98a5994d1fe8edbf0960070322f0",
- "x-ms-request-id": "2075236e-b002-001b-2621-5aea7a000000",
+ "x-ms-request-id": "9b331813-4002-002c-3886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,16 +50,17 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableshjbae05?comp=acl",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/xml",
"Authorization": "Sanitized",
"Content-Length": "239",
"Content-Type": "application/xml",
- "traceparent": "00-153336fae29e95488664797f6ebf10a2-1a11017894a50942-00",
+ "traceparent": "00-605145f11f971d4ca0a8dd702754012e-6718497a4f9cce41-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "26eb4a62297b9880c1f5826b80d71652",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:45 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -66,13 +68,13 @@
"StatusCode": 204,
"ResponseHeaders": {
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:02 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-client-request-id": "26eb4a62297b9880c1f5826b80d71652",
- "x-ms-request-id": "20752379-b002-001b-2e21-5aea7a000000",
+ "x-ms-request-id": "9b33182c-4002-002c-4e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -82,13 +84,13 @@
"RequestMethod": "GET",
"RequestHeaders": {
"Authorization": "Sanitized",
- "traceparent": "00-6566d382a219c74d8d8faab2481b11c6-e5699ff7af98da44-00",
+ "traceparent": "00-56f23fc70dc2f04cafde4a08ac2c1379-f576893775444c4f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "fc9c245018e513473e37c82a44d5b423",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:45 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -96,14 +98,14 @@
"StatusCode": 200,
"ResponseHeaders": {
"Content-Type": "application/xml",
- "Date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:02 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"Transfer-Encoding": "chunked",
"x-ms-client-request-id": "fc9c245018e513473e37c82a44d5b423",
- "x-ms-request-id": "2075237c-b002-001b-3121-5aea7a000000",
+ "x-ms-request-id": "9b331832-4002-002c-5486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CSignedIdentifiers\u003E\u003CSignedIdentifier\u003E\u003CId\u003EMyPolicy\u003C/Id\u003E\u003CAccessPolicy\u003E\u003CStart\u003E2020-01-01T01:01:00.0000000Z\u003C/Start\u003E\u003CExpiry\u003E2021-01-01T01:01:00.0000000Z\u003C/Expiry\u003E\u003CPermission\u003Er\u003C/Permission\u003E\u003C/AccessPolicy\u003E\u003C/SignedIdentifier\u003E\u003C/SignedIdentifiers\u003E"
@@ -114,13 +116,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-25f77a019c8faa46883c72783a1a1784-3b9c6cce282c7b49-00",
+ "traceparent": "00-15d87abd6c82c843b120e682bceabf0f-0e47d07b8e0eea49-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "080620cf67357be518068558177c9e15",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:45 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -129,14 +131,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:02 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "080620cf67357be518068558177c9e15",
- "x-ms-request-id": "20752383-b002-001b-3721-5aea7a000000",
+ "x-ms-request-id": "9b331839-4002-002c-5b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/QueryReturnsEntitiesWithoutOdataAnnoations.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/QueryReturnsEntitiesWithoutOdataAnnoations.json
index 5e29dc070b4e..a0168d611c08 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/QueryReturnsEntitiesWithoutOdataAnnoations.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/QueryReturnsEntitiesWithoutOdataAnnoations.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-5ad68446ddacc44d9e05526f0119f5e7-8ec321dee3321747-00",
+ "traceparent": "00-b5c57cf99484384494c9f8bb8a62ecd6-a0acf1f27053d745-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "34c6dbc1460cc62dd55fdd6430d3a8ed",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:50 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablevxz83ty2\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "34c6dbc1460cc62dd55fdd6430d3a8ed",
- "x-ms-request-id": "20750af9-b002-001b-0421-5aea7a000000",
+ "x-ms-request-id": "9b330e35-4002-002c-7d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablevxz83ty2(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-0c339e5c6c45364486d48c82e69190c0-a092648355695e4d-00",
+ "traceparent": "00-a93f8ee12cf62045a9c55b4881f057a5-30a75f1e82ad2548-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "758acc3d35bb1604c156f32fe2981d2d",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -85,15 +87,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:20 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A21.0838931Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:50 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A51.2250012Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "758acc3d35bb1604c156f32fe2981d2d",
- "x-ms-request-id": "20750b02-b002-001b-0c21-5aea7a000000",
+ "x-ms-request-id": "9b330e4a-4002-002c-1086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -102,14 +104,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablevxz83ty2()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%2701%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "db87d345fe28899f09e5d3a646b3727a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -118,7 +121,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:50 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -126,7 +129,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "db87d345fe28899f09e5d3a646b3727a",
- "x-ms-request-id": "20750b0b-b002-001b-1421-5aea7a000000",
+ "x-ms-request-id": "9b330e50-4002-002c-1586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -135,12 +138,12 @@
{
"odata.type": "chrissscratch.testtablevxz83ty2",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevxz83ty2(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A21.0838931Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A51.2250012Z\u0027\u0022",
"odata.editLink": "testtablevxz83ty2(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:21.0838931Z",
+ "Timestamp": "2020-07-17T22:08:51.2250012Z",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeDateProperty@odata.type": "Edm.DateTime",
@@ -163,13 +166,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-1648efcf1822eb4abca664267e5f34ea-d06a42be1f47fd4e-00",
+ "traceparent": "00-6e5efe43dc2fc14990530cb3217652a5-1d390ba8c4392d4c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "95d636a4cf2c8c47d6af72b552fde33c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -178,14 +181,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:20 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:50 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "95d636a4cf2c8c47d6af72b552fde33c",
- "x-ms-request-id": "20750b15-b002-001b-1d21-5aea7a000000",
+ "x-ms-request-id": "9b330e56-4002-002c-1b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/QueryReturnsEntitiesWithoutOdataAnnoationsAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/QueryReturnsEntitiesWithoutOdataAnnoationsAsync.json
index 7041e5eb8476..da387582f6a2 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/QueryReturnsEntitiesWithoutOdataAnnoationsAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/QueryReturnsEntitiesWithoutOdataAnnoationsAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d4e44dabd1fc7a48807b70115c6351d0-b5e5f077d7d30848-00",
+ "traceparent": "00-ee6dfb34e6d62f44898556b774001902-156fd917256c6746-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2074a3dd88e3801f8f2146e15eca6084",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:45 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:02 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableifprd13i\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "2074a3dd88e3801f8f2146e15eca6084",
- "x-ms-request-id": "2075238d-b002-001b-4121-5aea7a000000",
+ "x-ms-request-id": "9b33183f-4002-002c-6186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableifprd13i(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-f915b953d60d2d4b9ba162f9a81114e8-87e60eed93e3a143-00",
+ "traceparent": "00-0b0234e1a57394479316e408a1295627-2d6a0f8568465041-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f49a88af3fa3808515987b6a9b4a7525",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:45 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -85,15 +87,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:44 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A45.0178147Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:02 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A03.7344136Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f49a88af3fa3808515987b6a9b4a7525",
- "x-ms-request-id": "2075239a-b002-001b-4c21-5aea7a000000",
+ "x-ms-request-id": "9b331847-4002-002c-6786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -102,14 +104,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableifprd13i()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%2701%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c3ead003807bb2ac9d92948e571b7540",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:45 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -118,7 +121,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:02 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -126,7 +129,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "c3ead003807bb2ac9d92948e571b7540",
- "x-ms-request-id": "207523a6-b002-001b-5721-5aea7a000000",
+ "x-ms-request-id": "9b33184e-4002-002c-6d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -135,12 +138,12 @@
{
"odata.type": "chrissscratch.testtableifprd13i",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableifprd13i(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A45.0178147Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A03.7344136Z\u0027\u0022",
"odata.editLink": "testtableifprd13i(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:45.0178147Z",
+ "Timestamp": "2020-07-17T22:09:03.7344136Z",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeDateProperty@odata.type": "Edm.DateTime",
@@ -163,13 +166,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-74d79464f3173347ab40ce869f08db27-2cf1e4551da4634a-00",
+ "traceparent": "00-10dd797edd4ac54e84087885aa5ad575-d01306f2c7b65241-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "654ea8515a0e9d351df30a4b0db4e544",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:45 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -178,14 +181,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:02 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "654ea8515a0e9d351df30a4b0db4e544",
- "x-ms-request-id": "207523b0-b002-001b-6121-5aea7a000000",
+ "x-ms-request-id": "9b33185c-4002-002c-7b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/UpsertedEntitiesAreRoundtrippedWithProperOdataAnnoations.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/UpsertedEntitiesAreRoundtrippedWithProperOdataAnnoations.json
index 4e37dadf68b4..83cc09c3702c 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/UpsertedEntitiesAreRoundtrippedWithProperOdataAnnoations.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/UpsertedEntitiesAreRoundtrippedWithProperOdataAnnoations.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c55480abce17a242be074b17d2bc91ec-2c4e824eade0a941-00",
+ "traceparent": "00-2c6bbf91f8e60c42837f577a00eb76f0-9da42830280edf4d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f926ac74e0b73d77a3a9607a59021ca1",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:21 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:50 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable4vn4yn1f\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f926ac74e0b73d77a3a9607a59021ca1",
- "x-ms-request-id": "20750b1d-b002-001b-2521-5aea7a000000",
+ "x-ms-request-id": "9b330e5e-4002-002c-2386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable4vn4yn1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-62b2f6d16c88fa4290e0f0d0ad9f2ddb-325e52c97c3d0a47-00",
+ "traceparent": "00-211b6dc5af136344b2741ea2cab2ac49-bdc012d590fec845-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7cb665af1a65ae266ca4688414705a2e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -85,15 +87,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:21 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A21.2610409Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:08:50 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A51.4091538Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "7cb665af1a65ae266ca4688414705a2e",
- "x-ms-request-id": "20750b27-b002-001b-2e21-5aea7a000000",
+ "x-ms-request-id": "9b330e6b-4002-002c-2f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -102,14 +104,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable4vn4yn1f()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%2701%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6dd2d3b5cbb28c0e209df0802a389ebb",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -118,7 +121,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:21 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:50 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -126,7 +129,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "6dd2d3b5cbb28c0e209df0802a389ebb",
- "x-ms-request-id": "20750b31-b002-001b-3821-5aea7a000000",
+ "x-ms-request-id": "9b330e73-4002-002c-3786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -135,12 +138,12 @@
{
"odata.type": "chrissscratch.testtable4vn4yn1f",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable4vn4yn1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A21.2610409Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A08%3A51.4091538Z\u0027\u0022",
"odata.editLink": "testtable4vn4yn1f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:21.2610409Z",
+ "Timestamp": "2020-07-17T22:08:51.4091538Z",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeDateProperty@odata.type": "Edm.DateTime",
@@ -163,13 +166,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-b96682588056da4db9caaacc01eb3fae-daaacf2dad23604f-00",
+ "traceparent": "00-b736def88b21944b990faf26b6dab213-5b80fabbded96846-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2e5ea6679b045a0786778d1278f22933",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:08:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -178,14 +181,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:21 GMT",
+ "Date": "Fri, 17 Jul 2020 22:08:50 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "2e5ea6679b045a0786778d1278f22933",
- "x-ms-request-id": "20750b3d-b002-001b-4421-5aea7a000000",
+ "x-ms-request-id": "9b330e79-4002-002c-3d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/UpsertedEntitiesAreRoundtrippedWithProperOdataAnnoationsAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/UpsertedEntitiesAreRoundtrippedWithProperOdataAnnoationsAsync.json
index 737640cdd05a..db06b47690fd 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/UpsertedEntitiesAreRoundtrippedWithProperOdataAnnoationsAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/UpsertedEntitiesAreRoundtrippedWithProperOdataAnnoationsAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1e55b105e959394399e3d010a8f727fa-dd60a0f6eb9b4d47-00",
+ "traceparent": "00-1c9e2c2fe88a3f42919a8b5fba189a3c-551fd502a36ec847-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3e215cb7d10e0f784d41aef499e5a316",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:45 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:44 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:03 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabler3iatv5y\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "3e215cb7d10e0f784d41aef499e5a316",
- "x-ms-request-id": "207523bb-b002-001b-6a21-5aea7a000000",
+ "x-ms-request-id": "9b33186f-4002-002c-0d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtabler3iatv5y(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-460f68facac5cb4c9054812f45013a5a-2485d603fc66b543-00",
+ "traceparent": "00-0e9f753f3da2cf4fa079a475155c5f65-5a7226ea77114849-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "90f5a558ded5f55c94e8c5d08e59f967",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:45 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -85,15 +87,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:44 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A45.1969637Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:03 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A03.9245713Z\u0027\u0022",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "90f5a558ded5f55c94e8c5d08e59f967",
- "x-ms-request-id": "207523cc-b002-001b-7a21-5aea7a000000",
+ "x-ms-request-id": "9b331880-4002-002c-1c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -102,14 +104,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtabler3iatv5y()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27%20and%20RowKey%20eq%20%2701%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6096946647df0284f25ca7b9e7c92454",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:45 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -118,7 +121,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:45 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:03 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -126,7 +129,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "6096946647df0284f25ca7b9e7c92454",
- "x-ms-request-id": "207523d4-b002-001b-7f21-5aea7a000000",
+ "x-ms-request-id": "9b331886-4002-002c-2286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -135,12 +138,12 @@
{
"odata.type": "chrissscratch.testtabler3iatv5y",
"odata.id": "https://chrissscratch.table.core.windows.net/testtabler3iatv5y(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A45.1969637Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A03.9245713Z\u0027\u0022",
"odata.editLink": "testtabler3iatv5y(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:45.1969637Z",
+ "Timestamp": "2020-07-17T22:09:03.9245713Z",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeDateProperty@odata.type": "Edm.DateTime",
@@ -163,13 +166,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-08d6a7aef448794dafabcc7d3374a8a3-5a6cf4ca9d528740-00",
+ "traceparent": "00-9f86a5692927f348bf53aaee817fc712-b35edc12aa473a41-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6b1c373c12a4d89cff2ca9260ca880f4",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:45 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -178,14 +181,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:45 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:03 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "6b1c373c12a4d89cff2ca9260ca880f4",
- "x-ms-request-id": "207523e0-b002-001b-0b21-5aea7a000000",
+ "x-ms-request-id": "9b33188f-4002-002c-2b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/ValidateSasCredentials.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/ValidateSasCredentials.json
index ab44add837ad..90fb793d2155 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/ValidateSasCredentials.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/ValidateSasCredentials.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-92dde063c70fac4b8bdf5267235244fa-0f6740c4aae0614a-00",
+ "traceparent": "00-2cdea973381a124dadc580227aef7720-5022c5eb0eea5242-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9a45019707d321fe4c1c4965c58f340e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 23:59:47 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:21 GMT",
+ "Date": "Fri, 17 Jul 2020 23:59:46 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablenbyhvlyk\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "9a45019707d321fe4c1c4965c58f340e",
- "x-ms-request-id": "20750b4a-b002-001b-5021-5aea7a000000",
+ "x-ms-request-id": "b6845a74-b002-005f-3e96-5c3616000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,10 +50,11 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablenbyhvlyk()?tn=testtablenbyhvlyk\u0026sv=2019-02-02\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=r\u0026sig=Sanitized\u0026$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "484a0ef01cfcfa0cd36a865b16f6ac75",
"x-ms-return-client-request-id": "true",
@@ -63,7 +65,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:21 GMT",
+ "Date": "Fri, 17 Jul 2020 23:59:46 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -71,7 +73,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "484a0ef01cfcfa0cd36a865b16f6ac75",
- "x-ms-request-id": "20750b59-b002-001b-5e21-5aea7a000000",
+ "x-ms-request-id": "b6845a7a-b002-005f-4296-5c3616000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -83,13 +85,14 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablenbyhvlyk(PartitionKey=\u0027partition\u0027,RowKey=\u002701\u0027)?tn=testtablenbyhvlyk\u0026sv=2019-02-02\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=r\u0026sig=Sanitized\u0026$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Content-Length": "611",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-1fc5b0c2fd3d6c439ade017c90f43c96-f9f430404757e846-00",
+ "traceparent": "00-55814b82f3228a43b302de10b5927777-91c4577e1453f340-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "843baa1ece62fcf8cc6fdfc349849f2c",
"x-ms-return-client-request-id": "true",
@@ -117,7 +120,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:21 GMT",
+ "Date": "Fri, 17 Jul 2020 23:59:46 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -125,7 +128,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "843baa1ece62fcf8cc6fdfc349849f2c",
- "x-ms-request-id": "20750b61-b002-001b-6621-5aea7a000000",
+ "x-ms-request-id": "b6845a7d-b002-005f-4596-5c3616000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -133,7 +136,7 @@
"code": "AuthorizationPermissionMismatch",
"message": {
"lang": "en-US",
- "value": "This request is not authorized to perform this operation using this permission.\nRequestId:20750b61-b002-001b-6621-5aea7a000000\nTime:2020-07-14T20:56:21.4863010Z"
+ "value": "This request is not authorized to perform this operation using this permission.\nRequestId:b6845a7d-b002-005f-4596-5c3616000000\nTime:2020-07-17T23:59:47.2621330Z"
}
}
}
@@ -144,13 +147,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-55753ffccb63cf4aa29f0a9085032d0b-4ad0a351d8a04e42-00",
+ "traceparent": "00-4a17a32c62fa8d408731684bdb1aada2-144d63773c3f714f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8630d7bcc2e37ba1f54ac66881a30b56",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 23:59:47 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -159,14 +162,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:21 GMT",
+ "Date": "Fri, 17 Jul 2020 23:59:46 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "8630d7bcc2e37ba1f54ac66881a30b56",
- "x-ms-request-id": "20750b6a-b002-001b-6f21-5aea7a000000",
+ "x-ms-request-id": "b6845a87-b002-005f-4f96-5c3616000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/ValidateSasCredentialsAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/ValidateSasCredentialsAsync.json
index faf02784c60d..48ca9d2a959f 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/ValidateSasCredentialsAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientLiveTests(Storage)/ValidateSasCredentialsAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-cf4d9ab960f78d47a68090d0f4fd8a37-e7e3a5c691e98b44-00",
+ "traceparent": "00-57fd7aba6c3e2249b27f7e87bd5c7f4a-847d534f138f7d4c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "bbd428d67e304a9a9321b1b612b75202",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:45 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 23:59:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:45 GMT",
+ "Date": "Fri, 17 Jul 2020 23:59:47 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableikd309tb\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "bbd428d67e304a9a9321b1b612b75202",
- "x-ms-request-id": "207523f3-b002-001b-1d21-5aea7a000000",
+ "x-ms-request-id": "b6845b54-b002-005f-0c96-5c3616000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,10 +50,11 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableikd309tb()?tn=testtableikd309tb\u0026sv=2019-02-02\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=r\u0026sig=Sanitized\u0026$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9e80973112f3c101edd7099d71a69513",
"x-ms-return-client-request-id": "true",
@@ -63,7 +65,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:45 GMT",
+ "Date": "Fri, 17 Jul 2020 23:59:47 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -71,7 +73,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "9e80973112f3c101edd7099d71a69513",
- "x-ms-request-id": "20752406-b002-001b-2f21-5aea7a000000",
+ "x-ms-request-id": "b6845b6f-b002-005f-2596-5c3616000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -83,13 +85,14 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableikd309tb(PartitionKey=\u0027partition\u0027,RowKey=\u002701\u0027)?tn=testtableikd309tb\u0026sv=2019-02-02\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=r\u0026sig=Sanitized\u0026$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/json",
"Content-Length": "611",
"Content-Type": "application/json",
"DataServiceVersion": "3.0",
- "traceparent": "00-cec2c341d5856945b4c0c81758d868f2-193b4f299070774c-00",
+ "traceparent": "00-c2ad012718dbe744a0c704d45dafc2d1-1d824df9c297b949-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "515fe6550be53a57fd6a254b96292261",
"x-ms-return-client-request-id": "true",
@@ -117,7 +120,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:45 GMT",
+ "Date": "Fri, 17 Jul 2020 23:59:47 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -125,7 +128,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "515fe6550be53a57fd6a254b96292261",
- "x-ms-request-id": "20752412-b002-001b-3b21-5aea7a000000",
+ "x-ms-request-id": "b6845b7d-b002-005f-3396-5c3616000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -133,7 +136,7 @@
"code": "AuthorizationPermissionMismatch",
"message": {
"lang": "en-US",
- "value": "This request is not authorized to perform this operation using this permission.\nRequestId:20752412-b002-001b-3b21-5aea7a000000\nTime:2020-07-14T20:56:45.4372085Z"
+ "value": "This request is not authorized to perform this operation using this permission.\nRequestId:b6845b7d-b002-005f-3396-5c3616000000\nTime:2020-07-17T23:59:48.5271970Z"
}
}
}
@@ -144,13 +147,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-e31c789a3a0c5348877c74eda995c55c-c22810a82a8ae74e-00",
+ "traceparent": "00-41e4e060d8ce854e832bc275cfca71f9-9d638d68588e8d45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "839bdbfdc533c3fb2612cd5975fdd9ed",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:45 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 23:59:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -159,14 +162,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:45 GMT",
+ "Date": "Fri, 17 Jul 2020 23:59:48 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "839bdbfdc533c3fb2612cd5975fdd9ed",
- "x-ms-request-id": "2075241e-b002-001b-4721-5aea7a000000",
+ "x-ms-request-id": "b6845b87-b002-005f-3d96-5c3616000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableComplexFilter.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableComplexFilter.json
index 7bfbfb4ecf10..a70b0c2527f0 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableComplexFilter.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableComplexFilter.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-cb4b5b467e1b864ca876439bf2a7930d-51711eb3a408674b-00",
+ "traceparent": "00-a9e83498bc721f46b8e65c5de3d3ba07-1b891cbb391ad64d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "99f36d7ad2368ed81f0170004561d59b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:17:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:50 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable9gptoy1y\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:59 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A17%3A59.9338504Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable9gptoy1y\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "99f36d7ad2368ed81f0170004561d59b",
- "x-ms-request-id": "20752905-b002-001b-7321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "99f36d7a-d236-8ed8-1f01-70004561d59b"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable9gptoy1y\u0027)",
- "odata.editLink": "Tables(\u0027testtable9gptoy1y\u0027)",
- "TableName": "testtable9gptoy1y"
+ "TableName": "testtable9gptoy1y",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable9gptoy1y?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable9gptoy1y?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d22d541add516c4ebbf98edb94bc0434-c13627f9c7612a47-00",
+ "traceparent": "00-694d55bd426cd9409043f72d3c759f00-3cb8577252a1d942-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "bb0e4b12775c0fb2d070aeb13bff28f9",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:18:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -128,39 +121,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:50 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A50.508417Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable9gptoy1y(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:59 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A18%3A00.4681736Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable9gptoy1y(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "bb0e4b12775c0fb2d070aeb13bff28f9",
- "x-ms-request-id": "20752911-b002-001b-7d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "bb0e4b12-775c-0fb2-d070-aeb13bff28f9"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable9gptoy1y/@Element",
- "odata.type": "chrissscratch.testtable9gptoy1y",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable9gptoy1y(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A50.508417Z\u0027\u0022",
- "odata.editLink": "testtable9gptoy1y(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:50.508417Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable9gptoy1y/$metadata#testtable9gptoy1y/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A18%3A00.4681736Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -174,7 +153,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -191,24 +170,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
+ "String": "0001",
+ "PartitionKey": "somPartition",
+ "RowKey": "0001",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:18:00.4681736Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable9gptoy1y?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable9gptoy1y?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-523d7ef9e0b9e245a4e2f18ea3f0af8b-8e6a60516abac346-00",
+ "traceparent": "00-1a7372744811ef48b06e1cecbea3d243-ecb3b491ece51344-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0f49b8e81be23f83beb9ddd2f9c14df4",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:18:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -277,39 +261,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:50 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A50.5584586Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable9gptoy1y(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:59 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A18%3A00.5517320Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable9gptoy1y(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "0f49b8e81be23f83beb9ddd2f9c14df4",
- "x-ms-request-id": "2075291c-b002-001b-0621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "0f49b8e8-1be2-3f83-beb9-ddd2f9c14df4"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable9gptoy1y/@Element",
- "odata.type": "chrissscratch.testtable9gptoy1y",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable9gptoy1y(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A50.5584586Z\u0027\u0022",
- "odata.editLink": "testtable9gptoy1y(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0002",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:50.5584586Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable9gptoy1y/$metadata#testtable9gptoy1y/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A18%3A00.5517320Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -323,7 +293,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -340,24 +310,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
+ "String": "0002",
+ "PartitionKey": "somPartition",
+ "RowKey": "0002",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:18:00.5517320Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable9gptoy1y?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable9gptoy1y?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1795",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6edfa6d1fb1c804fada84b0252c65972-c95683f90eec5a44-00",
+ "traceparent": "00-a2b1d3102373784c98b3baa77297c27d-2d6db281d76e4a43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "55fc60ef291e031fbae3c9c624265320",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:18:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -426,39 +401,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:50 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A50.6044968Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable9gptoy1y(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:59 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A18%3A00.6286344Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable9gptoy1y(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "55fc60ef291e031fbae3c9c624265320",
- "x-ms-request-id": "20752924-b002-001b-0d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "55fc60ef-291e-031f-bae3-c9c624265320"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable9gptoy1y/@Element",
- "odata.type": "chrissscratch.testtable9gptoy1y",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable9gptoy1y(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A50.6044968Z\u0027\u0022",
- "odata.editLink": "testtable9gptoy1y(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:50.6044968Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable9gptoy1y/$metadata#testtable9gptoy1y/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A18%3A00.6286344Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -472,7 +433,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -489,24 +450,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:18:00.6286344Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable9gptoy1y?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable9gptoy1y?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-7e8115013cf471448467382fdd976a24-37ba83fd9fc84142-00",
+ "traceparent": "00-48c80c8123353f4c8dcee8f58a531bdc-6a79e1d5cc9b4c4d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8c1877d8c618f7b8c7cefca39ae0160e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:18:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -575,39 +541,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:50 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A50.6475325Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable9gptoy1y(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:17:59 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A18%3A00.7060488Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable9gptoy1y(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "8c1877d8c618f7b8c7cefca39ae0160e",
- "x-ms-request-id": "20752929-b002-001b-1221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "8c1877d8-c618-f7b8-c7ce-fca39ae0160e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable9gptoy1y/@Element",
- "odata.type": "chrissscratch.testtable9gptoy1y",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable9gptoy1y(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A50.6475325Z\u0027\u0022",
- "odata.editLink": "testtable9gptoy1y(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0004",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:50.6475325Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable9gptoy1y/$metadata#testtable9gptoy1y/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A18%3A00.7060488Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -621,7 +573,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -638,60 +590,50 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:18:00.7060488Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable9gptoy1y()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28%28%28RowKey%20eq%20%270004%27%29%20and%20%28Int32%20eq%204%29%29%20or%20%28%28Int32%20eq%202%29%20and%20%28%28String%20eq%20%27wrong%20string%27%29%20or%20%28Bool%20eq%20true%29%29%29%29%20or%20%28LongPrimitiveN%20eq%202147483697L%29",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable9gptoy1y()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28%28%28RowKey%20eq%20%270004%27%29%20and%20%28Int32%20eq%204%29%29%20or%20%28%28Int32%20eq%202%29%20and%20%28%28String%20eq%20%27wrong%20string%27%29%20or%20%28Bool%20eq%20true%29%29%29%29%20or%20%28LongPrimitiveN%20eq%202147483697L%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "dac2ba22d203bfdb984654ff51bd1b97",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:51 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:18:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:50 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:18:00 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "dac2ba22d203bfdb984654ff51bd1b97",
- "x-ms-request-id": "2075293b-b002-001b-2121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "dac2ba22-d203-bfdb-9846-54ff51bd1b97"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable9gptoy1y",
"value": [
{
- "odata.type": "chrissscratch.testtable9gptoy1y",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable9gptoy1y(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A50.5584586Z\u0027\u0022",
- "odata.editLink": "testtable9gptoy1y(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0002",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:50.5584586Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A18%3A00.5517320Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -705,7 +647,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -722,25 +664,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
- },
- {
- "odata.type": "chrissscratch.testtable9gptoy1y",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable9gptoy1y(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A50.6475325Z\u0027\u0022",
- "odata.editLink": "testtable9gptoy1y(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0002",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:50.6475325Z",
+ "Timestamp": "2020-07-17T20:18:00.5517320Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A18%3A00.7060488Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -754,7 +693,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -771,48 +710,45 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:18:00.7060488Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable9gptoy1y\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable9gptoy1y\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-f16c3b9714c67a439e06a5ef263e0493-ead0eebf47e7f542-00",
+ "traceparent": "00-2b84c25cddf3ae4f81528f4d3420fc12-72fb00402f79fb49-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "81fabc66c0a928dba8048e4f2c7c68da",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:51 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:18:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:50 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "81fabc66c0a928dba8048e4f2c7c68da",
- "x-ms-request-id": "20752954-b002-001b-3821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:18:00 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "81fabc66-c0a9-28db-a804-8e4f2c7c68da"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1168408011",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableComplexFilterAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableComplexFilterAsync.json
index 154c4dc4db43..d008baa06bb8 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableComplexFilterAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableComplexFilterAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-655dcfd17dbf1044a0b39a4136328cae-a2dd2e13e2949f40-00",
+ "traceparent": "00-357acf4d634ed84690485d44a5a90280-e2f121c2da693b43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b866fd75a41c18adabdaade427d99cd9",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:09 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:38:24 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:09 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable8o3xelvo\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:38:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A24.0014344Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable8o3xelvo\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "b866fd75a41c18adabdaade427d99cd9",
- "x-ms-request-id": "20753af3-b002-001b-3a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "b866fd75-a41c-18ad-abda-ade427d99cd9"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable8o3xelvo\u0027)",
- "odata.editLink": "Tables(\u0027testtable8o3xelvo\u0027)",
- "TableName": "testtable8o3xelvo"
+ "TableName": "testtable8o3xelvo",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable8o3xelvo?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable8o3xelvo?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d08992155fabc94b9cb3d204d06ebdcf-e90c8e69c9eab840-00",
+ "traceparent": "00-4bb09b24dc5b8449a37f9e7a148e4ed6-6a6b4ced33b3db48-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d2e26ea2f084e62dd6dacffb2a8e65ab",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:09 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:38:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -128,39 +121,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:09 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.7093568Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable8o3xelvo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:38:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A24.6577160Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable8o3xelvo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "d2e26ea2f084e62dd6dacffb2a8e65ab",
- "x-ms-request-id": "20753b01-b002-001b-4721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "d2e26ea2-f084-e62d-d6da-cffb2a8e65ab"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable8o3xelvo/@Element",
- "odata.type": "chrissscratch.testtable8o3xelvo",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable8o3xelvo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.7093568Z\u0027\u0022",
- "odata.editLink": "testtable8o3xelvo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:09.7093568Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable8o3xelvo/$metadata#testtable8o3xelvo/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A24.6577160Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -174,7 +153,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -191,24 +170,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
+ "String": "0001",
+ "PartitionKey": "somPartition",
+ "RowKey": "0001",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:38:24.6577160Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable8o3xelvo?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable8o3xelvo?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-dfc6d2523ffcfb44a8b7b1c2e175344a-c38b34240a816242-00",
+ "traceparent": "00-19490e553b3c7e4d90a40391bf30ab29-83ec24e84306ef45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f998017efa1d40053801a0c24fa72a92",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:38:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -277,39 +261,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:09 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.7553946Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable8o3xelvo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:38:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A24.7386120Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable8o3xelvo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "f998017efa1d40053801a0c24fa72a92",
- "x-ms-request-id": "20753b11-b002-001b-5721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "f998017e-fa1d-4005-3801-a0c24fa72a92"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable8o3xelvo/@Element",
- "odata.type": "chrissscratch.testtable8o3xelvo",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable8o3xelvo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.7553946Z\u0027\u0022",
- "odata.editLink": "testtable8o3xelvo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0002",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:09.7553946Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable8o3xelvo/$metadata#testtable8o3xelvo/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A24.7386120Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -323,7 +293,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -340,24 +310,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
+ "String": "0002",
+ "PartitionKey": "somPartition",
+ "RowKey": "0002",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:38:24.7386120Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable8o3xelvo?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable8o3xelvo?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1795",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e29e81dbe0cb4447ae999081d8dbe918-cc25e4961d8d6148-00",
+ "traceparent": "00-a70c626294c79b478a1169ae600a63ea-8e3f490b63c5b04b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ed258852a9be8542d080e141d5b2ed1d",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:38:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -426,39 +401,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:09 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.7954282Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable8o3xelvo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:38:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A24.8145928Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable8o3xelvo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ed258852a9be8542d080e141d5b2ed1d",
- "x-ms-request-id": "20753b1d-b002-001b-6321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "ed258852-a9be-8542-d080-e141d5b2ed1d"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable8o3xelvo/@Element",
- "odata.type": "chrissscratch.testtable8o3xelvo",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable8o3xelvo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.7954282Z\u0027\u0022",
- "odata.editLink": "testtable8o3xelvo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:09.7954282Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable8o3xelvo/$metadata#testtable8o3xelvo/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A24.8145928Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -472,7 +433,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -489,24 +450,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:38:24.8145928Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable8o3xelvo?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable8o3xelvo?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6dfcbcf4d8082546a39c2bc1a013dfb9-099030e1ef77e341-00",
+ "traceparent": "00-9b59245e31b133428194c8895efb331d-8085ec81687cf143-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "25650274a340a7bb69a299824f6a962f",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:38:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -575,39 +541,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:09 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.8394656Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable8o3xelvo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:38:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A24.8915976Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable8o3xelvo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "25650274a340a7bb69a299824f6a962f",
- "x-ms-request-id": "20753b2c-b002-001b-7021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "25650274-a340-a7bb-69a2-99824f6a962f"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable8o3xelvo/@Element",
- "odata.type": "chrissscratch.testtable8o3xelvo",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable8o3xelvo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.8394656Z\u0027\u0022",
- "odata.editLink": "testtable8o3xelvo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0004",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:09.8394656Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable8o3xelvo/$metadata#testtable8o3xelvo/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A24.8915976Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -621,7 +573,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -638,60 +590,50 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:38:24.8915976Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable8o3xelvo()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28%28%28RowKey%20eq%20%270004%27%29%20and%20%28Int32%20eq%204%29%29%20or%20%28%28Int32%20eq%202%29%20and%20%28%28String%20eq%20%27wrong%20string%27%29%20or%20%28Bool%20eq%20true%29%29%29%29%20or%20%28LongPrimitiveN%20eq%202147483697L%29",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable8o3xelvo()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28%28%28RowKey%20eq%20%270004%27%29%20and%20%28Int32%20eq%204%29%29%20or%20%28%28Int32%20eq%202%29%20and%20%28%28String%20eq%20%27wrong%20string%27%29%20or%20%28Bool%20eq%20true%29%29%29%29%20or%20%28LongPrimitiveN%20eq%202147483697L%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a2a83caf7869d5ecbf13299c19c36a85",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:38:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:09 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:38:24 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a2a83caf7869d5ecbf13299c19c36a85",
- "x-ms-request-id": "20753b3a-b002-001b-7e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "a2a83caf-7869-d5ec-bf13-299c19c36a85"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable8o3xelvo",
"value": [
{
- "odata.type": "chrissscratch.testtable8o3xelvo",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable8o3xelvo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.7553946Z\u0027\u0022",
- "odata.editLink": "testtable8o3xelvo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0002",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:09.7553946Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A24.7386120Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -705,7 +647,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -722,25 +664,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
- },
- {
- "odata.type": "chrissscratch.testtable8o3xelvo",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable8o3xelvo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.8394656Z\u0027\u0022",
- "odata.editLink": "testtable8o3xelvo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0002",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:09.8394656Z",
+ "Timestamp": "2020-07-17T19:38:24.7386120Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A24.8915976Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -754,7 +693,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -771,48 +710,45 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:38:24.8915976Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable8o3xelvo\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable8o3xelvo\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-117445ed1a6f0946960dbf8c3a00f3e5-704849406297c643-00",
+ "traceparent": "00-a9cc2fbbe2f3964e8e7a5c89deb84151-9d1533f2a0f0e645-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4c4d83130541ae52cc7e841b0fbf3565",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:38:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:09 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "4c4d83130541ae52cc7e841b0fbf3565",
- "x-ms-request-id": "20753b5e-b002-001b-2221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:38:24 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "4c4d8313-0541-ae52-cc7e-841b0fbf3565"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "990301096",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableComplexFilterWithCreateFilter.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableComplexFilterWithCreateFilter.json
index dd4a9b13c138..35634c7be2a6 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableComplexFilterWithCreateFilter.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableComplexFilterWithCreateFilter.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-813ae724089d814e8b4556e4b803de2b-9adab2049314794d-00",
+ "traceparent": "00-8547836c6d95364ba53cf795488b601b-0755342de517634d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ec4bbe5a3e3c2e5fcbffdc422c25648f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:51 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:36:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:50 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablef9lfnshy\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:59 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A58.9912072Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablef9lfnshy\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ec4bbe5a3e3c2e5fcbffdc422c25648f",
- "x-ms-request-id": "20752964-b002-001b-4621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "ec4bbe5a-3e3c-2e5f-cbff-dc422c25648f"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablef9lfnshy\u0027)",
- "odata.editLink": "Tables(\u0027testtablef9lfnshy\u0027)",
- "TableName": "testtablef9lfnshy"
+ "TableName": "testtablef9lfnshy",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablef9lfnshy?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablef9lfnshy?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f478d1ad578e2348a59aaa204c5711bf-191cd6e63df81448-00",
+ "traceparent": "00-6c6d17393591ae4a84ee72b3fb8428e1-a7d235b493a97a4f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5ba2365eb418e3dda228c03f19c40632",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:51 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -128,39 +121,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:50 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A50.954788Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablef9lfnshy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:59 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A59.6785160Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablef9lfnshy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "5ba2365eb418e3dda228c03f19c40632",
- "x-ms-request-id": "20752972-b002-001b-5221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "5ba2365e-b418-e3dd-a228-c03f19c40632"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablef9lfnshy/@Element",
- "odata.type": "chrissscratch.testtablef9lfnshy",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablef9lfnshy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A50.954788Z\u0027\u0022",
- "odata.editLink": "testtablef9lfnshy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:50.954788Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablef9lfnshy/$metadata#testtablef9lfnshy/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A59.6785160Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -174,7 +153,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -191,24 +170,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
+ "String": "0001",
+ "PartitionKey": "somPartition",
+ "RowKey": "0001",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:59.6785160Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablef9lfnshy?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablef9lfnshy?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-690c95905926a2439097533b65fdb105-600d059b65a0af4c-00",
+ "traceparent": "00-f5e97e3e533e8d4fb4e3be84b77d26b5-38393f0453e2704b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "89e3a031ea1c01d6debbad4ed9c5c0fa",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:51 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -277,39 +261,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:50 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A50.9958229Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablef9lfnshy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:59 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A59.7788680Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablef9lfnshy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "89e3a031ea1c01d6debbad4ed9c5c0fa",
- "x-ms-request-id": "20752978-b002-001b-5821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "89e3a031-ea1c-01d6-debb-ad4ed9c5c0fa"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablef9lfnshy/@Element",
- "odata.type": "chrissscratch.testtablef9lfnshy",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablef9lfnshy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A50.9958229Z\u0027\u0022",
- "odata.editLink": "testtablef9lfnshy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0002",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:50.9958229Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablef9lfnshy/$metadata#testtablef9lfnshy/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A59.7788680Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -323,7 +293,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -340,24 +310,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
+ "String": "0002",
+ "PartitionKey": "somPartition",
+ "RowKey": "0002",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:59.7788680Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablef9lfnshy?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablef9lfnshy?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1795",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f824a769c639d2498c448b219cea37fa-718d28435bca9c47-00",
+ "traceparent": "00-e297e1b94629b64ca637f6315fafc5f7-0825fb69adb0164a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "61b643008da6a5e9e1684a137d201407",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:51 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -426,39 +401,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:50 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A51.0418607Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablef9lfnshy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:59 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A59.8583304Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablef9lfnshy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "61b643008da6a5e9e1684a137d201407",
- "x-ms-request-id": "20752984-b002-001b-6221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "61b64300-8da6-a5e9-e168-4a137d201407"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablef9lfnshy/@Element",
- "odata.type": "chrissscratch.testtablef9lfnshy",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablef9lfnshy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A51.0418607Z\u0027\u0022",
- "odata.editLink": "testtablef9lfnshy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:51.0418607Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablef9lfnshy/$metadata#testtablef9lfnshy/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A59.8583304Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -472,7 +433,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -489,24 +450,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:59.8583304Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablef9lfnshy?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablef9lfnshy?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-0b1f66ce33521e40b36e58f0cc02a910-3dbc3fb752dd9c49-00",
+ "traceparent": "00-d6b72e0f85076b44886c3632bed14301-4713f819f2bce047-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8b11a9f8da4273725fa07c5c078e09dd",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:51 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -575,39 +541,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:50 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A51.084896Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablef9lfnshy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:59 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A59.9347208Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablef9lfnshy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "8b11a9f8da4273725fa07c5c078e09dd",
- "x-ms-request-id": "20752990-b002-001b-6e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "8b11a9f8-da42-7372-5fa0-7c5c078e09dd"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablef9lfnshy/@Element",
- "odata.type": "chrissscratch.testtablef9lfnshy",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablef9lfnshy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A51.084896Z\u0027\u0022",
- "odata.editLink": "testtablef9lfnshy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0004",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:51.084896Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablef9lfnshy/$metadata#testtablef9lfnshy/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A59.9347208Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -621,7 +573,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -638,60 +590,50 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:59.9347208Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablef9lfnshy()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28%28%28RowKey%20eq%20%270004%27%29%20and%20%28Int32%20eq%204%29%29%20or%20%28%28Int32%20eq%202%29%20and%20%28%28String%20eq%20%27wrong%20string%27%29%20or%20%28Bool%20eq%20true%29%29%29%29%20or%20%28LongPrimitiveN%20eq%202147483697L%29",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablef9lfnshy()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28%28%28RowKey%20eq%20%270004%27%29%20and%20%28Int32%20eq%204%29%29%20or%20%28%28Int32%20eq%202%29%20and%20%28%28String%20eq%20%27wrong%20string%27%29%20or%20%28Bool%20eq%20true%29%29%29%29%20or%20%28LongPrimitiveN%20eq%202147483697L%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d53ec668a40da38cb73da8b4a0c284be",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:51 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:50 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:36:59 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "d53ec668a40da38cb73da8b4a0c284be",
- "x-ms-request-id": "207529a0-b002-001b-7e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "d53ec668-a40d-a38c-b73d-a8b4a0c284be"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablef9lfnshy",
"value": [
{
- "odata.type": "chrissscratch.testtablef9lfnshy",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablef9lfnshy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A50.9958229Z\u0027\u0022",
- "odata.editLink": "testtablef9lfnshy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0002",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:50.9958229Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A59.7788680Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -705,7 +647,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -722,25 +664,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
- },
- {
- "odata.type": "chrissscratch.testtablef9lfnshy",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablef9lfnshy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A51.084896Z\u0027\u0022",
- "odata.editLink": "testtablef9lfnshy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0002",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:51.084896Z",
+ "Timestamp": "2020-07-17T19:36:59.7788680Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A36%3A59.9347208Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -754,7 +693,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -771,48 +710,45 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:36:59.9347208Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablef9lfnshy\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablef9lfnshy\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-04473c9cda39be4783868b7bd5b54701-2291f2ac5c324a43-00",
+ "traceparent": "00-33176ee1e0fb78458bd8d66104873c32-db1b8464a199b140-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3056a5a735b325b8d1420105118d9e53",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:51 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:51 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "3056a5a735b325b8d1420105118d9e53",
- "x-ms-request-id": "207529bb-b002-001b-1721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:36:59 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "3056a5a7-35b3-25b8-d142-0105118d9e53"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1498365604",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableComplexFilterWithCreateFilterAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableComplexFilterWithCreateFilterAsync.json
index dd84a02223d5..334ee5a71398 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableComplexFilterWithCreateFilterAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableComplexFilterWithCreateFilterAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-b7f626777bf2d24390dadd70ea2a3374-e47096c202ee0943-00",
+ "traceparent": "00-a274e475ee985d4f85f67cda5e1dce2a-477b1431d4997c42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1cfc6cc7fb83f282643c8eb88a349023",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:39:31 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:09 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableeumvy3e6\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:39:31 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A31.8777864Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableeumvy3e6\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "1cfc6cc7fb83f282643c8eb88a349023",
- "x-ms-request-id": "20753b72-b002-001b-3621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "1cfc6cc7-fb83-f282-643c-8eb88a349023"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableeumvy3e6\u0027)",
- "odata.editLink": "Tables(\u0027testtableeumvy3e6\u0027)",
- "TableName": "testtableeumvy3e6"
+ "TableName": "testtableeumvy3e6",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableeumvy3e6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableeumvy3e6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8848d25c4953764b8cd07fe5c8a68f38-4ef3bf9a9f09a549-00",
+ "traceparent": "00-1260bf7eb0e7c2438346d9662c3cfc03-1211b21259d88043-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9d750fa38dd9a604169bfdf301b359f9",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:39:32 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -128,39 +121,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:09 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A10.1347103Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableeumvy3e6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:39:31 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A32.5989896Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableeumvy3e6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "9d750fa38dd9a604169bfdf301b359f9",
- "x-ms-request-id": "20753b86-b002-001b-4921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "9d750fa3-8dd9-a604-169b-fdf301b359f9"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableeumvy3e6/@Element",
- "odata.type": "chrissscratch.testtableeumvy3e6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableeumvy3e6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A10.1347103Z\u0027\u0022",
- "odata.editLink": "testtableeumvy3e6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:10.1347103Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableeumvy3e6/$metadata#testtableeumvy3e6/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A32.5989896Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -174,7 +153,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -191,24 +170,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
+ "String": "0001",
+ "PartitionKey": "somPartition",
+ "RowKey": "0001",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:39:32.5989896Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableeumvy3e6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableeumvy3e6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d2f12625611a2347a35e9f01daac9324-344cd721a8addf4a-00",
+ "traceparent": "00-0f715dc2271a7143865cfac06470e181-da8ac27d7915b747-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4a3a44eff3c5fbc2d19613db7091c8bf",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:39:32 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -277,39 +261,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:09 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A10.1777456Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableeumvy3e6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:39:31 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A32.7033352Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableeumvy3e6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "4a3a44eff3c5fbc2d19613db7091c8bf",
- "x-ms-request-id": "20753b93-b002-001b-5621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "4a3a44ef-f3c5-fbc2-d196-13db7091c8bf"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableeumvy3e6/@Element",
- "odata.type": "chrissscratch.testtableeumvy3e6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableeumvy3e6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A10.1777456Z\u0027\u0022",
- "odata.editLink": "testtableeumvy3e6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0002",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:10.1777456Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableeumvy3e6/$metadata#testtableeumvy3e6/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A32.7033352Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -323,7 +293,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -340,24 +310,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
+ "String": "0002",
+ "PartitionKey": "somPartition",
+ "RowKey": "0002",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:39:32.7033352Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableeumvy3e6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableeumvy3e6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1795",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1f4c24a79bf91d4284976028d6f4612e-6d94d004a0452749-00",
+ "traceparent": "00-84a3fe0450c4f9488ca171193e3b5c63-77b26cefd7093741-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6afe8c84f7c43a48685606e7fd8ef0b1",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:39:32 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -426,39 +401,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:09 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A10.2297892Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableeumvy3e6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:39:31 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A32.7820808Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableeumvy3e6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "6afe8c84f7c43a48685606e7fd8ef0b1",
- "x-ms-request-id": "20753bac-b002-001b-6f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "6afe8c84-f7c4-3a48-6856-06e7fd8ef0b1"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableeumvy3e6/@Element",
- "odata.type": "chrissscratch.testtableeumvy3e6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableeumvy3e6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A10.2297892Z\u0027\u0022",
- "odata.editLink": "testtableeumvy3e6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:10.2297892Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableeumvy3e6/$metadata#testtableeumvy3e6/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A32.7820808Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -472,7 +433,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -489,24 +450,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:39:32.7820808Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableeumvy3e6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableeumvy3e6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f2bbd4019c7d6b4e83e3e753e7f6936b-7d87c4af732d7f4a-00",
+ "traceparent": "00-a744f679b883fc4c86508a8b2ab0f1a4-81c11d0ece9bce4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "46c895e246f9b05d4c7acc4379283684",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:39:32 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -575,39 +541,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:10 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A10.2708229Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableeumvy3e6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:39:32 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A32.8598024Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableeumvy3e6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "46c895e246f9b05d4c7acc4379283684",
- "x-ms-request-id": "20753bb8-b002-001b-7b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "46c895e2-46f9-b05d-4c7a-cc4379283684"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableeumvy3e6/@Element",
- "odata.type": "chrissscratch.testtableeumvy3e6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableeumvy3e6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A10.2708229Z\u0027\u0022",
- "odata.editLink": "testtableeumvy3e6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0004",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:10.2708229Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableeumvy3e6/$metadata#testtableeumvy3e6/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A32.8598024Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -621,7 +573,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -638,60 +590,50 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:39:32.8598024Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableeumvy3e6()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28%28%28RowKey%20eq%20%270004%27%29%20and%20%28Int32%20eq%204%29%29%20or%20%28%28Int32%20eq%202%29%20and%20%28%28String%20eq%20%27wrong%20string%27%29%20or%20%28Bool%20eq%20true%29%29%29%29%20or%20%28LongPrimitiveN%20eq%202147483697L%29",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableeumvy3e6()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28%28%28RowKey%20eq%20%270004%27%29%20and%20%28Int32%20eq%204%29%29%20or%20%28%28Int32%20eq%202%29%20and%20%28%28String%20eq%20%27wrong%20string%27%29%20or%20%28Bool%20eq%20true%29%29%29%29%20or%20%28LongPrimitiveN%20eq%202147483697L%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "756e3ed2eeb4f734fbffe16feddafd42",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:39:33 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:10 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:39:32 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "756e3ed2eeb4f734fbffe16feddafd42",
- "x-ms-request-id": "20753bc2-b002-001b-0521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "756e3ed2-eeb4-f734-fbff-e16feddafd42"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableeumvy3e6",
"value": [
{
- "odata.type": "chrissscratch.testtableeumvy3e6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableeumvy3e6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A10.1777456Z\u0027\u0022",
- "odata.editLink": "testtableeumvy3e6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0002",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:10.1777456Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A32.7033352Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -705,7 +647,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -722,25 +664,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
- },
- {
- "odata.type": "chrissscratch.testtableeumvy3e6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableeumvy3e6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A10.2708229Z\u0027\u0022",
- "odata.editLink": "testtableeumvy3e6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0002",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:10.2708229Z",
+ "Timestamp": "2020-07-17T20:39:32.7033352Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A32.8598024Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -754,7 +693,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -771,48 +710,45 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:39:32.8598024Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableeumvy3e6\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableeumvy3e6\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-e92b043768d514438d1d6f231cd53a23-00c6e99ea6376245-00",
+ "traceparent": "00-4edea5414f5242408f319044ece27be1-5ca1447d15811345-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "daf862a682c83dc52e4d1e4a2b05c03f",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:39:33 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:10 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "daf862a682c83dc52e4d1e4a2b05c03f",
- "x-ms-request-id": "20753bda-b002-001b-1c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:39:32 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "daf862a6-82c8-3dc5-2e4d-1e4a2b05c03f"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1026558455",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableDynamicTableEntityQuery.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableDynamicTableEntityQuery.json
index 6fd53e57a7e5..ee1d6a445010 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableDynamicTableEntityQuery.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableDynamicTableEntityQuery.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1562693cb9cf6c4496834c3bb50ae541-867280cb2d4a5748-00",
+ "traceparent": "00-1605de497b607840a2aab9ade751fec2-d8e9012b1400a544-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6ae088948ff8c1b04b7637c53647313e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:51 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:18:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:51 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabledzrwvdr6\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:18:14 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A18%3A13.9639816Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtabledzrwvdr6\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "6ae088948ff8c1b04b7637c53647313e",
- "x-ms-request-id": "207529cb-b002-001b-2721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "6ae08894-8ff8-c1b0-4b76-37c53647313e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabledzrwvdr6\u0027)",
- "odata.editLink": "Tables(\u0027testtabledzrwvdr6\u0027)",
- "TableName": "testtabledzrwvdr6"
+ "TableName": "testtabledzrwvdr6",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabledzrwvdr6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtabledzrwvdr6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-10e144a21e12d544ba303e830a705c2f-44cbb04566a1c24d-00",
+ "traceparent": "00-2a82afc0c85e004f828238eabf07f90c-7086cdd128409343-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a6edef80dd61e3e1b742557c0de552e2",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:51 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:18:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -128,39 +121,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:51 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A51.3591236Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtabledzrwvdr6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:18:14 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A18%3A14.5859592Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtabledzrwvdr6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a6edef80dd61e3e1b742557c0de552e2",
- "x-ms-request-id": "207529e2-b002-001b-3b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "a6edef80-dd61-e3e1-b742-557c0de552e2"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabledzrwvdr6/@Element",
- "odata.type": "chrissscratch.testtabledzrwvdr6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabledzrwvdr6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A51.3591236Z\u0027\u0022",
- "odata.editLink": "testtabledzrwvdr6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:51.3591236Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtabledzrwvdr6/$metadata#testtabledzrwvdr6/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A18%3A14.5859592Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -174,7 +153,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -191,24 +170,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
+ "String": "0001",
+ "PartitionKey": "somPartition",
+ "RowKey": "0001",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:18:14.5859592Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabledzrwvdr6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtabledzrwvdr6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d2de88f03c304043a84ffcf11a518f20-f3ea354692b4c543-00",
+ "traceparent": "00-6905ed185cef7942b847447ff1030aed-0d8f4acca0a38f49-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9d8c45f0254cbf2b7ddcedd28fb026e4",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:51 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:18:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -277,39 +261,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:51 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A51.404161Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtabledzrwvdr6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:18:14 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A18%3A14.7162120Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtabledzrwvdr6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "9d8c45f0254cbf2b7ddcedd28fb026e4",
- "x-ms-request-id": "207529f2-b002-001b-4b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "9d8c45f0-254c-bf2b-7ddc-edd28fb026e4"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabledzrwvdr6/@Element",
- "odata.type": "chrissscratch.testtabledzrwvdr6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabledzrwvdr6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A51.404161Z\u0027\u0022",
- "odata.editLink": "testtabledzrwvdr6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0002",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:51.404161Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtabledzrwvdr6/$metadata#testtabledzrwvdr6/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A18%3A14.7162120Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -323,7 +293,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -340,60 +310,50 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
+ "String": "0002",
+ "PartitionKey": "somPartition",
+ "RowKey": "0002",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:18:14.7162120Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabledzrwvdr6()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28RowKey%20eq%20%270002%27%29",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtabledzrwvdr6()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28RowKey%20eq%20%270002%27%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7e3e87584c13b771a7fdb2b53a34b365",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:51 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:18:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:51 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:18:14 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "7e3e87584c13b771a7fdb2b53a34b365",
- "x-ms-request-id": "207529fb-b002-001b-5421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "7e3e8758-4c13-b771-a7fd-b2b53a34b365"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabledzrwvdr6",
"value": [
{
- "odata.type": "chrissscratch.testtabledzrwvdr6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabledzrwvdr6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A51.404161Z\u0027\u0022",
- "odata.editLink": "testtabledzrwvdr6(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0002",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:51.404161Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A18%3A14.7162120Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -407,7 +367,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -424,48 +384,45 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
+ "String": "0002",
+ "PartitionKey": "somPartition",
+ "RowKey": "0002",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:18:14.7162120Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabledzrwvdr6\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtabledzrwvdr6\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-e2083cde842ae944999ae00bea4674a3-e28ceabb1245554d-00",
+ "traceparent": "00-fd408cf4e20d494f8ff2b1375233e20d-40010f1d04748d4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f0d5542494ba5af2c42e2984ef0e5307",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:51 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:18:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:51 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "f0d5542494ba5af2c42e2984ef0e5307",
- "x-ms-request-id": "20752a01-b002-001b-5a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:18:14 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "f0d55424-94ba-5af2-c42e-2984ef0e5307"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "323290225",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableDynamicTableEntityQueryAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableDynamicTableEntityQueryAsync.json
index 4db245c2b19b..1e124dca2ef7 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableDynamicTableEntityQueryAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableDynamicTableEntityQueryAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-26bae0e62aead7419407e369c281e8da-b464d8b2ac943f41-00",
+ "traceparent": "00-1ad5c835b1f0db419a0c6f6900fe68ac-d02c10719d480343-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8da52938f55545ea47ef0a9ea7d0193b",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:38:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:10 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableihqg99qo\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:38:37 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A37.4731784Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableihqg99qo\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "8da52938f55545ea47ef0a9ea7d0193b",
- "x-ms-request-id": "20753be5-b002-001b-2721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "8da52938-f555-45ea-47ef-0a9ea7d0193b"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableihqg99qo\u0027)",
- "odata.editLink": "Tables(\u0027testtableihqg99qo\u0027)",
- "TableName": "testtableihqg99qo"
+ "TableName": "testtableihqg99qo",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableihqg99qo?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableihqg99qo?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6704ee2e2aac354bb923e7fbed695af3-3428d639547b1141-00",
+ "traceparent": "00-4d2bd9b7bb00584ab95408d721fb6f8d-146755881ee5f048-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8f73bb217622030c50c71340220a5fdb",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:38:38 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -128,39 +121,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:10 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A10.5310397Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableihqg99qo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:38:37 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A38.1775880Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableihqg99qo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "8f73bb217622030c50c71340220a5fdb",
- "x-ms-request-id": "20753bf5-b002-001b-3621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "8f73bb21-7622-030c-50c7-1340220a5fdb"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableihqg99qo/@Element",
- "odata.type": "chrissscratch.testtableihqg99qo",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableihqg99qo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A10.5310397Z\u0027\u0022",
- "odata.editLink": "testtableihqg99qo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:10.5310397Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableihqg99qo/$metadata#testtableihqg99qo/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A38.1775880Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -174,7 +153,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -191,24 +170,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
+ "String": "0001",
+ "PartitionKey": "somPartition",
+ "RowKey": "0001",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:38:38.1775880Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableihqg99qo?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableihqg99qo?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-0953467384342f408c316c0633fb9f87-255614fcafcd3249-00",
+ "traceparent": "00-b06dccf100beb943a7afc5c2411ad183-c086545529edce4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e4fe56df1e0fd0950119d38baea468e1",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:38:38 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -277,39 +261,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:10 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A10.59109Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableihqg99qo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:38:37 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A38.2552072Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableihqg99qo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "e4fe56df1e0fd0950119d38baea468e1",
- "x-ms-request-id": "20753c02-b002-001b-4321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "e4fe56df-1e0f-d095-0119-d38baea468e1"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableihqg99qo/@Element",
- "odata.type": "chrissscratch.testtableihqg99qo",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableihqg99qo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A10.59109Z\u0027\u0022",
- "odata.editLink": "testtableihqg99qo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0002",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:10.59109Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableihqg99qo/$metadata#testtableihqg99qo/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A38.2552072Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -323,7 +293,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -340,60 +310,50 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
+ "String": "0002",
+ "PartitionKey": "somPartition",
+ "RowKey": "0002",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:38:38.2552072Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableihqg99qo()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28RowKey%20eq%20%270002%27%29",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableihqg99qo()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28RowKey%20eq%20%270002%27%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "42704a8faf91c2381da13c8ee2aa223d",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:38:38 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:10 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:38:37 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "42704a8faf91c2381da13c8ee2aa223d",
- "x-ms-request-id": "20753c13-b002-001b-5421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "42704a8f-af91-c238-1da1-3c8ee2aa223d"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableihqg99qo",
"value": [
{
- "odata.type": "chrissscratch.testtableihqg99qo",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableihqg99qo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A10.59109Z\u0027\u0022",
- "odata.editLink": "testtableihqg99qo(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0002",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:10.59109Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A38.2552072Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -407,7 +367,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -424,48 +384,45 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
+ "String": "0002",
+ "PartitionKey": "somPartition",
+ "RowKey": "0002",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:38:38.2552072Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableihqg99qo\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableihqg99qo\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-7178bd587243904194ae209801df4227-fbc1960a1e08194f-00",
+ "traceparent": "00-ce8efa4109726041a3e9a5892e3f5398-7620bcdb414f2848-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "50be2e9035d2032b26a38e09a28055ac",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:10 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:38:38 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:10 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "50be2e9035d2032b26a38e09a28055ac",
- "x-ms-request-id": "20753c22-b002-001b-6221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:38:38 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "50be2e90-35d2-032b-26a3-8e09a28055ac"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1915386832",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableEnumerateTwice.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableEnumerateTwice.json
index de1c56442908..f592b7c38a69 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableEnumerateTwice.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableEnumerateTwice.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f2d351ea3f0c0d4091d1cbce6214dfc1-fe57df1317b0fd42-00",
+ "traceparent": "00-545c253a43c58942abc6e1093f656fd3-beab3ed119efd44c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "df86294936af3d02ac28657f46df4c16",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:51 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:12 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:51 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabletr1vmqwu\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:37:13 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A12.5762056Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtabletr1vmqwu\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "df86294936af3d02ac28657f46df4c16",
- "x-ms-request-id": "20752a08-b002-001b-6121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "df862949-36af-3d02-ac28-657f46df4c16"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabletr1vmqwu\u0027)",
- "odata.editLink": "Tables(\u0027testtabletr1vmqwu\u0027)",
- "TableName": "testtabletr1vmqwu"
+ "TableName": "testtabletr1vmqwu",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabletr1vmqwu?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtabletr1vmqwu?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9845d27c5100f14d9019f058eb925f33-a0e16468f196e447-00",
+ "traceparent": "00-8aacdb39b819624abd9b9e4ca84123d2-a8ed89afaef85843-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e01e060a04c442016379414cf07bd84c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:51 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -128,39 +121,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:51 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A51.5923168Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtabletr1vmqwu(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:37:13 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A13.2520456Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtabletr1vmqwu(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "e01e060a04c442016379414cf07bd84c",
- "x-ms-request-id": "20752a10-b002-001b-6821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "e01e060a-04c4-4201-6379-414cf07bd84c"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabletr1vmqwu/@Element",
- "odata.type": "chrissscratch.testtabletr1vmqwu",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabletr1vmqwu(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A51.5923168Z\u0027\u0022",
- "odata.editLink": "testtabletr1vmqwu(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:51.5923168Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtabletr1vmqwu/$metadata#testtabletr1vmqwu/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A13.2520456Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -174,7 +153,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -191,24 +170,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
+ "String": "0001",
+ "PartitionKey": "somPartition",
+ "RowKey": "0001",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:37:13.2520456Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabletr1vmqwu?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtabletr1vmqwu?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-7d30b6e24b276444917a6218e6f87462-f725cad93a2c374e-00",
+ "traceparent": "00-702cf43f697d5d49bdbd6f32bab0cbe4-93f38a755533eb42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "95c5df5109bd680bc7fe1f17e635f0d5",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:51 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -277,39 +261,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:51 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A51.6493642Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtabletr1vmqwu(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:37:13 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A13.3361160Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtabletr1vmqwu(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "95c5df5109bd680bc7fe1f17e635f0d5",
- "x-ms-request-id": "20752a19-b002-001b-7121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "95c5df51-09bd-680b-c7fe-1f17e635f0d5"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabletr1vmqwu/@Element",
- "odata.type": "chrissscratch.testtabletr1vmqwu",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabletr1vmqwu(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A51.6493642Z\u0027\u0022",
- "odata.editLink": "testtabletr1vmqwu(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0002",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:51.6493642Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtabletr1vmqwu/$metadata#testtabletr1vmqwu/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A13.3361160Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -323,7 +293,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -340,60 +310,50 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
+ "String": "0002",
+ "PartitionKey": "somPartition",
+ "RowKey": "0002",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:37:13.3361160Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabletr1vmqwu()?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtabletr1vmqwu()?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c0ee0adb250844b327447b35f5b64c30",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:51 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:51 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:37:13 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c0ee0adb250844b327447b35f5b64c30",
- "x-ms-request-id": "20752a20-b002-001b-7721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "c0ee0adb-2508-44b3-2744-7b35f5b64c30"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabletr1vmqwu",
"value": [
{
- "odata.type": "chrissscratch.testtabletr1vmqwu",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabletr1vmqwu(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A51.5923168Z\u0027\u0022",
- "odata.editLink": "testtabletr1vmqwu(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:51.5923168Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A13.2520456Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -407,7 +367,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -424,25 +384,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
- },
- {
- "odata.type": "chrissscratch.testtabletr1vmqwu",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabletr1vmqwu(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A51.6493642Z\u0027\u0022",
- "odata.editLink": "testtabletr1vmqwu(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
+ "String": "0001",
"PartitionKey": "somPartition",
- "RowKey": "0002",
+ "RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:51.6493642Z",
+ "Timestamp": "2020-07-17T19:37:13.2520456Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A13.3361160Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -456,7 +413,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -473,48 +430,45 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
+ "String": "0002",
+ "PartitionKey": "somPartition",
+ "RowKey": "0002",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:37:13.3361160Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabletr1vmqwu\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtabletr1vmqwu\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-784d90083c7497498e6b48eeeb174c51-16731ce1892ba549-00",
+ "traceparent": "00-fa7f910aa63e38429e0081141bbeee3c-f7b345554bebc24b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "662d1950b71a0158fab519c5e5ea5c2d",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:51 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "662d1950b71a0158fab519c5e5ea5c2d",
- "x-ms-request-id": "20752a46-b002-001b-1b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:37:13 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "662d1950-b71a-0158-fab5-19c5e5ea5c2d"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "442109583",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableEnumerateTwiceAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableEnumerateTwiceAsync.json
index 627275df7f48..554464790b9b 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableEnumerateTwiceAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableEnumerateTwiceAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-60a41a7188171546ae3963aff5eb4a81-948ffee661ca054a-00",
+ "traceparent": "00-a4b48456ecc16f44a004714e3c918a4f-3d1bdf1f30d2ff4d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "99aede0853b25740fb3c17dd79951b17",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:39:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:10 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablejhc9uvxl\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:39:38 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A38.1111816Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablejhc9uvxl\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "99aede0853b25740fb3c17dd79951b17",
- "x-ms-request-id": "20753c2c-b002-001b-6c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "99aede08-53b2-5740-fb3c-17dd79951b17"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablejhc9uvxl\u0027)",
- "odata.editLink": "Tables(\u0027testtablejhc9uvxl\u0027)",
- "TableName": "testtablejhc9uvxl"
+ "TableName": "testtablejhc9uvxl",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablejhc9uvxl?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablejhc9uvxl?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e38d9f3f9c4c4248ad3ad27e8f458f1a-60548034334d2c49-00",
+ "traceparent": "00-cdf9e5df0a3a83458378ca13cc263a53-b6a9922bcd846348-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "05cce6859eb77d8d80bf720ae5fb6720",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:39:38 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -128,39 +121,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:10 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A10.782247Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablejhc9uvxl(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:39:38 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A38.6631176Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablejhc9uvxl(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "05cce6859eb77d8d80bf720ae5fb6720",
- "x-ms-request-id": "20753c40-b002-001b-7e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "05cce685-9eb7-7d8d-80bf-720ae5fb6720"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablejhc9uvxl/@Element",
- "odata.type": "chrissscratch.testtablejhc9uvxl",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejhc9uvxl(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A10.782247Z\u0027\u0022",
- "odata.editLink": "testtablejhc9uvxl(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:10.782247Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablejhc9uvxl/$metadata#testtablejhc9uvxl/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A38.6631176Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -174,7 +153,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -191,24 +170,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
+ "String": "0001",
+ "PartitionKey": "somPartition",
+ "RowKey": "0001",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:39:38.6631176Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablejhc9uvxl?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablejhc9uvxl?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-3919b4322621644fab8f4eb6616d2de1-909c3828b6648f43-00",
+ "traceparent": "00-039d254649162646b23a0e1d9f69ec4d-28e41cd866a6ef4d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "59a80893eb13a1423ad7b6d7f03249cc",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:39:38 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -277,39 +261,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:10 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A10.8282852Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablejhc9uvxl(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:39:38 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A38.7661320Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablejhc9uvxl(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "59a80893eb13a1423ad7b6d7f03249cc",
- "x-ms-request-id": "20753c4b-b002-001b-0821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "59a80893-eb13-a142-3ad7-b6d7f03249cc"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablejhc9uvxl/@Element",
- "odata.type": "chrissscratch.testtablejhc9uvxl",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejhc9uvxl(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A10.8282852Z\u0027\u0022",
- "odata.editLink": "testtablejhc9uvxl(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0002",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:10.8282852Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablejhc9uvxl/$metadata#testtablejhc9uvxl/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A38.7661320Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -323,7 +293,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -340,60 +310,50 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
+ "String": "0002",
+ "PartitionKey": "somPartition",
+ "RowKey": "0002",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:39:38.7661320Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablejhc9uvxl()?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablejhc9uvxl()?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "df1ab92e99ae6a26503118f2e0367100",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:39:39 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:10 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:39:38 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "df1ab92e99ae6a26503118f2e0367100",
- "x-ms-request-id": "20753c5a-b002-001b-1721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "df1ab92e-99ae-6a26-5031-18f2e0367100"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablejhc9uvxl",
"value": [
{
- "odata.type": "chrissscratch.testtablejhc9uvxl",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejhc9uvxl(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A10.782247Z\u0027\u0022",
- "odata.editLink": "testtablejhc9uvxl(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:10.782247Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A38.6631176Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -407,7 +367,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -424,25 +384,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
- },
- {
- "odata.type": "chrissscratch.testtablejhc9uvxl",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejhc9uvxl(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A10.8282852Z\u0027\u0022",
- "odata.editLink": "testtablejhc9uvxl(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
+ "String": "0001",
"PartitionKey": "somPartition",
- "RowKey": "0002",
+ "RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:10.8282852Z",
+ "Timestamp": "2020-07-17T20:39:38.6631176Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A38.7661320Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -456,7 +413,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -473,48 +430,45 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
+ "String": "0002",
+ "PartitionKey": "somPartition",
+ "RowKey": "0002",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:39:38.7661320Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablejhc9uvxl\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablejhc9uvxl\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-74702547c5428c48975876665ffa8a93-710831ac3afb834d-00",
+ "traceparent": "00-bb023caa52e23d41a64d27f124b07c47-f88a7f31872fc448-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "714af6d4c1ed9904a32bcbdfe8b68d4e",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:39:39 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:10 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "714af6d4c1ed9904a32bcbdfe8b68d4e",
- "x-ms-request-id": "20753c75-b002-001b-3121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:39:38 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "714af6d4-c1ed-9904-a32b-cbdfe8b68d4e"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1348530985",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableExecuteQueryDictionary.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableExecuteQueryDictionary.json
index 207f76a63b3c..e5fe85d50159 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableExecuteQueryDictionary.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableExecuteQueryDictionary.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-2e4400a12db397478ee78c965c838150-920dea6fca3ee54a-00",
+ "traceparent": "00-83cbe85c7e159649b61dbf4062675d42-9b85fd4d34cf3b48-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f954e5d9d958765ebfa1b7d6407cc40f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:18:36 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:51 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable53bqbvs1\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:18:37 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A18%3A37.2860936Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable53bqbvs1\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "f954e5d9d958765ebfa1b7d6407cc40f",
- "x-ms-request-id": "20752a55-b002-001b-2a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "f954e5d9-d958-765e-bfa1-b7d6407cc40f"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable53bqbvs1\u0027)",
- "odata.editLink": "Tables(\u0027testtable53bqbvs1\u0027)",
- "TableName": "testtable53bqbvs1"
+ "TableName": "testtable53bqbvs1",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable53bqbvs1?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable53bqbvs1?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c90fb6038a38cb439b3a6bcb5e2738f4-065ab5aff3dbec42-00",
+ "traceparent": "00-643586227f5a1b44ae61fd78bcb20ccc-d440397cac723840-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2a154d165667b7357327f4c95559c8a0",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:18:38 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -83,60 +76,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:51 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A51.9165864Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable53bqbvs1(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:18:37 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A18%3A37.8209288Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable53bqbvs1(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "2a154d165667b7357327f4c95559c8a0",
- "x-ms-request-id": "20752a68-b002-001b-3b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "2a154d16-5667-b735-7327-f4c95559c8a0"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable53bqbvs1/@Element",
- "odata.type": "chrissscratch.testtable53bqbvs1",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable53bqbvs1(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A51.9165864Z\u0027\u0022",
- "odata.editLink": "testtable53bqbvs1(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable53bqbvs1/$metadata#testtable53bqbvs1/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A18%3A37.8209288Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:51.9165864Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:02:00Z",
+ "SomeDateProperty": "2020-01-01T01:02:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "1",
- "SomeDoubleProperty0": 1.0,
+ "SomeDoubleProperty0": 1,
"SomeDoubleProperty1": 1.1,
- "SomeIntProperty": 1
+ "SomeIntProperty": 1,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:18:37.8209288Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable53bqbvs1?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable53bqbvs1?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "615",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1e83eca37b37c645a71e433a7e59f033-2b4815dd2d2faa43-00",
+ "traceparent": "00-016edb733a563f4490c3f8fc3ccb491f-c338c2bdc634ad4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "07b3e3afa8390197750fe9252c27e79a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:18:38 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -160,141 +144,114 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:51 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A51.9616242Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable53bqbvs1(PartitionKey=\u0027somPartition2\u0027,RowKey=\u002701\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:18:37 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A18%3A37.9248648Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable53bqbvs1(PartitionKey=\u0027somPartition2\u0027,RowKey=\u002701\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "07b3e3afa8390197750fe9252c27e79a",
- "x-ms-request-id": "20752a76-b002-001b-4921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "07b3e3af-a839-0197-750f-e9252c27e79a"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable53bqbvs1/@Element",
- "odata.type": "chrissscratch.testtable53bqbvs1",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable53bqbvs1(PartitionKey=\u0027somPartition2\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A51.9616242Z\u0027\u0022",
- "odata.editLink": "testtable53bqbvs1(PartitionKey=\u0027somPartition2\u0027,RowKey=\u002701\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable53bqbvs1/$metadata#testtable53bqbvs1/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A18%3A37.9248648Z\u0027\u0022",
"PartitionKey": "somPartition2",
"RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:51.9616242Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:02:00Z",
+ "SomeDateProperty": "2020-01-01T01:02:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "1",
- "SomeDoubleProperty0": 1.0,
+ "SomeDoubleProperty0": 1,
"SomeDoubleProperty1": 1.1,
- "SomeIntProperty": 1
+ "SomeIntProperty": 1,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:18:37.9248648Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable53bqbvs1()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable53bqbvs1()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "68c4402be2178235af9d8530e5942066",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:18:38 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:51 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:18:37 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "68c4402be2178235af9d8530e5942066",
- "x-ms-request-id": "20752a82-b002-001b-5521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "68c4402b-e217-8235-af9d-8530e5942066"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable53bqbvs1",
"value": [
{
- "odata.type": "chrissscratch.testtable53bqbvs1",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable53bqbvs1(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A51.9165864Z\u0027\u0022",
- "odata.editLink": "testtable53bqbvs1(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A18%3A37.8209288Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:51.9165864Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:02:00Z",
+ "SomeDateProperty": "2020-01-01T01:02:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "1",
- "SomeDoubleProperty0": 1.0,
+ "SomeDoubleProperty0": 1,
"SomeDoubleProperty1": 1.1,
- "SomeIntProperty": 1
+ "SomeIntProperty": 1,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:18:37.8209288Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable53bqbvs1\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable53bqbvs1\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-d49efec4a14d374e991ba2ca5b7373ea-086c078ec5ca9a4f-00",
+ "traceparent": "00-fbd5e3a264d8c947b03c934d4a36060e-e3757461f47a7149-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5c2617d9bdc86dd5b513b4586c0f8a4c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:18:38 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:51 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "5c2617d9bdc86dd5b513b4586c0f8a4c",
- "x-ms-request-id": "20752a8d-b002-001b-5c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:18:37 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "5c2617d9-bdc8-6dd5-b513-b4586c0f8a4c"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "635122323",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableExecuteQueryDictionaryAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableExecuteQueryDictionaryAsync.json
index 93439f24015d..5e3cbd8e4495 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableExecuteQueryDictionaryAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableExecuteQueryDictionaryAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c79fa9cee6259644a338b63793874338-4b47d331f03a1041-00",
+ "traceparent": "00-700df17808c11541a7071e02535624d4-4a47a67b33b9c340-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5af9b323340634bd2ab453ebf1ec67cd",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:38:47 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:10 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableegdjh4n7\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:38:47 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A47.3480200Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableegdjh4n7\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "5af9b323340634bd2ab453ebf1ec67cd",
- "x-ms-request-id": "20753c81-b002-001b-3d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "5af9b323-3406-34bd-2ab4-53ebf1ec67cd"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableegdjh4n7\u0027)",
- "odata.editLink": "Tables(\u0027testtableegdjh4n7\u0027)",
- "TableName": "testtableegdjh4n7"
+ "TableName": "testtableegdjh4n7",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableegdjh4n7?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableegdjh4n7?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-54ae88e07090f346926cd82f571080ea-9b4fe29306e0524d-00",
+ "traceparent": "00-a61981594bae32449dc1a8b03b5eabea-f39e10d8461b754d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "fbea3d76f93cf73f620127e091001cd4",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:38:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -83,60 +76,51 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:10 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A11.09751Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableegdjh4n7(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:38:47 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A47.9971336Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableegdjh4n7(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "fbea3d76f93cf73f620127e091001cd4",
- "x-ms-request-id": "20753c97-b002-001b-5021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "fbea3d76-f93c-f73f-6201-27e091001cd4"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableegdjh4n7/@Element",
- "odata.type": "chrissscratch.testtableegdjh4n7",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableegdjh4n7(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A11.09751Z\u0027\u0022",
- "odata.editLink": "testtableegdjh4n7(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableegdjh4n7/$metadata#testtableegdjh4n7/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A47.9971336Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:11.09751Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:02:00Z",
+ "SomeDateProperty": "2020-01-01T01:02:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "1",
- "SomeDoubleProperty0": 1.0,
+ "SomeDoubleProperty0": 1,
"SomeDoubleProperty1": 1.1,
- "SomeIntProperty": 1
+ "SomeIntProperty": 1,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:38:47.9971336Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableegdjh4n7?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableegdjh4n7?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "615",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d76ca53ef41b4e479489c17b17f3c1ce-4a37077110d10447-00",
+ "traceparent": "00-9773ee0e67e4494b9726ae27db118914-decf513543573a47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "20296072dbc43af7c932b287d4593158",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:38:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -160,141 +144,114 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:10 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A11.1425469Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableegdjh4n7(PartitionKey=\u0027somPartition2\u0027,RowKey=\u002701\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:38:47 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A48.0722952Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableegdjh4n7(PartitionKey=\u0027somPartition2\u0027,RowKey=\u002701\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "20296072dbc43af7c932b287d4593158",
- "x-ms-request-id": "20753ca4-b002-001b-5b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "20296072-dbc4-3af7-c932-b287d4593158"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableegdjh4n7/@Element",
- "odata.type": "chrissscratch.testtableegdjh4n7",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableegdjh4n7(PartitionKey=\u0027somPartition2\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A11.1425469Z\u0027\u0022",
- "odata.editLink": "testtableegdjh4n7(PartitionKey=\u0027somPartition2\u0027,RowKey=\u002701\u0027)",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableegdjh4n7/$metadata#testtableegdjh4n7/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A48.0722952Z\u0027\u0022",
"PartitionKey": "somPartition2",
"RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:11.1425469Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:02:00Z",
+ "SomeDateProperty": "2020-01-01T01:02:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "1",
- "SomeDoubleProperty0": 1.0,
+ "SomeDoubleProperty0": 1,
"SomeDoubleProperty1": 1.1,
- "SomeIntProperty": 1
+ "SomeIntProperty": 1,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:38:48.0722952Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableegdjh4n7()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableegdjh4n7()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e04f55e76926294c7302f8050ddda32a",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:38:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:10 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:38:47 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "e04f55e76926294c7302f8050ddda32a",
- "x-ms-request-id": "20753cae-b002-001b-6321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "e04f55e7-6926-294c-7302-f8050ddda32a"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableegdjh4n7",
"value": [
{
- "odata.type": "chrissscratch.testtableegdjh4n7",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableegdjh4n7(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A11.09751Z\u0027\u0022",
- "odata.editLink": "testtableegdjh4n7(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A47.9971336Z\u0027\u0022",
"PartitionKey": "somPartition",
"RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:11.09751Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
- "SomeDateProperty": "2020-01-01T01:02:00Z",
+ "SomeDateProperty": "2020-01-01T01:02:00.0000000Z",
"SomeGuidProperty@odata.type": "Edm.Guid",
"SomeGuidProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"SomeBinaryProperty@odata.type": "Edm.Binary",
"SomeBinaryProperty": "AQIDBAU=",
"SomeInt64Property@odata.type": "Edm.Int64",
"SomeInt64Property": "1",
- "SomeDoubleProperty0": 1.0,
+ "SomeDoubleProperty0": 1,
"SomeDoubleProperty1": 1.1,
- "SomeIntProperty": 1
+ "SomeIntProperty": 1,
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:38:47.9971336Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableegdjh4n7\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableegdjh4n7\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-5c49e482b75c644caf97dfe8f9cce05f-3773aab6fc561d4b-00",
+ "traceparent": "00-9fec8d388798a74fbb4c05880296c5c5-cb337530b9b4eb42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "91787e9847c39b0946af320946b72209",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:38:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:10 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "91787e9847c39b0946af320946b72209",
- "x-ms-request-id": "20753cb7-b002-001b-6c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:38:47 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "91787e98-47c3-9b09-46af-320946b72209"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1030363686",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableExecuteQueryGeneric.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableExecuteQueryGeneric.json
index 424e7b53cecb..ad3c78304a3a 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableExecuteQueryGeneric.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableExecuteQueryGeneric.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-0c697bfb15b55644811fc098b9a60f52-06226d1d126fff4c-00",
+ "traceparent": "00-37f60356c21af049ab5e418e759cfca9-3f13211371194e4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "dd6f16e9aedb583d49182883dc5782de",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:23 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:51 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabletla0x41o\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:37:23 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A23.1638536Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtabletla0x41o\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "dd6f16e9aedb583d49182883dc5782de",
- "x-ms-request-id": "20752a94-b002-001b-6321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "dd6f16e9-aedb-583d-4918-2883dc5782de"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabletla0x41o\u0027)",
- "odata.editLink": "Tables(\u0027testtabletla0x41o\u0027)",
- "TableName": "testtabletla0x41o"
+ "TableName": "testtabletla0x41o",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabletla0x41o?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtabletla0x41o?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-22876c30a090444a80402e0ebd4ded69-26d6401ba01eca45-00",
+ "traceparent": "00-e08fa0f7fccaac46911f3ad780cc361a-a39f118dcda4cd45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7371ba002b4439ab7cbfe092d409a73e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:24 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -128,39 +121,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:51 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A52.1687958Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtabletla0x41o(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:37:23 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A23.7336072Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtabletla0x41o(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "7371ba002b4439ab7cbfe092d409a73e",
- "x-ms-request-id": "20752aa0-b002-001b-6e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "7371ba00-2b44-39ab-7cbf-e092d409a73e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabletla0x41o/@Element",
- "odata.type": "chrissscratch.testtabletla0x41o",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabletla0x41o(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A52.1687958Z\u0027\u0022",
- "odata.editLink": "testtabletla0x41o(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:52.1687958Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtabletla0x41o/$metadata#testtabletla0x41o/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A23.7336072Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -174,7 +153,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -191,24 +170,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
+ "String": "0001",
+ "PartitionKey": "somPartition",
+ "RowKey": "0001",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:37:23.7336072Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabletla0x41o?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtabletla0x41o?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1740",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-3435de9cb4cdba41a97a806da318a837-831711174b28504c-00",
+ "traceparent": "00-7a108725034024499b5625575372291c-6870d55bc9c62947-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5f9ddcae8db1ca12d2a142c34bfd6709",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:24 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -277,39 +261,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:51 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A52.2168357Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtabletla0x41o(PartitionKey=\u0027somPartition2\u0027,RowKey=\u00270001\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:37:23 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A23.8109192Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtabletla0x41o(PartitionKey=\u0027somPartition2\u0027,RowKey=\u00270001\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "5f9ddcae8db1ca12d2a142c34bfd6709",
- "x-ms-request-id": "20752ab0-b002-001b-7d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "5f9ddcae-8db1-ca12-d2a1-42c34bfd6709"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabletla0x41o/@Element",
- "odata.type": "chrissscratch.testtabletla0x41o",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabletla0x41o(PartitionKey=\u0027somPartition2\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A52.2168357Z\u0027\u0022",
- "odata.editLink": "testtabletla0x41o(PartitionKey=\u0027somPartition2\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition2",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:52.2168357Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtabletla0x41o/$metadata#testtabletla0x41o/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A23.8109192Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -323,7 +293,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -340,60 +310,50 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
+ "String": "0001",
+ "PartitionKey": "somPartition2",
+ "RowKey": "0001",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:37:23.8109192Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabletla0x41o()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtabletla0x41o()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "80a7b7dddaa9bdd36b35601cceaa8440",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:24 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:52 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:37:23 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "80a7b7dddaa9bdd36b35601cceaa8440",
- "x-ms-request-id": "20752ab9-b002-001b-0621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "80a7b7dd-daa9-bdd3-6b35-601cceaa8440"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabletla0x41o",
"value": [
{
- "odata.type": "chrissscratch.testtabletla0x41o",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabletla0x41o(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A52.1687958Z\u0027\u0022",
- "odata.editLink": "testtabletla0x41o(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:52.1687958Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A23.7336072Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -407,7 +367,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -424,48 +384,45 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
+ "String": "0001",
+ "PartitionKey": "somPartition",
+ "RowKey": "0001",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:37:23.7336072Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabletla0x41o\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtabletla0x41o\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-9d56c677fbb91a409cc5b285d52a01ff-9e255fe35ea4564b-00",
+ "traceparent": "00-23f5b62424de274e8305721f840e798f-ca34cb1a9a1c7048-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ffd5e97023b9722da8a7a0a3e8e8ed7f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:24 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:52 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ffd5e97023b9722da8a7a0a3e8e8ed7f",
- "x-ms-request-id": "20752ac2-b002-001b-0f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:37:25 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "ffd5e970-23b9-722d-a8a7-a0a3e8e8ed7f"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "600061908",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableExecuteQueryGenericAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableExecuteQueryGenericAsync.json
index c96e1ac67b71..662c035747b1 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableExecuteQueryGenericAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableExecuteQueryGenericAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c9f63b67f440664aa8803dfe0ca6aced-a68414edd660a045-00",
+ "traceparent": "00-7f792a5d4d170b4d82dd7d44b88b3a38-7b00b73e5a32bc4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f38c74b02d79d15caaa44ead11c17614",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:39:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:11 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablelpbwmxbz\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:39:48 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A47.7253128Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablelpbwmxbz\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "f38c74b02d79d15caaa44ead11c17614",
- "x-ms-request-id": "20753cc7-b002-001b-7c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "f38c74b0-2d79-d15c-aaa4-4ead11c17614"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablelpbwmxbz\u0027)",
- "odata.editLink": "Tables(\u0027testtablelpbwmxbz\u0027)",
- "TableName": "testtablelpbwmxbz"
+ "TableName": "testtablelpbwmxbz",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablelpbwmxbz?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablelpbwmxbz?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-54b84003d61c504e9ce9c53b7e9f5aa4-7d8be6129ca79647-00",
+ "traceparent": "00-ef4d29b4b9a56f4ea0d9870d6c3c758d-5a100903422f7541-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "dc8f08367f1528e45a2c86f924542b84",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:39:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -128,39 +121,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:11 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A11.3246973Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablelpbwmxbz(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:39:48 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A48.4955656Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablelpbwmxbz(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "dc8f08367f1528e45a2c86f924542b84",
- "x-ms-request-id": "20753cd5-b002-001b-0921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "dc8f0836-7f15-28e4-5a2c-86f924542b84"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablelpbwmxbz/@Element",
- "odata.type": "chrissscratch.testtablelpbwmxbz",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablelpbwmxbz(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A11.3246973Z\u0027\u0022",
- "odata.editLink": "testtablelpbwmxbz(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:11.3246973Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablelpbwmxbz/$metadata#testtablelpbwmxbz/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A48.4955656Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -174,7 +153,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -191,24 +170,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
+ "String": "0001",
+ "PartitionKey": "somPartition",
+ "RowKey": "0001",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:39:48.4955656Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablelpbwmxbz?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablelpbwmxbz?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1740",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-41de9e7624e6e143946cc5e34baa7251-880b1c2a98bb9c49-00",
+ "traceparent": "00-e156c34fa909984b95a20bbe67df5b20-ef9584f5ad06024d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0c6924449806a30d839baf806800f73e",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:39:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -277,39 +261,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:11 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A11.3767409Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablelpbwmxbz(PartitionKey=\u0027somPartition2\u0027,RowKey=\u00270001\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:39:48 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A48.6138376Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablelpbwmxbz(PartitionKey=\u0027somPartition2\u0027,RowKey=\u00270001\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "0c6924449806a30d839baf806800f73e",
- "x-ms-request-id": "20753cdf-b002-001b-1321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "0c692444-9806-a30d-839b-af806800f73e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablelpbwmxbz/@Element",
- "odata.type": "chrissscratch.testtablelpbwmxbz",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablelpbwmxbz(PartitionKey=\u0027somPartition2\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A11.3767409Z\u0027\u0022",
- "odata.editLink": "testtablelpbwmxbz(PartitionKey=\u0027somPartition2\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition2",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:11.3767409Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablelpbwmxbz/$metadata#testtablelpbwmxbz/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A48.6138376Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -323,7 +293,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -340,60 +310,50 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
+ "String": "0001",
+ "PartitionKey": "somPartition2",
+ "RowKey": "0001",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:39:48.6138376Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablelpbwmxbz()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablelpbwmxbz()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "aba61c9bf76e30d09063994da762ad56",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:39:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:11 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:39:48 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "aba61c9bf76e30d09063994da762ad56",
- "x-ms-request-id": "20753ce5-b002-001b-1921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "aba61c9b-f76e-30d0-9063-994da762ad56"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablelpbwmxbz",
"value": [
{
- "odata.type": "chrissscratch.testtablelpbwmxbz",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablelpbwmxbz(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A11.3246973Z\u0027\u0022",
- "odata.editLink": "testtablelpbwmxbz(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:11.3246973Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A48.4955656Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -407,7 +367,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -424,48 +384,45 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
+ "String": "0001",
+ "PartitionKey": "somPartition",
+ "RowKey": "0001",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:39:48.4955656Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablelpbwmxbz\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablelpbwmxbz\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-a3512b902775c4469d27081cd034153c-f969525fd1a7d047-00",
+ "traceparent": "00-6c9e0ee2681d2d439d012ee356f04d6b-fe024b17ec369649-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ed69ca786a579e0efbeb5879d063bf59",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:39:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:11 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ed69ca786a579e0efbeb5879d063bf59",
- "x-ms-request-id": "20753ced-b002-001b-2021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:39:48 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "ed69ca78-6a57-9e0e-fbeb-5879d063bf59"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1033151482",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableFilterPredicate.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableFilterPredicate.json
index 4703ec19feeb..625a8daf16a8 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableFilterPredicate.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableFilterPredicate.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-cd8eacc5dac01044b10448f018af2f0c-ac93322facd5b741-00",
+ "traceparent": "00-26e6021bcc7cb7438562cbde0dc60036-a761e80c309b3649-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5a5923df9a22b742153bafc12ea92118",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:37:31 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:52 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabletvb04s8j\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:37:32 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A37%3A31.7488648Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtabletvb04s8j\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "5a5923df9a22b742153bafc12ea92118",
- "x-ms-request-id": "20752ad5-b002-001b-2021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "5a5923df-9a22-b742-153b-afc12ea92118"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabletvb04s8j\u0027)",
- "odata.editLink": "Tables(\u0027testtabletvb04s8j\u0027)",
- "TableName": "testtabletvb04s8j"
+ "TableName": "testtabletvb04s8j",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabletvb04s8j?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtabletvb04s8j?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6d039d49748c004f816e5d6c326d9e20-371544c9b6d71848-00",
+ "traceparent": "00-e31fb43cbb012f4c90185dace97fecc8-de3ddf925a16b74e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "09475b889a57b0f3776099fb3d12520e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:37:32 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -128,39 +121,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:52 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A52.3949835Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtabletvb04s8j(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:37:32 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A37%3A32.3460616Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtabletvb04s8j(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "09475b889a57b0f3776099fb3d12520e",
- "x-ms-request-id": "20752aef-b002-001b-3421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "09475b88-9a57-b0f3-7760-99fb3d12520e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabletvb04s8j/@Element",
- "odata.type": "chrissscratch.testtabletvb04s8j",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabletvb04s8j(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A52.3949835Z\u0027\u0022",
- "odata.editLink": "testtabletvb04s8j(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:52.3949835Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtabletvb04s8j/$metadata#testtabletvb04s8j/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A37%3A32.3460616Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -174,7 +153,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -191,24 +170,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
+ "String": "0001",
+ "PartitionKey": "somPartition",
+ "RowKey": "0001",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:37:32.3460616Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabletvb04s8j?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtabletvb04s8j?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-bee93806d2f51844a33065dbba209ed1-150c084365cf7948-00",
+ "traceparent": "00-9b98856c114f07439c077a66a4f65751-ee584b2667efa846-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "899f35dd3ed7cdd149411149830affd7",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:37:32 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -277,39 +261,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:52 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A52.442023Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtabletvb04s8j(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:37:32 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A37%3A32.4442632Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtabletvb04s8j(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "899f35dd3ed7cdd149411149830affd7",
- "x-ms-request-id": "20752af9-b002-001b-3e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "899f35dd-3ed7-cdd1-4941-1149830affd7"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabletvb04s8j/@Element",
- "odata.type": "chrissscratch.testtabletvb04s8j",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabletvb04s8j(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A52.442023Z\u0027\u0022",
- "odata.editLink": "testtabletvb04s8j(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0002",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:52.442023Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtabletvb04s8j/$metadata#testtabletvb04s8j/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A37%3A32.4442632Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -323,7 +293,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -340,24 +310,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
+ "String": "0002",
+ "PartitionKey": "somPartition",
+ "RowKey": "0002",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:37:32.4442632Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabletvb04s8j?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtabletvb04s8j?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1795",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8b0f5ae368d0de41898c9612ecfd4c11-a5c53aa699c66e46-00",
+ "traceparent": "00-fd01ef573a6ceb4abca249323d6d0fc9-407dc350ec530f4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c649d24c09d8444f30a8e2c201477a02",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:37:32 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -426,39 +401,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:52 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A52.48606Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtabletvb04s8j(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:37:32 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A37%3A32.5301768Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtabletvb04s8j(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c649d24c09d8444f30a8e2c201477a02",
- "x-ms-request-id": "20752b05-b002-001b-4a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "c649d24c-09d8-444f-30a8-e2c201477a02"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabletvb04s8j/@Element",
- "odata.type": "chrissscratch.testtabletvb04s8j",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabletvb04s8j(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A52.48606Z\u0027\u0022",
- "odata.editLink": "testtabletvb04s8j(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:52.48606Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtabletvb04s8j/$metadata#testtabletvb04s8j/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A37%3A32.5301768Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -472,7 +433,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -489,24 +450,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:37:32.5301768Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabletvb04s8j?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtabletvb04s8j?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9f9641255be0ef409d4f43201b9443ed-154a7afb37c55b48-00",
+ "traceparent": "00-1bd7eee39e1e92478c5b1b3b19c15a14-4f072c65f76a464f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f9e3a0e8970a4a40897abf1588a92d6d",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:37:32 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -575,39 +541,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:52 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A52.5270928Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtabletvb04s8j(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:37:32 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A37%3A32.6071816Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtabletvb04s8j(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "f9e3a0e8970a4a40897abf1588a92d6d",
- "x-ms-request-id": "20752b0d-b002-001b-5221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "f9e3a0e8-970a-4a40-897a-bf1588a92d6d"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabletvb04s8j/@Element",
- "odata.type": "chrissscratch.testtabletvb04s8j",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabletvb04s8j(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A52.5270928Z\u0027\u0022",
- "odata.editLink": "testtabletvb04s8j(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0004",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:52.5270928Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtabletvb04s8j/$metadata#testtabletvb04s8j/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A37%3A32.6071816Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -621,7 +573,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -638,60 +590,50 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:37:32.6071816Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabletvb04s8j()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28RowKey%20ne%20%270004%27%29%20and%20%28PartitionKey%20eq%20%27somPartition%27%29",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtabletvb04s8j()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28RowKey%20ne%20%270004%27%29%20and%20%28PartitionKey%20eq%20%27somPartition%27%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6aafc2608cc9d435e65a592f5b0fcc02",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:37:32 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:52 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:37:32 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "6aafc2608cc9d435e65a592f5b0fcc02",
- "x-ms-request-id": "20752b1b-b002-001b-6021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "6aafc260-8cc9-d435-e65a-592f5b0fcc02"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabletvb04s8j",
"value": [
{
- "odata.type": "chrissscratch.testtabletvb04s8j",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabletvb04s8j(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A52.3949835Z\u0027\u0022",
- "odata.editLink": "testtabletvb04s8j(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:52.3949835Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A37%3A32.3460616Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -705,7 +647,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -722,25 +664,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
- },
- {
- "odata.type": "chrissscratch.testtabletvb04s8j",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabletvb04s8j(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A52.442023Z\u0027\u0022",
- "odata.editLink": "testtabletvb04s8j(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
+ "String": "0001",
"PartitionKey": "somPartition",
- "RowKey": "0002",
+ "RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:52.442023Z",
+ "Timestamp": "2020-07-17T20:37:32.3460616Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A37%3A32.4442632Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -754,7 +693,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -771,25 +710,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
- },
- {
- "odata.type": "chrissscratch.testtabletvb04s8j",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabletvb04s8j(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A52.48606Z\u0027\u0022",
- "odata.editLink": "testtabletvb04s8j(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
+ "String": "0002",
"PartitionKey": "somPartition",
- "RowKey": "0003",
+ "RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:52.48606Z",
+ "Timestamp": "2020-07-17T20:37:32.4442632Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A37%3A32.5301768Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -803,7 +739,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -820,62 +756,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:37:32.5301768Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabletvb04s8j()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28RowKey%20ne%20%270004%27%29",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtabletvb04s8j()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28RowKey%20ne%20%270004%27%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e3600ec70627b4cd92ff3d5e4939bc86",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:37:32 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:52 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:37:32 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "e3600ec70627b4cd92ff3d5e4939bc86",
- "x-ms-request-id": "20752b28-b002-001b-6c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "e3600ec7-0627-b4cd-92ff-3d5e4939bc86"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabletvb04s8j",
"value": [
{
- "odata.type": "chrissscratch.testtabletvb04s8j",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabletvb04s8j(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A52.3949835Z\u0027\u0022",
- "odata.editLink": "testtabletvb04s8j(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:52.3949835Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A37%3A32.3460616Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -889,7 +815,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -906,25 +832,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
- },
- {
- "odata.type": "chrissscratch.testtabletvb04s8j",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabletvb04s8j(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A52.442023Z\u0027\u0022",
- "odata.editLink": "testtabletvb04s8j(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
+ "String": "0001",
"PartitionKey": "somPartition",
- "RowKey": "0002",
+ "RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:52.442023Z",
+ "Timestamp": "2020-07-17T20:37:32.3460616Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A37%3A32.4442632Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -938,7 +861,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -955,25 +878,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
- },
- {
- "odata.type": "chrissscratch.testtabletvb04s8j",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabletvb04s8j(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A52.48606Z\u0027\u0022",
- "odata.editLink": "testtabletvb04s8j(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
+ "String": "0002",
"PartitionKey": "somPartition",
- "RowKey": "0003",
+ "RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:52.48606Z",
+ "Timestamp": "2020-07-17T20:37:32.4442632Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A37%3A32.5301768Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -987,7 +907,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -1004,48 +924,45 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:37:32.5301768Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabletvb04s8j\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtabletvb04s8j\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-6f283f78cf59314d97be6592c9d41158-1e212328e75f814f-00",
+ "traceparent": "00-5cbc1a2f17a6a341b0d4800cb13dfb02-5fb2ac7dff379146-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3f61757b0f975c396a0f12af3e11ee7a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:53 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:37:33 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:52 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "3f61757b0f975c396a0f12af3e11ee7a",
- "x-ms-request-id": "20752b30-b002-001b-7421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:37:33 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "3f61757b-0f97-5c39-6a0f-12af3e11ee7a"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1362311206",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableFilterPredicateAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableFilterPredicateAsync.json
index 25faa4d06465..92c24d9d0e84 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableFilterPredicateAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableFilterPredicateAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-0bbd783362c2d84cac8f6af652a26c9c-d1147702059f2245-00",
+ "traceparent": "00-78f4f2eb69db1943b302536219db1fd2-2e9ab69e8baf9741-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3ad0e54d36f345a6f6fa734da1ba6597",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:38:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:11 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablet5e0ftyc\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:00 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A59.5538952Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablet5e0ftyc\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "3ad0e54d36f345a6f6fa734da1ba6597",
- "x-ms-request-id": "20753cf3-b002-001b-2521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "3ad0e54d-36f3-45a6-f6fa-734da1ba6597"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablet5e0ftyc\u0027)",
- "odata.editLink": "Tables(\u0027testtablet5e0ftyc\u0027)",
- "TableName": "testtablet5e0ftyc"
+ "TableName": "testtablet5e0ftyc",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablet5e0ftyc?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablet5e0ftyc?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-330722d854cd1543a4ea0f44dc9217a4-16289ca7bc90de4a-00",
+ "traceparent": "00-8a10cae9825c124f90bea7252ba2ab86-e8be8d1f73801c4d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ea84fab0dbfdc89f0c7057630a5a8dbf",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -128,39 +121,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:11 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A11.559893Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablet5e0ftyc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:00 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A00.2233864Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablet5e0ftyc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ea84fab0dbfdc89f0c7057630a5a8dbf",
- "x-ms-request-id": "20753d02-b002-001b-3221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "ea84fab0-dbfd-c89f-0c70-57630a5a8dbf"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablet5e0ftyc/@Element",
- "odata.type": "chrissscratch.testtablet5e0ftyc",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet5e0ftyc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A11.559893Z\u0027\u0022",
- "odata.editLink": "testtablet5e0ftyc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:11.559893Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablet5e0ftyc/$metadata#testtablet5e0ftyc/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A00.2233864Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -174,7 +153,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -191,24 +170,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
+ "String": "0001",
+ "PartitionKey": "somPartition",
+ "RowKey": "0001",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:00.2233864Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablet5e0ftyc?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablet5e0ftyc?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-17f73ec602df354686dbbe70cae8b79e-e2c6ebfdf215a241-00",
+ "traceparent": "00-70cbb368c8f288468bf910c6e8955366-244923b91db73648-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "879a6c7bba7c3e66f3f4baf0743946fe",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -277,39 +261,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:11 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A11.6049308Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablet5e0ftyc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:00 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A00.3035656Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablet5e0ftyc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "879a6c7bba7c3e66f3f4baf0743946fe",
- "x-ms-request-id": "20753d0c-b002-001b-3c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "879a6c7b-ba7c-3e66-f3f4-baf0743946fe"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablet5e0ftyc/@Element",
- "odata.type": "chrissscratch.testtablet5e0ftyc",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet5e0ftyc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A11.6049308Z\u0027\u0022",
- "odata.editLink": "testtablet5e0ftyc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0002",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:11.6049308Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablet5e0ftyc/$metadata#testtablet5e0ftyc/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A00.3035656Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -323,7 +293,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -340,24 +310,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
+ "String": "0002",
+ "PartitionKey": "somPartition",
+ "RowKey": "0002",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:00.3035656Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablet5e0ftyc?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablet5e0ftyc?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1795",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a939557e3982db4ba48dcd96d11b4ce1-dd9a771c5e361f48-00",
+ "traceparent": "00-914757c70df17a4da5f6be6d91ce5bda-902c1f58334a8b49-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ba78fcd171ff720a45082d82de433a9b",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:11 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -426,39 +401,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:11 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A11.6569731Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablet5e0ftyc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:00 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A00.3912200Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablet5e0ftyc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ba78fcd171ff720a45082d82de433a9b",
- "x-ms-request-id": "20753d21-b002-001b-5121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "ba78fcd1-71ff-720a-4508-2d82de433a9b"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablet5e0ftyc/@Element",
- "odata.type": "chrissscratch.testtablet5e0ftyc",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet5e0ftyc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A11.6569731Z\u0027\u0022",
- "odata.editLink": "testtablet5e0ftyc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:11.6569731Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablet5e0ftyc/$metadata#testtablet5e0ftyc/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A00.3912200Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -472,7 +433,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -489,24 +450,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:00.3912200Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablet5e0ftyc?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablet5e0ftyc?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8505bdae3ddaa74cb5d1401723022d03-b80a6b196b30a246-00",
+ "traceparent": "00-9de946b4daba9f468a0ba2433f29988a-41a0c518afb43a4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "34d1b36cdd20f61a9345f70821af54d2",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -575,39 +541,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:11 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A11.7100172Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablet5e0ftyc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:00 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A00.4683272Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablet5e0ftyc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "34d1b36cdd20f61a9345f70821af54d2",
- "x-ms-request-id": "20753d27-b002-001b-5721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "34d1b36c-dd20-f61a-9345-f70821af54d2"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablet5e0ftyc/@Element",
- "odata.type": "chrissscratch.testtablet5e0ftyc",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet5e0ftyc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A11.7100172Z\u0027\u0022",
- "odata.editLink": "testtablet5e0ftyc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0004",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:11.7100172Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablet5e0ftyc/$metadata#testtablet5e0ftyc/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A00.4683272Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -621,7 +573,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -638,60 +590,50 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:00.4683272Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablet5e0ftyc()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28RowKey%20ne%20%270004%27%29%20and%20%28PartitionKey%20eq%20%27somPartition%27%29",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablet5e0ftyc()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28RowKey%20ne%20%270004%27%29%20and%20%28PartitionKey%20eq%20%27somPartition%27%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0d915929d3e109c0612842748ce460b0",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:11 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:00 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "0d915929d3e109c0612842748ce460b0",
- "x-ms-request-id": "20753d34-b002-001b-6321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "0d915929-d3e1-09c0-6128-42748ce460b0"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablet5e0ftyc",
"value": [
{
- "odata.type": "chrissscratch.testtablet5e0ftyc",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet5e0ftyc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A11.559893Z\u0027\u0022",
- "odata.editLink": "testtablet5e0ftyc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:11.559893Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A00.2233864Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -705,7 +647,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -722,25 +664,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
- },
- {
- "odata.type": "chrissscratch.testtablet5e0ftyc",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet5e0ftyc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A11.6049308Z\u0027\u0022",
- "odata.editLink": "testtablet5e0ftyc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
+ "String": "0001",
"PartitionKey": "somPartition",
- "RowKey": "0002",
+ "RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:11.6049308Z",
+ "Timestamp": "2020-07-17T19:39:00.2233864Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A00.3035656Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -754,7 +693,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -771,25 +710,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
- },
- {
- "odata.type": "chrissscratch.testtablet5e0ftyc",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet5e0ftyc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A11.6569731Z\u0027\u0022",
- "odata.editLink": "testtablet5e0ftyc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
+ "String": "0002",
"PartitionKey": "somPartition",
- "RowKey": "0003",
+ "RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:11.6569731Z",
+ "Timestamp": "2020-07-17T19:39:00.3035656Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A00.3912200Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -803,7 +739,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -820,62 +756,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:00.3912200Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablet5e0ftyc()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28RowKey%20ne%20%270004%27%29",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablet5e0ftyc()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28RowKey%20ne%20%270004%27%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c0841eb91168f3dee28127b97a025196",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:11 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:00 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c0841eb91168f3dee28127b97a025196",
- "x-ms-request-id": "20753d41-b002-001b-7021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "c0841eb9-1168-f3de-e281-27b97a025196"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablet5e0ftyc",
"value": [
{
- "odata.type": "chrissscratch.testtablet5e0ftyc",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet5e0ftyc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A11.559893Z\u0027\u0022",
- "odata.editLink": "testtablet5e0ftyc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:11.559893Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A00.2233864Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -889,7 +815,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -906,25 +832,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
- },
- {
- "odata.type": "chrissscratch.testtablet5e0ftyc",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet5e0ftyc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A11.6049308Z\u0027\u0022",
- "odata.editLink": "testtablet5e0ftyc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
+ "String": "0001",
"PartitionKey": "somPartition",
- "RowKey": "0002",
+ "RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:11.6049308Z",
+ "Timestamp": "2020-07-17T19:39:00.2233864Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A00.3035656Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -938,7 +861,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -955,25 +878,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
- },
- {
- "odata.type": "chrissscratch.testtablet5e0ftyc",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet5e0ftyc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A11.6569731Z\u0027\u0022",
- "odata.editLink": "testtablet5e0ftyc(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
+ "String": "0002",
"PartitionKey": "somPartition",
- "RowKey": "0003",
+ "RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:11.6569731Z",
+ "Timestamp": "2020-07-17T19:39:00.3035656Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A00.3912200Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -987,7 +907,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -1004,48 +924,45 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:00.3912200Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablet5e0ftyc\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablet5e0ftyc\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-15017478b732fb418d7bd32093d05301-45dda4bd98689340-00",
+ "traceparent": "00-c0b306dc692f9c4b9f8c176b779fb900-c170c5e26eb85542-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "85585bb42db199baf3c7d3f79ba56aaf",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:11 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "85585bb42db199baf3c7d3f79ba56aaf",
- "x-ms-request-id": "20753d51-b002-001b-8021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:39:00 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "85585bb4-2db1-99ba-f3c7-d3f79ba56aaf"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "85145688",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableMultipleTake.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableMultipleTake.json
index 9a3315949643..6726b48a0030 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableMultipleTake.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableMultipleTake.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-7d639d66064f2e4ebb6e5308a4eff526-6f60c18f9076e149-00",
+ "traceparent": "00-94b2a6d5a78724418c780a229e2f28e9-46e2d1edab52a641-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f41bce151197839db5d0c12cf989e8ae",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:53 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:35 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:52 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable079mzfvi\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:37:35 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A35.5768840Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable079mzfvi\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "f41bce151197839db5d0c12cf989e8ae",
- "x-ms-request-id": "20752b35-b002-001b-7921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "f41bce15-1197-839d-b5d0-c12cf989e8ae"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable079mzfvi\u0027)",
- "odata.editLink": "Tables(\u0027testtable079mzfvi\u0027)",
- "TableName": "testtable079mzfvi"
+ "TableName": "testtable079mzfvi",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable079mzfvi?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable079mzfvi?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ac493ce8f2d2774e9a9b161d2d04827e-33d8517ad66c6147-00",
+ "traceparent": "00-7e71592cfc2bb343bee5958f42b8d774-264d850813e5e04b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "41ea49553fa54978a2db8df0396ef4e9",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:53 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:36 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -86,61 +79,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:52 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A52.8233391Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:37:35 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A36.2783240Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "41ea49553fa54978a2db8df0396ef4e9",
- "x-ms-request-id": "20752b3b-b002-001b-7e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "41ea4955-3fa5-4978-a2db-8df0396ef4e9"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable079mzfvi/@Element",
- "odata.type": "chrissscratch.testtable079mzfvi",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A52.8233391Z\u0027\u0022",
- "odata.editLink": "testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:52.8233391Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable079mzfvi/$metadata#testtable079mzfvi/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A36.2783240Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:02:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "1",
- "DoubleTypeProperty": 1.0,
- "IntTypeProperty": 1
+ "DoubleTypeProperty": 1,
+ "IntTypeProperty": 1,
+ "PartitionKey": "somPartition",
+ "RowKey": "01",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:37:36.2783240Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable079mzfvi?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable079mzfvi?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-524c34f6116bdc4fb7f2d02d5ce5794f-65e133af5a62fe4b-00",
+ "traceparent": "00-a061d4bdc9dceb4cbd7e791f66a567b0-0a4e1cce1933204d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "68b22007b106633e66f6e5649004d43a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:53 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:36 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -167,61 +151,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:52 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A52.8683765Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:37:35 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A36.3520520Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "68b22007b106633e66f6e5649004d43a",
- "x-ms-request-id": "20752b44-b002-001b-0721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "68b22007-b106-633e-66f6-e5649004d43a"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable079mzfvi/@Element",
- "odata.type": "chrissscratch.testtable079mzfvi",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A52.8683765Z\u0027\u0022",
- "odata.editLink": "testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "02",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:52.8683765Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable079mzfvi/$metadata#testtable079mzfvi/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A36.3520520Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 02",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:03:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:03:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:03:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:03:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "2",
- "DoubleTypeProperty": 2.0,
- "IntTypeProperty": 2
+ "DoubleTypeProperty": 2,
+ "IntTypeProperty": 2,
+ "PartitionKey": "somPartition",
+ "RowKey": "02",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:37:36.3520520Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable079mzfvi?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable079mzfvi?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ade52c4429792849887d183fb5e47843-ed90d4778a34bf41-00",
+ "traceparent": "00-aac7e0a4de7b034fab38e5bd26123320-ace56fe9c070a243-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a88a0bd7d724d66155d251bc83ad4a47",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:53 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:36 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -248,61 +223,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:52 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A52.9134143Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:37:35 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A36.4289544Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a88a0bd7d724d66155d251bc83ad4a47",
- "x-ms-request-id": "20752b4a-b002-001b-0d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "a88a0bd7-d724-d661-55d2-51bc83ad4a47"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable079mzfvi/@Element",
- "odata.type": "chrissscratch.testtable079mzfvi",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A52.9134143Z\u0027\u0022",
- "odata.editLink": "testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "03",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:52.9134143Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable079mzfvi/$metadata#testtable079mzfvi/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A36.4289544Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 03",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:04:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:04:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:04:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:04:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "3",
- "DoubleTypeProperty": 3.0,
- "IntTypeProperty": 3
+ "DoubleTypeProperty": 3,
+ "IntTypeProperty": 3,
+ "PartitionKey": "somPartition",
+ "RowKey": "03",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:37:36.4289544Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable079mzfvi?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable079mzfvi?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-db1bc9929eaf3e469f82fd0c5a40088e-f7d25f80b877dd4c-00",
+ "traceparent": "00-4dde3dbfd852f04393e2cfd33e1f3cda-d335b0d15c9d774d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d824d7db80d6a4a70b86daaf5a14b89e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:53 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:36 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -329,61 +295,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:52 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A52.9594521Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:37:35 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A36.5051400Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "d824d7db80d6a4a70b86daaf5a14b89e",
- "x-ms-request-id": "20752b56-b002-001b-1821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "d824d7db-80d6-a4a7-0b86-daaf5a14b89e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable079mzfvi/@Element",
- "odata.type": "chrissscratch.testtable079mzfvi",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A52.9594521Z\u0027\u0022",
- "odata.editLink": "testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "04",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:52.9594521Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable079mzfvi/$metadata#testtable079mzfvi/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A36.5051400Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 04",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:05:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:05:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:05:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:05:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "4",
- "DoubleTypeProperty": 4.0,
- "IntTypeProperty": 4
+ "DoubleTypeProperty": 4,
+ "IntTypeProperty": 4,
+ "PartitionKey": "somPartition",
+ "RowKey": "04",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:37:36.5051400Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable079mzfvi?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable079mzfvi?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8175e3d95649c44a897e518d90617c20-db5cbaf33b93c54f-00",
+ "traceparent": "00-d5b9724c6d22b847b68f62b46fb9f67b-238db4589a0a2946-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2d1853064ce330c5bedb13345f82e0b9",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:53 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:36 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -410,61 +367,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:52 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A53.0014866Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:37:35 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A36.5764104Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "2d1853064ce330c5bedb13345f82e0b9",
- "x-ms-request-id": "20752b5f-b002-001b-2121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "2d185306-4ce3-30c5-bedb-13345f82e0b9"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable079mzfvi/@Element",
- "odata.type": "chrissscratch.testtable079mzfvi",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A53.0014866Z\u0027\u0022",
- "odata.editLink": "testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "05",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:53.0014866Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable079mzfvi/$metadata#testtable079mzfvi/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A36.5764104Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 05",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:06:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:06:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:06:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:06:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90005",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "5",
- "DoubleTypeProperty": 5.0,
- "IntTypeProperty": 5
+ "DoubleTypeProperty": 5,
+ "IntTypeProperty": 5,
+ "PartitionKey": "somPartition",
+ "RowKey": "05",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:37:36.5764104Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable079mzfvi?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable079mzfvi?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-eac23a3ce50f0f4e970ea7eaae96117f-acdaeb4d37eea242-00",
+ "traceparent": "00-909221aecaed954dae8b31d8822a9f82-c292fbe92b2a4447-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b8899dabfbdf576364e69d9dfcb27c40",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:53 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -491,61 +439,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:52 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A53.0465244Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:37:35 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A36.6514696Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "b8899dabfbdf576364e69d9dfcb27c40",
- "x-ms-request-id": "20752b6f-b002-001b-3121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "b8899dab-fbdf-5763-64e6-9d9dfcb27c40"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable079mzfvi/@Element",
- "odata.type": "chrissscratch.testtable079mzfvi",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A53.0465244Z\u0027\u0022",
- "odata.editLink": "testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "06",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:53.0465244Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable079mzfvi/$metadata#testtable079mzfvi/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A36.6514696Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 06",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:07:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:07:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:07:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:07:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90006",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "6",
- "DoubleTypeProperty": 6.0,
- "IntTypeProperty": 6
+ "DoubleTypeProperty": 6,
+ "IntTypeProperty": 6,
+ "PartitionKey": "somPartition",
+ "RowKey": "06",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:37:36.6514696Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable079mzfvi?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable079mzfvi?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a7e4c66b0f99b44fbcd73911e7da8500-496e30f57f7ee846-00",
+ "traceparent": "00-b0978c1ba973a448a8075bb6c967eadc-d51e9dcec2fb404e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "30b6b3191c948f6412f41afb6c724489",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:53 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -572,61 +511,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:52 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A53.0905614Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:37:35 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A36.7277576Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "30b6b3191c948f6412f41afb6c724489",
- "x-ms-request-id": "20752b7d-b002-001b-3d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "30b6b319-1c94-8f64-12f4-1afb6c724489"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable079mzfvi/@Element",
- "odata.type": "chrissscratch.testtable079mzfvi",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A53.0905614Z\u0027\u0022",
- "odata.editLink": "testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "07",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:53.0905614Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable079mzfvi/$metadata#testtable079mzfvi/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A36.7277576Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 07",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:08:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:08:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:08:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:08:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90007",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "7",
- "DoubleTypeProperty": 7.0,
- "IntTypeProperty": 7
+ "DoubleTypeProperty": 7,
+ "IntTypeProperty": 7,
+ "PartitionKey": "somPartition",
+ "RowKey": "07",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:37:36.7277576Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable079mzfvi?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable079mzfvi?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ca77525b10b52846b2195ab7823c0cc4-64efa039faa31443-00",
+ "traceparent": "00-175b965ad73c8e43876737e5cf50f08a-ac63202a3c5f7845-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "bc0321a6008a0abeefc1c9fdae28330b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:53 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -653,61 +583,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:52 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A53.1355979Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:37:35 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A36.8059912Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "bc0321a6008a0abeefc1c9fdae28330b",
- "x-ms-request-id": "20752b88-b002-001b-4521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "bc0321a6-008a-0abe-efc1-c9fdae28330b"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable079mzfvi/@Element",
- "odata.type": "chrissscratch.testtable079mzfvi",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A53.1355979Z\u0027\u0022",
- "odata.editLink": "testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "08",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:53.1355979Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable079mzfvi/$metadata#testtable079mzfvi/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A36.8059912Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 08",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:09:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:09:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:09:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:09:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90008",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "8",
- "DoubleTypeProperty": 8.0,
- "IntTypeProperty": 8
+ "DoubleTypeProperty": 8,
+ "IntTypeProperty": 8,
+ "PartitionKey": "somPartition",
+ "RowKey": "08",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:37:36.8059912Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable079mzfvi?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable079mzfvi?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-05e309fb193329408546791d35399ea3-597fb60f45100a43-00",
+ "traceparent": "00-8bd163555baa6c45be84c31be62663b9-db1f74f8f038be43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ac1bd25fb0cc8e2439faa6ebe168eaf1",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:53 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -734,61 +655,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:52 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A53.1796353Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:37:35 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A36.8825864Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ac1bd25fb0cc8e2439faa6ebe168eaf1",
- "x-ms-request-id": "20752b95-b002-001b-5021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "ac1bd25f-b0cc-8e24-39fa-a6ebe168eaf1"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable079mzfvi/@Element",
- "odata.type": "chrissscratch.testtable079mzfvi",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A53.1796353Z\u0027\u0022",
- "odata.editLink": "testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "09",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:53.1796353Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable079mzfvi/$metadata#testtable079mzfvi/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A36.8825864Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 09",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:10:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:10:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:10:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:10:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90009",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "9",
- "DoubleTypeProperty": 9.0,
- "IntTypeProperty": 9
+ "DoubleTypeProperty": 9,
+ "IntTypeProperty": 9,
+ "PartitionKey": "somPartition",
+ "RowKey": "09",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:37:36.8825864Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable079mzfvi?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable079mzfvi?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-bc73b31737513e41b10f897298122990-8a0d41c06729dd49-00",
+ "traceparent": "00-b3ec435a989d344cbccbb25f85ae44c6-cc32eca80f69c74b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "daf714a1bfaf18b5f4ab40d35366e0ea",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:53 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -815,389 +727,328 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:52 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A53.2216694Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:37:36 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A36.9560072Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "daf714a1bfaf18b5f4ab40d35366e0ea",
- "x-ms-request-id": "20752b9c-b002-001b-5721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "daf714a1-bfaf-18b5-f4ab-40d35366e0ea"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable079mzfvi/@Element",
- "odata.type": "chrissscratch.testtable079mzfvi",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A53.2216694Z\u0027\u0022",
- "odata.editLink": "testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "10",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:53.2216694Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable079mzfvi/$metadata#testtable079mzfvi/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A36.9560072Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 10",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:11:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:11:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:11:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:11:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90010",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "10",
- "DoubleTypeProperty": 10.0,
- "IntTypeProperty": 10
+ "DoubleTypeProperty": 10,
+ "IntTypeProperty": 10,
+ "PartitionKey": "somPartition",
+ "RowKey": "10",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:37:36.9560072Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable079mzfvi()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026$filter=PartitionKey%20eq%20%27somPartition%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable079mzfvi()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026$filter=PartitionKey%20eq%20%27somPartition%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9a9b0ec09856f5bdfd7483905ad32986",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:53 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:53 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:37:36 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "9a9b0ec09856f5bdfd7483905ad32986",
- "x-ms-continuation-NextPartitionKey": "1!16!c29tUGFydGl0aW9u",
- "x-ms-continuation-NextRowKey": "1!4!MDY-",
- "x-ms-request-id": "20752baa-b002-001b-6421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-continuation-NextPartitionKey": "{\u0022token\u0022:\u0022\u002BRID:~b1w3AI5duFIFAAAAAAAAAA==#RT:1#TRC:5#ISV:2#IEO:65551#FPC:AQUAAAAAAAAACgAAAAAAAAA=\u0022,\u0022range\u0022:{\u0022min\u0022:\u0022\u0022,\u0022max\u0022:\u0022FF\u0022}}",
+ "x-ms-continuation-NextRowKey": "NA",
+ "x-ms-request-id": "9a9b0ec0-9856-f5bd-fd74-83905ad32986"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable079mzfvi",
"value": [
{
- "odata.type": "chrissscratch.testtable079mzfvi",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A52.8233391Z\u0027\u0022",
- "odata.editLink": "testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:52.8233391Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A36.2783240Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:02:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "1",
- "DoubleTypeProperty": 1.0,
- "IntTypeProperty": 1
- },
- {
- "odata.type": "chrissscratch.testtable079mzfvi",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A52.8683765Z\u0027\u0022",
- "odata.editLink": "testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
+ "DoubleTypeProperty": 1,
+ "IntTypeProperty": 1,
"PartitionKey": "somPartition",
- "RowKey": "02",
+ "RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:52.8683765Z",
+ "Timestamp": "2020-07-17T19:37:36.2783240Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A36.3520520Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 02",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:03:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:03:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:03:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:03:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "2",
- "DoubleTypeProperty": 2.0,
- "IntTypeProperty": 2
- },
- {
- "odata.type": "chrissscratch.testtable079mzfvi",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A52.9134143Z\u0027\u0022",
- "odata.editLink": "testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
+ "DoubleTypeProperty": 2,
+ "IntTypeProperty": 2,
"PartitionKey": "somPartition",
- "RowKey": "03",
+ "RowKey": "02",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:52.9134143Z",
+ "Timestamp": "2020-07-17T19:37:36.3520520Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A36.4289544Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 03",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:04:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:04:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:04:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:04:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "3",
- "DoubleTypeProperty": 3.0,
- "IntTypeProperty": 3
- },
- {
- "odata.type": "chrissscratch.testtable079mzfvi",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A52.9594521Z\u0027\u0022",
- "odata.editLink": "testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
+ "DoubleTypeProperty": 3,
+ "IntTypeProperty": 3,
"PartitionKey": "somPartition",
- "RowKey": "04",
+ "RowKey": "03",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:52.9594521Z",
+ "Timestamp": "2020-07-17T19:37:36.4289544Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A36.5051400Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 04",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:05:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:05:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:05:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:05:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "4",
- "DoubleTypeProperty": 4.0,
- "IntTypeProperty": 4
- },
- {
- "odata.type": "chrissscratch.testtable079mzfvi",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A53.0014866Z\u0027\u0022",
- "odata.editLink": "testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
+ "DoubleTypeProperty": 4,
+ "IntTypeProperty": 4,
"PartitionKey": "somPartition",
- "RowKey": "05",
+ "RowKey": "04",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:53.0014866Z",
+ "Timestamp": "2020-07-17T19:37:36.5051400Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A36.5764104Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 05",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:06:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:06:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:06:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:06:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90005",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "5",
- "DoubleTypeProperty": 5.0,
- "IntTypeProperty": 5
+ "DoubleTypeProperty": 5,
+ "IntTypeProperty": 5,
+ "PartitionKey": "somPartition",
+ "RowKey": "05",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:37:36.5764104Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable079mzfvi()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026$filter=PartitionKey%20eq%20%27somPartition%27\u0026NextPartitionKey=1%2116%21c29tUGFydGl0aW9u\u0026NextRowKey=1%214%21MDY-",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable079mzfvi()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026$filter=PartitionKey%20eq%20%27somPartition%27\u0026NextPartitionKey=%7B%22token%22%3A%22%2BRID%3A~b1w3AI5duFIFAAAAAAAAAA%3D%3D%23RT%3A1%23TRC%3A5%23ISV%3A2%23IEO%3A65551%23FPC%3AAQUAAAAAAAAACgAAAAAAAAA%3D%22%2C%22range%22%3A%7B%22min%22%3A%22%22%2C%22max%22%3A%22FF%22%7D%7D\u0026NextRowKey=NA",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9a5cd7d65831a05c1c02b7206f513bd3",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:53 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:53 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:37:36 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "9a5cd7d65831a05c1c02b7206f513bd3",
- "x-ms-request-id": "20752bbd-b002-001b-7421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "9a5cd7d6-5831-a05c-1c02-b7206f513bd3"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable079mzfvi",
"value": [
{
- "odata.type": "chrissscratch.testtable079mzfvi",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A53.0465244Z\u0027\u0022",
- "odata.editLink": "testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "06",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:53.0465244Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A36.6514696Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 06",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:07:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:07:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:07:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:07:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90006",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "6",
- "DoubleTypeProperty": 6.0,
- "IntTypeProperty": 6
- },
- {
- "odata.type": "chrissscratch.testtable079mzfvi",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A53.0905614Z\u0027\u0022",
- "odata.editLink": "testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
+ "DoubleTypeProperty": 6,
+ "IntTypeProperty": 6,
"PartitionKey": "somPartition",
- "RowKey": "07",
+ "RowKey": "06",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:53.0905614Z",
+ "Timestamp": "2020-07-17T19:37:36.6514696Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A36.7277576Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 07",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:08:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:08:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:08:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:08:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90007",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "7",
- "DoubleTypeProperty": 7.0,
- "IntTypeProperty": 7
- },
- {
- "odata.type": "chrissscratch.testtable079mzfvi",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A53.1355979Z\u0027\u0022",
- "odata.editLink": "testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
+ "DoubleTypeProperty": 7,
+ "IntTypeProperty": 7,
"PartitionKey": "somPartition",
- "RowKey": "08",
+ "RowKey": "07",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:53.1355979Z",
+ "Timestamp": "2020-07-17T19:37:36.7277576Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A36.8059912Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 08",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:09:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:09:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:09:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:09:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90008",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "8",
- "DoubleTypeProperty": 8.0,
- "IntTypeProperty": 8
- },
- {
- "odata.type": "chrissscratch.testtable079mzfvi",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A53.1796353Z\u0027\u0022",
- "odata.editLink": "testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
+ "DoubleTypeProperty": 8,
+ "IntTypeProperty": 8,
"PartitionKey": "somPartition",
- "RowKey": "09",
+ "RowKey": "08",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:53.1796353Z",
+ "Timestamp": "2020-07-17T19:37:36.8059912Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A36.8825864Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 09",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:10:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:10:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:10:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:10:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90009",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "9",
- "DoubleTypeProperty": 9.0,
- "IntTypeProperty": 9
- },
- {
- "odata.type": "chrissscratch.testtable079mzfvi",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A53.2216694Z\u0027\u0022",
- "odata.editLink": "testtable079mzfvi(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
+ "DoubleTypeProperty": 9,
+ "IntTypeProperty": 9,
"PartitionKey": "somPartition",
- "RowKey": "10",
+ "RowKey": "09",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:53.2216694Z",
+ "Timestamp": "2020-07-17T19:37:36.8825864Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A36.9560072Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 10",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:11:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:11:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:11:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:11:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90010",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "10",
- "DoubleTypeProperty": 10.0,
- "IntTypeProperty": 10
+ "DoubleTypeProperty": 10,
+ "IntTypeProperty": 10,
+ "PartitionKey": "somPartition",
+ "RowKey": "10",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:37:36.9560072Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable079mzfvi\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable079mzfvi\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-c5ada5cfe3d5064f8464409e39bf64c9-0a2e6ffaffa3e845-00",
+ "traceparent": "00-9c59d41fb5b50f49882558683d86ed1a-cbc22390a2c7d646-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d22abb1950cd099a5701dd3a3c25be21",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:53 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:53 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "d22abb1950cd099a5701dd3a3c25be21",
- "x-ms-request-id": "20752bcb-b002-001b-0221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:37:36 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "d22abb19-50cd-099a-5701-dd3a3c25be21"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "2113637990",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableMultipleTakeAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableMultipleTakeAsync.json
index 31dbde8b4d18..10a87aebc89c 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableMultipleTakeAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableMultipleTakeAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-53c03b542b23c646a4b83cb9c47c6b0f-917ac727e3ae504f-00",
+ "traceparent": "00-732a6ad80a787541aeb74555a7bf8755-bc3f9c62277b0c4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1203138b8b6edc35599e7cadc20feee8",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:39:57 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:11 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabledciri8r0\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:39:58 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A58.0706824Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtabledciri8r0\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "1203138b8b6edc35599e7cadc20feee8",
- "x-ms-request-id": "20753d58-b002-001b-0721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "1203138b-8b6e-dc35-599e-7cadc20feee8"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabledciri8r0\u0027)",
- "odata.editLink": "Tables(\u0027testtabledciri8r0\u0027)",
- "TableName": "testtabledciri8r0"
+ "TableName": "testtabledciri8r0",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabledciri8r0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtabledciri8r0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-4c8d911e0bc42c4abe8a292bcec4332d-3cbc2cbf0d1d0548-00",
+ "traceparent": "00-4b5d2eaee1949846b6e646e811502a34-96fc35c1a89f1f48-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ada227a3175e97b5abcf7d6e9ce82294",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:39:58 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -86,61 +79,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:11 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A11.9962552Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:39:58 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A58.6338824Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ada227a3175e97b5abcf7d6e9ce82294",
- "x-ms-request-id": "20753d61-b002-001b-0e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "ada227a3-175e-97b5-abcf-7d6e9ce82294"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabledciri8r0/@Element",
- "odata.type": "chrissscratch.testtabledciri8r0",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A11.9962552Z\u0027\u0022",
- "odata.editLink": "testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:11.9962552Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtabledciri8r0/$metadata#testtabledciri8r0/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A58.6338824Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:02:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "1",
- "DoubleTypeProperty": 1.0,
- "IntTypeProperty": 1
+ "DoubleTypeProperty": 1,
+ "IntTypeProperty": 1,
+ "PartitionKey": "somPartition",
+ "RowKey": "01",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:39:58.6338824Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabledciri8r0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtabledciri8r0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-34eb7ad5f008254a87ad3a836c70377e-da02975ccfc2c844-00",
+ "traceparent": "00-31ce367ed007744985de3d911ab3b25a-a85eef2dcc451e44-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0cb00683ba6e80e094e8e3aa348d456e",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:39:58 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -167,61 +151,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:11 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.0482988Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:39:58 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A58.7210248Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "0cb00683ba6e80e094e8e3aa348d456e",
- "x-ms-request-id": "20753d69-b002-001b-1621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "0cb00683-ba6e-80e0-94e8-e3aa348d456e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabledciri8r0/@Element",
- "odata.type": "chrissscratch.testtabledciri8r0",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.0482988Z\u0027\u0022",
- "odata.editLink": "testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "02",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:12.0482988Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtabledciri8r0/$metadata#testtabledciri8r0/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A58.7210248Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 02",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:03:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:03:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:03:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:03:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "2",
- "DoubleTypeProperty": 2.0,
- "IntTypeProperty": 2
+ "DoubleTypeProperty": 2,
+ "IntTypeProperty": 2,
+ "PartitionKey": "somPartition",
+ "RowKey": "02",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:39:58.7210248Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabledciri8r0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtabledciri8r0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c7ac4ce852cc6f41bd2c8a3f8ff37185-aeeddc2c49f8124c-00",
+ "traceparent": "00-abe57a9e4543c8499abeb5f8f25a3874-f944823276396b4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5af07a5d69cc733c5d6b669f0ec64070",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:39:58 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -248,61 +223,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:11 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.0903329Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:39:58 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A58.8012040Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "5af07a5d69cc733c5d6b669f0ec64070",
- "x-ms-request-id": "20753d73-b002-001b-2021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "5af07a5d-69cc-733c-5d6b-669f0ec64070"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabledciri8r0/@Element",
- "odata.type": "chrissscratch.testtabledciri8r0",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.0903329Z\u0027\u0022",
- "odata.editLink": "testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "03",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:12.0903329Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtabledciri8r0/$metadata#testtabledciri8r0/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A58.8012040Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 03",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:04:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:04:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:04:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:04:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "3",
- "DoubleTypeProperty": 3.0,
- "IntTypeProperty": 3
+ "DoubleTypeProperty": 3,
+ "IntTypeProperty": 3,
+ "PartitionKey": "somPartition",
+ "RowKey": "03",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:39:58.8012040Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabledciri8r0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtabledciri8r0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-23ed91e2dff0fe4b9c3ad808a4afb780-29d7747ef7875647-00",
+ "traceparent": "00-901bdf75aa119a48adf9479acdc07b02-80071d3028e7864d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "bc2ae77ce25fe87947221975330b631e",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:39:58 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -329,61 +295,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:11 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.1353711Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:39:58 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A58.8842504Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "bc2ae77ce25fe87947221975330b631e",
- "x-ms-request-id": "20753d86-b002-001b-3021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "bc2ae77c-e25f-e879-4722-1975330b631e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabledciri8r0/@Element",
- "odata.type": "chrissscratch.testtabledciri8r0",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.1353711Z\u0027\u0022",
- "odata.editLink": "testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "04",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:12.1353711Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtabledciri8r0/$metadata#testtabledciri8r0/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A58.8842504Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 04",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:05:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:05:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:05:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:05:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "4",
- "DoubleTypeProperty": 4.0,
- "IntTypeProperty": 4
+ "DoubleTypeProperty": 4,
+ "IntTypeProperty": 4,
+ "PartitionKey": "somPartition",
+ "RowKey": "04",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:39:58.8842504Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabledciri8r0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtabledciri8r0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f4b60223a6085e4c98b5dfba0e248d12-d1bc2c9bb0e60b48-00",
+ "traceparent": "00-55ce419323cf1245b1160a0eb0bd629c-176a4cd80a9d9249-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "21100f8ac7f719c8c93dae03544171cd",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:39:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -410,61 +367,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:11 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.1804081Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:39:58 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A58.9675016Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "21100f8ac7f719c8c93dae03544171cd",
- "x-ms-request-id": "20753d8f-b002-001b-3921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "21100f8a-c7f7-19c8-c93d-ae03544171cd"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabledciri8r0/@Element",
- "odata.type": "chrissscratch.testtabledciri8r0",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.1804081Z\u0027\u0022",
- "odata.editLink": "testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "05",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:12.1804081Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtabledciri8r0/$metadata#testtabledciri8r0/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A58.9675016Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 05",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:06:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:06:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:06:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:06:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90005",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "5",
- "DoubleTypeProperty": 5.0,
- "IntTypeProperty": 5
+ "DoubleTypeProperty": 5,
+ "IntTypeProperty": 5,
+ "PartitionKey": "somPartition",
+ "RowKey": "05",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:39:58.9675016Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabledciri8r0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtabledciri8r0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f73492e9b3896f4c86bc963181ef3dfb-b57d5ca7c0ca9146-00",
+ "traceparent": "00-a822b6162b5a184bba19a3bf2ba46aa4-d79c6923ac031f44-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4c2d73a888637b0e010813aa50c63f52",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:39:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -491,61 +439,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:11 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.2244446Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:39:58 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A59.0505480Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "4c2d73a888637b0e010813aa50c63f52",
- "x-ms-request-id": "20753d97-b002-001b-4121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "4c2d73a8-8863-7b0e-0108-13aa50c63f52"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabledciri8r0/@Element",
- "odata.type": "chrissscratch.testtabledciri8r0",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.2244446Z\u0027\u0022",
- "odata.editLink": "testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "06",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:12.2244446Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtabledciri8r0/$metadata#testtabledciri8r0/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A59.0505480Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 06",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:07:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:07:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:07:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:07:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90006",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "6",
- "DoubleTypeProperty": 6.0,
- "IntTypeProperty": 6
+ "DoubleTypeProperty": 6,
+ "IntTypeProperty": 6,
+ "PartitionKey": "somPartition",
+ "RowKey": "06",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:39:59.0505480Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabledciri8r0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtabledciri8r0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ee2c849b02bdf4409ca78d3f5dca3785-f07d8608877d0649-00",
+ "traceparent": "00-3b8027f9ab16ed4db4aab8202ec6d1a0-9691e66326cd9849-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ff1448071eb6b4781f10f22233769405",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:39:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -572,61 +511,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:12 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.2694829Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:39:58 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A59.1343112Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ff1448071eb6b4781f10f22233769405",
- "x-ms-request-id": "20753da1-b002-001b-4b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "ff144807-1eb6-b478-1f10-f22233769405"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabledciri8r0/@Element",
- "odata.type": "chrissscratch.testtabledciri8r0",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.2694829Z\u0027\u0022",
- "odata.editLink": "testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "07",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:12.2694829Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtabledciri8r0/$metadata#testtabledciri8r0/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A59.1343112Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 07",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:08:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:08:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:08:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:08:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90007",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "7",
- "DoubleTypeProperty": 7.0,
- "IntTypeProperty": 7
+ "DoubleTypeProperty": 7,
+ "IntTypeProperty": 7,
+ "PartitionKey": "somPartition",
+ "RowKey": "07",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:39:59.1343112Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabledciri8r0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtabledciri8r0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-0d0bdf9d5d702e4a91366c8cd427a620-51ac9c52abf3ce4d-00",
+ "traceparent": "00-ff8618c437f47548b67625539f8c437f-5eb06f3dd1336148-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c0cc4bb017dd01ba009520efb41dc903",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:39:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -653,61 +583,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:12 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.3205244Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:39:58 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A59.2177672Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c0cc4bb017dd01ba009520efb41dc903",
- "x-ms-request-id": "20753daf-b002-001b-5821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "c0cc4bb0-17dd-01ba-0095-20efb41dc903"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabledciri8r0/@Element",
- "odata.type": "chrissscratch.testtabledciri8r0",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.3205244Z\u0027\u0022",
- "odata.editLink": "testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "08",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:12.3205244Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtabledciri8r0/$metadata#testtabledciri8r0/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A59.2177672Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 08",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:09:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:09:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:09:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:09:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90008",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "8",
- "DoubleTypeProperty": 8.0,
- "IntTypeProperty": 8
+ "DoubleTypeProperty": 8,
+ "IntTypeProperty": 8,
+ "PartitionKey": "somPartition",
+ "RowKey": "08",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:39:59.2177672Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabledciri8r0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtabledciri8r0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-920a2fae8fd83948a0e91429eccb03f9-89809405a41b154a-00",
+ "traceparent": "00-7877daa9e5289d46aea427993492e6b1-fdcad430ceae1c4c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0cfb5cfd722c8a17fa792c5396ec478b",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:39:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -734,61 +655,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:12 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.3605585Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:39:58 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A59.2988680Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "0cfb5cfd722c8a17fa792c5396ec478b",
- "x-ms-request-id": "20753db9-b002-001b-5f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "0cfb5cfd-722c-8a17-fa79-2c5396ec478b"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabledciri8r0/@Element",
- "odata.type": "chrissscratch.testtabledciri8r0",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.3605585Z\u0027\u0022",
- "odata.editLink": "testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "09",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:12.3605585Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtabledciri8r0/$metadata#testtabledciri8r0/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A59.2988680Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 09",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:10:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:10:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:10:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:10:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90009",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "9",
- "DoubleTypeProperty": 9.0,
- "IntTypeProperty": 9
+ "DoubleTypeProperty": 9,
+ "IntTypeProperty": 9,
+ "PartitionKey": "somPartition",
+ "RowKey": "09",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:39:59.2988680Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabledciri8r0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtabledciri8r0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9c41445d6fba2f49861f46fa2b0ac800-a7b1ebc71513ed49-00",
+ "traceparent": "00-29df0933d1e87640aa95182a0eae9b85-2d8b8f6c9dc14648-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "05fa0d747ff9ef748d13ff20fe890002",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:39:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -815,389 +727,328 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:12 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.4025921Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:39:58 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A59.3764872Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "05fa0d747ff9ef748d13ff20fe890002",
- "x-ms-request-id": "20753dbf-b002-001b-6421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "05fa0d74-7ff9-ef74-8d13-ff20fe890002"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabledciri8r0/@Element",
- "odata.type": "chrissscratch.testtabledciri8r0",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.4025921Z\u0027\u0022",
- "odata.editLink": "testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "10",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:12.4025921Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtabledciri8r0/$metadata#testtabledciri8r0/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A59.3764872Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 10",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:11:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:11:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:11:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:11:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90010",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "10",
- "DoubleTypeProperty": 10.0,
- "IntTypeProperty": 10
+ "DoubleTypeProperty": 10,
+ "IntTypeProperty": 10,
+ "PartitionKey": "somPartition",
+ "RowKey": "10",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:39:59.3764872Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabledciri8r0()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026$filter=PartitionKey%20eq%20%27somPartition%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtabledciri8r0()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026$filter=PartitionKey%20eq%20%27somPartition%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d724ee47877a3ed83342c664eb676a13",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:39:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:12 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:39:59 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "d724ee47877a3ed83342c664eb676a13",
- "x-ms-continuation-NextPartitionKey": "1!16!c29tUGFydGl0aW9u",
- "x-ms-continuation-NextRowKey": "1!4!MDY-",
- "x-ms-request-id": "20753dcf-b002-001b-7421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-continuation-NextPartitionKey": "{\u0022token\u0022:\u0022\u002BRID:~b1w3AIykJ0wFAAAAAAAAAA==#RT:1#TRC:5#ISV:2#IEO:65551#FPC:AQUAAAAAAAAACgAAAAAAAAA=\u0022,\u0022range\u0022:{\u0022min\u0022:\u0022\u0022,\u0022max\u0022:\u0022FF\u0022}}",
+ "x-ms-continuation-NextRowKey": "NA",
+ "x-ms-request-id": "d724ee47-877a-3ed8-3342-c664eb676a13"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabledciri8r0",
"value": [
{
- "odata.type": "chrissscratch.testtabledciri8r0",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A11.9962552Z\u0027\u0022",
- "odata.editLink": "testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:11.9962552Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A58.6338824Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:02:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "1",
- "DoubleTypeProperty": 1.0,
- "IntTypeProperty": 1
- },
- {
- "odata.type": "chrissscratch.testtabledciri8r0",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.0482988Z\u0027\u0022",
- "odata.editLink": "testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
+ "DoubleTypeProperty": 1,
+ "IntTypeProperty": 1,
"PartitionKey": "somPartition",
- "RowKey": "02",
+ "RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:12.0482988Z",
+ "Timestamp": "2020-07-17T20:39:58.6338824Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A58.7210248Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 02",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:03:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:03:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:03:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:03:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "2",
- "DoubleTypeProperty": 2.0,
- "IntTypeProperty": 2
- },
- {
- "odata.type": "chrissscratch.testtabledciri8r0",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.0903329Z\u0027\u0022",
- "odata.editLink": "testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
+ "DoubleTypeProperty": 2,
+ "IntTypeProperty": 2,
"PartitionKey": "somPartition",
- "RowKey": "03",
+ "RowKey": "02",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:12.0903329Z",
+ "Timestamp": "2020-07-17T20:39:58.7210248Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A58.8012040Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 03",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:04:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:04:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:04:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:04:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "3",
- "DoubleTypeProperty": 3.0,
- "IntTypeProperty": 3
- },
- {
- "odata.type": "chrissscratch.testtabledciri8r0",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.1353711Z\u0027\u0022",
- "odata.editLink": "testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
+ "DoubleTypeProperty": 3,
+ "IntTypeProperty": 3,
"PartitionKey": "somPartition",
- "RowKey": "04",
+ "RowKey": "03",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:12.1353711Z",
+ "Timestamp": "2020-07-17T20:39:58.8012040Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A58.8842504Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 04",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:05:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:05:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:05:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:05:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "4",
- "DoubleTypeProperty": 4.0,
- "IntTypeProperty": 4
- },
- {
- "odata.type": "chrissscratch.testtabledciri8r0",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.1804081Z\u0027\u0022",
- "odata.editLink": "testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
+ "DoubleTypeProperty": 4,
+ "IntTypeProperty": 4,
"PartitionKey": "somPartition",
- "RowKey": "05",
+ "RowKey": "04",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:12.1804081Z",
+ "Timestamp": "2020-07-17T20:39:58.8842504Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A58.9675016Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 05",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:06:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:06:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:06:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:06:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90005",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "5",
- "DoubleTypeProperty": 5.0,
- "IntTypeProperty": 5
+ "DoubleTypeProperty": 5,
+ "IntTypeProperty": 5,
+ "PartitionKey": "somPartition",
+ "RowKey": "05",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:39:58.9675016Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtabledciri8r0()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026$filter=PartitionKey%20eq%20%27somPartition%27\u0026NextPartitionKey=1%2116%21c29tUGFydGl0aW9u\u0026NextRowKey=1%214%21MDY-",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtabledciri8r0()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026$filter=PartitionKey%20eq%20%27somPartition%27\u0026NextPartitionKey=%7B%22token%22%3A%22%2BRID%3A~b1w3AIykJ0wFAAAAAAAAAA%3D%3D%23RT%3A1%23TRC%3A5%23ISV%3A2%23IEO%3A65551%23FPC%3AAQUAAAAAAAAACgAAAAAAAAA%3D%22%2C%22range%22%3A%7B%22min%22%3A%22%22%2C%22max%22%3A%22FF%22%7D%7D\u0026NextRowKey=NA",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a67b944ec3237e09e70c7e1973f68b70",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:39:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:12 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:39:59 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a67b944ec3237e09e70c7e1973f68b70",
- "x-ms-request-id": "20753ddd-b002-001b-0221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "a67b944e-c323-7e09-e70c-7e1973f68b70"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabledciri8r0",
"value": [
{
- "odata.type": "chrissscratch.testtabledciri8r0",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.2244446Z\u0027\u0022",
- "odata.editLink": "testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "06",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:12.2244446Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A59.0505480Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 06",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:07:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:07:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:07:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:07:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90006",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "6",
- "DoubleTypeProperty": 6.0,
- "IntTypeProperty": 6
- },
- {
- "odata.type": "chrissscratch.testtabledciri8r0",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.2694829Z\u0027\u0022",
- "odata.editLink": "testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
+ "DoubleTypeProperty": 6,
+ "IntTypeProperty": 6,
"PartitionKey": "somPartition",
- "RowKey": "07",
+ "RowKey": "06",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:12.2694829Z",
+ "Timestamp": "2020-07-17T20:39:59.0505480Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A59.1343112Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 07",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:08:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:08:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:08:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:08:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90007",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "7",
- "DoubleTypeProperty": 7.0,
- "IntTypeProperty": 7
- },
- {
- "odata.type": "chrissscratch.testtabledciri8r0",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.3205244Z\u0027\u0022",
- "odata.editLink": "testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
+ "DoubleTypeProperty": 7,
+ "IntTypeProperty": 7,
"PartitionKey": "somPartition",
- "RowKey": "08",
+ "RowKey": "07",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:12.3205244Z",
+ "Timestamp": "2020-07-17T20:39:59.1343112Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A59.2177672Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 08",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:09:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:09:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:09:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:09:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90008",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "8",
- "DoubleTypeProperty": 8.0,
- "IntTypeProperty": 8
- },
- {
- "odata.type": "chrissscratch.testtabledciri8r0",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.3605585Z\u0027\u0022",
- "odata.editLink": "testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
+ "DoubleTypeProperty": 8,
+ "IntTypeProperty": 8,
"PartitionKey": "somPartition",
- "RowKey": "09",
+ "RowKey": "08",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:12.3605585Z",
+ "Timestamp": "2020-07-17T20:39:59.2177672Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A59.2988680Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 09",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:10:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:10:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:10:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:10:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90009",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "9",
- "DoubleTypeProperty": 9.0,
- "IntTypeProperty": 9
- },
- {
- "odata.type": "chrissscratch.testtabledciri8r0",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.4025921Z\u0027\u0022",
- "odata.editLink": "testtabledciri8r0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
+ "DoubleTypeProperty": 9,
+ "IntTypeProperty": 9,
"PartitionKey": "somPartition",
- "RowKey": "10",
+ "RowKey": "09",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:12.4025921Z",
+ "Timestamp": "2020-07-17T20:39:59.2988680Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A39%3A59.3764872Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 10",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:11:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:11:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:11:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:11:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90010",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "10",
- "DoubleTypeProperty": 10.0,
- "IntTypeProperty": 10
+ "DoubleTypeProperty": 10,
+ "IntTypeProperty": 10,
+ "PartitionKey": "somPartition",
+ "RowKey": "10",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:39:59.3764872Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabledciri8r0\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtabledciri8r0\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-503520430dffb64f8ec6372fc1abe3fc-d16e8e569319a94b-00",
+ "traceparent": "00-b9161d514758134ea0c741d3cffcb19c-1e55779c4efaf843-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a80b29796fc7ec1134bbd1b6b90f0425",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:39:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:12 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a80b29796fc7ec1134bbd1b6b90f0425",
- "x-ms-request-id": "20753ded-b002-001b-1221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:39:59 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "a80b2979-6fc7-ec11-34bb-d1b6b90f0425"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1918766266",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableMultipleWhere.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableMultipleWhere.json
index 499b80e8e5dc..73f5491d64ad 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableMultipleWhere.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableMultipleWhere.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-99a29767b638c140b5043ea27f93270e-ffbf6f5e1c641d49-00",
+ "traceparent": "00-bb7072603672054cb42efc8adc6eabf5-e2be614e8ab57a47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e9a941b54bc804c942b945621cfde9b8",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:53 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:37:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:53 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablen27f4i8q\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:37:53 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A37%3A53.6474120Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablen27f4i8q\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "e9a941b54bc804c942b945621cfde9b8",
- "x-ms-request-id": "20752bd5-b002-001b-0c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "e9a941b5-4bc8-04c9-42b9-45621cfde9b8"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablen27f4i8q\u0027)",
- "odata.editLink": "Tables(\u0027testtablen27f4i8q\u0027)",
- "TableName": "testtablen27f4i8q"
+ "TableName": "testtablen27f4i8q",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablen27f4i8q?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablen27f4i8q?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-322c67cb5f6c2b4f9d7d3fb957d6f5ba-1b8ac9f291af2b4a-00",
+ "traceparent": "00-a15424730681994e8bf6220ce5d1e197-91b273f595e1fb49-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4237b5b8a63a3687965ba77ae064fc2a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:53 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:37:54 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -128,39 +121,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:53 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A53.5389332Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablen27f4i8q(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:37:53 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A37%3A54.2192136Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablen27f4i8q(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "4237b5b8a63a3687965ba77ae064fc2a",
- "x-ms-request-id": "20752bdf-b002-001b-1421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "4237b5b8-a63a-3687-965b-a77ae064fc2a"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablen27f4i8q/@Element",
- "odata.type": "chrissscratch.testtablen27f4i8q",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablen27f4i8q(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A53.5389332Z\u0027\u0022",
- "odata.editLink": "testtablen27f4i8q(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:53.5389332Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablen27f4i8q/$metadata#testtablen27f4i8q/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A37%3A54.2192136Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -174,7 +153,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -191,24 +170,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
+ "String": "0001",
+ "PartitionKey": "somPartition",
+ "RowKey": "0001",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:37:54.2192136Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablen27f4i8q?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablen27f4i8q?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9c8c611a7da2254abfd049cd6d5175ab-bef264a322174548-00",
+ "traceparent": "00-cba50e47f23b3344af1059bb0f1fb441-b15ac71f26e51740-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7294eccd684eb89d9a7e5936c069a54d",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:53 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:37:54 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -277,39 +261,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:53 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A53.5839706Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablen27f4i8q(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:37:53 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A37%3A54.3355400Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablen27f4i8q(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "7294eccd684eb89d9a7e5936c069a54d",
- "x-ms-request-id": "20752be6-b002-001b-1b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "7294eccd-684e-b89d-9a7e-5936c069a54d"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablen27f4i8q/@Element",
- "odata.type": "chrissscratch.testtablen27f4i8q",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablen27f4i8q(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A53.5839706Z\u0027\u0022",
- "odata.editLink": "testtablen27f4i8q(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0002",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:53.5839706Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablen27f4i8q/$metadata#testtablen27f4i8q/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A37%3A54.3355400Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -323,7 +293,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -340,60 +310,50 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
+ "String": "0002",
+ "PartitionKey": "somPartition",
+ "RowKey": "0002",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:37:54.3355400Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablen27f4i8q()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28RowKey%20eq%20%270002%27%29",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablen27f4i8q()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28RowKey%20eq%20%270002%27%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9a23ad106edf0e07b973526da34f24dd",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:53 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:37:54 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:53 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:37:53 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "9a23ad106edf0e07b973526da34f24dd",
- "x-ms-request-id": "20752be9-b002-001b-1e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "9a23ad10-6edf-0e07-b973-526da34f24dd"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablen27f4i8q",
"value": [
{
- "odata.type": "chrissscratch.testtablen27f4i8q",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablen27f4i8q(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A53.5839706Z\u0027\u0022",
- "odata.editLink": "testtablen27f4i8q(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0002",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:53.5839706Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A37%3A54.3355400Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -407,7 +367,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -424,48 +384,45 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
+ "String": "0002",
+ "PartitionKey": "somPartition",
+ "RowKey": "0002",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:37:54.3355400Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablen27f4i8q\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablen27f4i8q\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-c3a3934e37f59f418b8bbc67b552273b-13e0cca47a244c40-00",
+ "traceparent": "00-f5a7f2acf0e16744b2644acc7b8c1c42-2695a9af62f5f44e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "30941bbd77684f69187ea7bb4d50762d",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:53 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:37:54 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:53 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "30941bbd77684f69187ea7bb4d50762d",
- "x-ms-request-id": "20752bf5-b002-001b-2921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:37:54 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "30941bbd-7768-4f69-187e-a7bb4d50762d"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "177094226",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableMultipleWhereAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableMultipleWhereAsync.json
index 89894d53eb3a..ff0091871d3d 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableMultipleWhereAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableMultipleWhereAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-33160df1acc0754fa022d340a88fea72-19921a50cd50234e-00",
+ "traceparent": "00-a471fbe8b0e5ff4388880b5fe5c90672-94d0efcb228c444c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "79b7cbc6a60d6048e988915e5a2c2b20",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:12 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:12 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablefud9i44s\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:13 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A12.5886984Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablefud9i44s\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "79b7cbc6a60d6048e988915e5a2c2b20",
- "x-ms-request-id": "20753df6-b002-001b-1b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "79b7cbc6-a60d-6048-e988-915e5a2c2b20"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablefud9i44s\u0027)",
- "odata.editLink": "Tables(\u0027testtablefud9i44s\u0027)",
- "TableName": "testtablefud9i44s"
+ "TableName": "testtablefud9i44s",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablefud9i44s?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablefud9i44s?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-dbad006f2e47f74c90d1d4034fdcea8c-5f24a1db36d43943-00",
+ "traceparent": "00-ab702212e557f844b72ac7457597b90c-4d97d94b2293a84f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7a65c80a2eb1ada67f41007c094aa2fd",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:12 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -128,39 +121,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:12 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.6978372Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablefud9i44s(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:13 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A13.2712968Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablefud9i44s(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "7a65c80a2eb1ada67f41007c094aa2fd",
- "x-ms-request-id": "20753e0c-b002-001b-3021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "7a65c80a-2eb1-ada6-7f41-007c094aa2fd"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablefud9i44s/@Element",
- "odata.type": "chrissscratch.testtablefud9i44s",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablefud9i44s(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.6978372Z\u0027\u0022",
- "odata.editLink": "testtablefud9i44s(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:12.6978372Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablefud9i44s/$metadata#testtablefud9i44s/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A13.2712968Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -174,7 +153,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -191,24 +170,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
+ "String": "0001",
+ "PartitionKey": "somPartition",
+ "RowKey": "0001",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:13.2712968Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablefud9i44s?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablefud9i44s?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-13e071c276bc944fa458c1cf4363f887-de470d9cbbf30448-00",
+ "traceparent": "00-dfc700b393fcbd46a1961305a2462080-db5f6097e6bd6c47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f6b6e50f50107c7987d1991ec90eae08",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -277,39 +261,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:12 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.742875Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablefud9i44s(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:13 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A13.3550600Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablefud9i44s(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "f6b6e50f50107c7987d1991ec90eae08",
- "x-ms-request-id": "20753e18-b002-001b-3b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "f6b6e50f-5010-7c79-87d1-991ec90eae08"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablefud9i44s/@Element",
- "odata.type": "chrissscratch.testtablefud9i44s",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablefud9i44s(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.742875Z\u0027\u0022",
- "odata.editLink": "testtablefud9i44s(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0002",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:12.742875Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablefud9i44s/$metadata#testtablefud9i44s/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A13.3550600Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -323,7 +293,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -340,60 +310,50 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
+ "String": "0002",
+ "PartitionKey": "somPartition",
+ "RowKey": "0002",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:13.3550600Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablefud9i44s()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28RowKey%20eq%20%270002%27%29",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablefud9i44s()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28RowKey%20eq%20%270002%27%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6b93e1958040974c240afacca6cb569e",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:12 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:13 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "6b93e1958040974c240afacca6cb569e",
- "x-ms-request-id": "20753e26-b002-001b-4821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "6b93e195-8040-974c-240a-facca6cb569e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablefud9i44s",
"value": [
{
- "odata.type": "chrissscratch.testtablefud9i44s",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablefud9i44s(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.742875Z\u0027\u0022",
- "odata.editLink": "testtablefud9i44s(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0002",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:12.742875Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A13.3550600Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -407,7 +367,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -424,48 +384,45 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
+ "String": "0002",
+ "PartitionKey": "somPartition",
+ "RowKey": "0002",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:13.3550600Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablefud9i44s\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablefud9i44s\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-3547572857da184281d29fd2c6e715fa-1aa6c94f7c842446-00",
+ "traceparent": "00-0c94b89f54228c41bcb17b69d8b57b14-1496d0b0a1b2be45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "754f93e53575b9104fe9f3e09488e371",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:12 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "754f93e53575b9104fe9f3e09488e371",
- "x-ms-request-id": "20753e2a-b002-001b-4c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:39:13 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "754f93e5-3575-b910-4fe9-f3e09488e371"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "2020881850",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableNestedParanthesis.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableNestedParanthesis.json
index 9e27fdd8f094..19fa8caaea8c 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableNestedParanthesis.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableNestedParanthesis.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-128e51d33b841141a8f6c7bf86992384-62512d651afeb14f-00",
+ "traceparent": "00-f72fcf586809764bb350b0960d8d203f-5f6dc6a92216cd4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "674afeb92ecd01ab00ef786146bcc48f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:54 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:47 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:53 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableunod882r\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:37:47 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A47.1647752Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableunod882r\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "674afeb92ecd01ab00ef786146bcc48f",
- "x-ms-request-id": "20752c00-b002-001b-3221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "674afeb9-2ecd-01ab-00ef-786146bcc48f"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableunod882r\u0027)",
- "odata.editLink": "Tables(\u0027testtableunod882r\u0027)",
- "TableName": "testtableunod882r"
+ "TableName": "testtableunod882r",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableunod882r?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableunod882r?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1f20d4cee30fcc4c84f858e48d63443d-bcb550c90d27aa4b-00",
+ "traceparent": "00-144a4c0c7f6be14abb0c00e3fe74c3c8-5c8c6a3d37ca2040-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "93701dbe5c9791bdac4b92bd04052f8f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:54 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -128,39 +121,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:53 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A53.774128Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableunod882r(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:37:47 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A47.8130696Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableunod882r(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "93701dbe5c9791bdac4b92bd04052f8f",
- "x-ms-request-id": "20752c06-b002-001b-3721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "93701dbe-5c97-91bd-ac4b-92bd04052f8f"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableunod882r/@Element",
- "odata.type": "chrissscratch.testtableunod882r",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableunod882r(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A53.774128Z\u0027\u0022",
- "odata.editLink": "testtableunod882r(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:53.774128Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableunod882r/$metadata#testtableunod882r/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A47.8130696Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -174,7 +153,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -191,24 +170,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
+ "String": "0001",
+ "PartitionKey": "somPartition",
+ "RowKey": "0001",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:37:47.8130696Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableunod882r?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableunod882r?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c6a6e688489c984191326fd59fea569f-1009119c7ebb064c-00",
+ "traceparent": "00-375e0f59351d54488f883d2833146eab-7acad03f578f8b46-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6d072dd0e2c82081bdb7eff827b37f76",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:54 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -277,39 +261,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:53 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A53.817165Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableunod882r(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:37:47 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A47.8918152Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableunod882r(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "6d072dd0e2c82081bdb7eff827b37f76",
- "x-ms-request-id": "20752c0c-b002-001b-3d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "6d072dd0-e2c8-2081-bdb7-eff827b37f76"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableunod882r/@Element",
- "odata.type": "chrissscratch.testtableunod882r",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableunod882r(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A53.817165Z\u0027\u0022",
- "odata.editLink": "testtableunod882r(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0002",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:53.817165Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableunod882r/$metadata#testtableunod882r/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A47.8918152Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -323,7 +293,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -340,24 +310,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
+ "String": "0002",
+ "PartitionKey": "somPartition",
+ "RowKey": "0002",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:37:47.8918152Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableunod882r?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableunod882r?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1795",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c0fdbcae0311bf4bba6d5f6005bdd12e-43e10f35ae5e2e4d-00",
+ "traceparent": "00-671f8d0516cdc44fba6fb9d92d35458d-a37d7dec22890448-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ba5cd47fdab85c4941b9bb819beefcfb",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:54 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -426,39 +401,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:53 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A53.8612007Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableunod882r(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:37:47 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A47.9686152Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableunod882r(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ba5cd47fdab85c4941b9bb819beefcfb",
- "x-ms-request-id": "20752c19-b002-001b-4921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "ba5cd47f-dab8-5c49-41b9-bb819beefcfb"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableunod882r/@Element",
- "odata.type": "chrissscratch.testtableunod882r",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableunod882r(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A53.8612007Z\u0027\u0022",
- "odata.editLink": "testtableunod882r(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:53.8612007Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableunod882r/$metadata#testtableunod882r/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A47.9686152Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -472,7 +433,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -489,24 +450,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:37:47.9686152Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableunod882r?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableunod882r?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6b54582e94f0c14487ff5daf1098896e-3d8523e4dc939b4c-00",
+ "traceparent": "00-5e39b2f51cf10f4bbc9400bd498d14f7-406fe450f0c55844-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1890e8bf57b5dcc79c50d6df6cc569f9",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:54 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -575,39 +541,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:53 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A53.9062389Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableunod882r(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:37:47 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A48.0442888Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableunod882r(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "1890e8bf57b5dcc79c50d6df6cc569f9",
- "x-ms-request-id": "20752c1d-b002-001b-4d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "1890e8bf-57b5-dcc7-9c50-d6df6cc569f9"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableunod882r/@Element",
- "odata.type": "chrissscratch.testtableunod882r",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableunod882r(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A53.9062389Z\u0027\u0022",
- "odata.editLink": "testtableunod882r(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0004",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:53.9062389Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableunod882r/$metadata#testtableunod882r/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A48.0442888Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -621,7 +573,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -638,60 +590,50 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:37:48.0442888Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableunod882r()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28%28%28RowKey%20eq%20%270004%27%29%20and%20%28Int32%20eq%204%29%29%20or%20%28%28%28Int32%20eq%202%29%20and%20%28%28String%20eq%20%27wrong%20string%27%29%20or%20%28Bool%20eq%20true%29%29%29%20and%20%28not%20%28%28IntegerPrimitive%20eq%201%29%20and%20%28LongPrimitive%20eq%202147483648L%29%29%29%29%29%20or%20%28LongPrimitiveN%20eq%202147483697L%29",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableunod882r()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28%28%28RowKey%20eq%20%270004%27%29%20and%20%28Int32%20eq%204%29%29%20or%20%28%28%28Int32%20eq%202%29%20and%20%28%28String%20eq%20%27wrong%20string%27%29%20or%20%28Bool%20eq%20true%29%29%29%20and%20%28not%20%28%28IntegerPrimitive%20eq%201%29%20and%20%28LongPrimitive%20eq%202147483648L%29%29%29%29%29%20or%20%28LongPrimitiveN%20eq%202147483697L%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "303d1ccc75a8f6d7e4aa2c0f260084cf",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:54 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:53 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:37:47 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "303d1ccc75a8f6d7e4aa2c0f260084cf",
- "x-ms-request-id": "20752c27-b002-001b-5721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "303d1ccc-75a8-f6d7-e4aa-2c0f260084cf"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableunod882r",
"value": [
{
- "odata.type": "chrissscratch.testtableunod882r",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableunod882r(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A53.817165Z\u0027\u0022",
- "odata.editLink": "testtableunod882r(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0002",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:53.817165Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A47.8918152Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -705,7 +647,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -722,25 +664,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
- },
- {
- "odata.type": "chrissscratch.testtableunod882r",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableunod882r(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A53.9062389Z\u0027\u0022",
- "odata.editLink": "testtableunod882r(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0002",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:53.9062389Z",
+ "Timestamp": "2020-07-17T19:37:47.8918152Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A37%3A48.0442888Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -754,7 +693,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -771,48 +710,45 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:37:48.0442888Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableunod882r\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableunod882r\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-2a03c10a0ad6e348b4f57b80a8c61557-61c6ccccbe8eb749-00",
+ "traceparent": "00-4a6c0d1685947e4d9cb1cc2322b22033-db8ab0e5ccb7c944-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3f38f4ba662228c10d7f1e670369f07b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:54 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:37:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:53 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "3f38f4ba662228c10d7f1e670369f07b",
- "x-ms-request-id": "20752c3f-b002-001b-6f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:37:47 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "3f38f4ba-6622-28c1-0d7f-1e670369f07b"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1186502143",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableNestedParanthesisAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableNestedParanthesisAsync.json
index bb475315a4be..c63b77d6191e 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableNestedParanthesisAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableNestedParanthesisAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8c4614aa1652194cabf120699024150c-6c6d941b774ff247-00",
+ "traceparent": "00-e84f5498dbce314dba56fc36d8dae6f7-2074cc6636c75747-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "129d026ca923353dc11ee32a13dd8f9c",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:12 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableev12v1vx\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A06.1180936Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableev12v1vx\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "129d026ca923353dc11ee32a13dd8f9c",
- "x-ms-request-id": "20753e32-b002-001b-5421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "129d026c-a923-353d-c11e-e32a13dd8f9c"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableev12v1vx\u0027)",
- "odata.editLink": "Tables(\u0027testtableev12v1vx\u0027)",
- "TableName": "testtableev12v1vx"
+ "TableName": "testtableev12v1vx",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableev12v1vx?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableev12v1vx?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-cf920cb3964865438861eb382c0ff3e4-b1da16ef5664c94c-00",
+ "traceparent": "00-eef5206e76b9134993e70be5cc7aa8c2-3525740f5a22154f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8d35d104b90724fd16b404c3b438a166",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:06 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -128,39 +121,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:12 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.9350345Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableev12v1vx(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A06.8345864Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableev12v1vx(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "8d35d104b90724fd16b404c3b438a166",
- "x-ms-request-id": "20753e3a-b002-001b-5b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "8d35d104-b907-24fd-16b4-04c3b438a166"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableev12v1vx/@Element",
- "odata.type": "chrissscratch.testtableev12v1vx",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableev12v1vx(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.9350345Z\u0027\u0022",
- "odata.editLink": "testtableev12v1vx(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:12.9350345Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableev12v1vx/$metadata#testtableev12v1vx/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A06.8345864Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -174,7 +153,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -191,24 +170,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
+ "String": "0001",
+ "PartitionKey": "somPartition",
+ "RowKey": "0001",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:06.8345864Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableev12v1vx?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableev12v1vx?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a7e2cd3a1eb1184d89a7381c724c83f4-f36de20fa79f004f-00",
+ "traceparent": "00-787388f9a4ae474d99911f51ae859827-187a1088a528924a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f8173118d8b1c77997278faa14f5331e",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -277,39 +261,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:12 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.9820736Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableev12v1vx(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A06.9473288Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableev12v1vx(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "f8173118d8b1c77997278faa14f5331e",
- "x-ms-request-id": "20753e43-b002-001b-6421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "f8173118-d8b1-c779-9727-8faa14f5331e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableev12v1vx/@Element",
- "odata.type": "chrissscratch.testtableev12v1vx",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableev12v1vx(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.9820736Z\u0027\u0022",
- "odata.editLink": "testtableev12v1vx(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0002",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:12.9820736Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableev12v1vx/$metadata#testtableev12v1vx/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A06.9473288Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -323,7 +293,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -340,24 +310,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
+ "String": "0002",
+ "PartitionKey": "somPartition",
+ "RowKey": "0002",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:06.9473288Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableev12v1vx?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableev12v1vx?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1795",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-674c08122a66644dbde43f71e484529d-bbf0dca0e28a774b-00",
+ "traceparent": "00-425fa9545f286d4f9d229602e30c9053-46ee509ef1870e42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "25afa971f34cb37f0579fc6fa5798089",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -426,39 +401,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:12 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.0271105Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableev12v1vx(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A07.0268936Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableev12v1vx(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "25afa971f34cb37f0579fc6fa5798089",
- "x-ms-request-id": "20753e49-b002-001b-6a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "25afa971-f34c-b37f-0579-fc6fa5798089"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableev12v1vx/@Element",
- "odata.type": "chrissscratch.testtableev12v1vx",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableev12v1vx(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.0271105Z\u0027\u0022",
- "odata.editLink": "testtableev12v1vx(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:13.0271105Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableev12v1vx/$metadata#testtableev12v1vx/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A07.0268936Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -472,7 +433,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -489,24 +450,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:07.0268936Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableev12v1vx?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableev12v1vx?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-48b41374a2ced44ebd9f85fcaad812a4-1d01b5d15b35624f-00",
+ "traceparent": "00-8edf9ecea45e5644a0afb1e35b45844c-6120faff51dc5b45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e2127c7d97c52bea576df5df2a531020",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -575,39 +541,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:12 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.0731492Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableev12v1vx(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:06 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A07.1041032Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableev12v1vx(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "e2127c7d97c52bea576df5df2a531020",
- "x-ms-request-id": "20753e50-b002-001b-6f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "e2127c7d-97c5-2bea-576d-f5df2a531020"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableev12v1vx/@Element",
- "odata.type": "chrissscratch.testtableev12v1vx",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableev12v1vx(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.0731492Z\u0027\u0022",
- "odata.editLink": "testtableev12v1vx(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0004",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:13.0731492Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableev12v1vx/$metadata#testtableev12v1vx/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A07.1041032Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -621,7 +573,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -638,60 +590,50 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:07.1041032Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableev12v1vx()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28%28%28RowKey%20eq%20%270004%27%29%20and%20%28Int32%20eq%204%29%29%20or%20%28%28%28Int32%20eq%202%29%20and%20%28%28String%20eq%20%27wrong%20string%27%29%20or%20%28Bool%20eq%20true%29%29%29%20and%20%28not%20%28%28IntegerPrimitive%20eq%201%29%20and%20%28LongPrimitive%20eq%202147483648L%29%29%29%29%29%20or%20%28LongPrimitiveN%20eq%202147483697L%29",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableev12v1vx()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28%28%28RowKey%20eq%20%270004%27%29%20and%20%28Int32%20eq%204%29%29%20or%20%28%28%28Int32%20eq%202%29%20and%20%28%28String%20eq%20%27wrong%20string%27%29%20or%20%28Bool%20eq%20true%29%29%29%20and%20%28not%20%28%28IntegerPrimitive%20eq%201%29%20and%20%28LongPrimitive%20eq%202147483648L%29%29%29%29%29%20or%20%28LongPrimitiveN%20eq%202147483697L%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0b52e6807b88251ab264f238dc0a221d",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:12 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:06 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "0b52e6807b88251ab264f238dc0a221d",
- "x-ms-request-id": "20753e5e-b002-001b-7a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "0b52e680-7b88-251a-b264-f238dc0a221d"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableev12v1vx",
"value": [
{
- "odata.type": "chrissscratch.testtableev12v1vx",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableev12v1vx(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A12.9820736Z\u0027\u0022",
- "odata.editLink": "testtableev12v1vx(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0002",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:12.9820736Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A06.9473288Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -705,7 +647,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -722,25 +664,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
- },
- {
- "odata.type": "chrissscratch.testtableev12v1vx",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableev12v1vx(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.0731492Z\u0027\u0022",
- "odata.editLink": "testtableev12v1vx(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0002",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:13.0731492Z",
+ "Timestamp": "2020-07-17T20:40:06.9473288Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A07.1041032Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -754,7 +693,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -771,48 +710,45 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:07.1041032Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableev12v1vx\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableev12v1vx\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-43ae3d6721badb47b170be5a85157328-e1c0342e41976b43-00",
+ "traceparent": "00-f46f17efdb97094cba87326b32ffc5e7-eb62c6258df8d54e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "972c06a750e3d958be83cddffd9f88b1",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:12 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "972c06a750e3d958be83cddffd9f88b1",
- "x-ms-request-id": "20753e72-b002-001b-0c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:40:07 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "972c06a7-50e3-d958-be83-cddffd9f88b1"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "573676729",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableOnSupportedTypes.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableOnSupportedTypes.json
index 1e4e7e824b52..ff419d059dbb 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableOnSupportedTypes.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableOnSupportedTypes.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e74fe9703766a9418ba48bf84e2f9212-7080f16bb39d8649-00",
+ "traceparent": "00-1408abb330bdc84aa5168ff5ebf8d734-8bad4f5c15178048-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7f7c3b1ab51ad40ff16c1e83aa7bf276",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:54 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:53 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable5bcr74pm\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:02 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A02.3970824Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable5bcr74pm\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "7f7c3b1ab51ad40ff16c1e83aa7bf276",
- "x-ms-request-id": "20752c4f-b002-001b-7d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "7f7c3b1a-b51a-d40f-f16c-1e83aa7bf276"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable5bcr74pm\u0027)",
- "odata.editLink": "Tables(\u0027testtable5bcr74pm\u0027)",
- "TableName": "testtable5bcr74pm"
+ "TableName": "testtable5bcr74pm",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable5bcr74pm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d4f91abcd5d32c4b89f10fb9f5641e78-dfd32dd37c33e447-00",
+ "traceparent": "00-6ac02c13025f244fbc143629c691b9df-3c685d2f77136740-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "dad8f1a56f93be3685b3609ea20541a2",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:54 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -128,39 +121,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:53 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.1974794Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:02 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A02.9205512Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "dad8f1a56f93be3685b3609ea20541a2",
- "x-ms-request-id": "20752c5d-b002-001b-0921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "dad8f1a5-6f93-be36-85b3-609ea20541a2"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable5bcr74pm/@Element",
- "odata.type": "chrissscratch.testtable5bcr74pm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.1974794Z\u0027\u0022",
- "odata.editLink": "testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:54.1974794Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable5bcr74pm/$metadata#testtable5bcr74pm/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A02.9205512Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -174,7 +153,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -191,24 +170,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
+ "String": "0001",
+ "PartitionKey": "somPartition",
+ "RowKey": "0001",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:02.9205512Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable5bcr74pm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8b57964474cc5446b74c62967cb78caa-af80c612a2ab1a4a-00",
+ "traceparent": "00-a70a4ecbf4d34e4db484a3aa04b02c0a-5f2b3f6f1ee5cb41-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d84ed65d04984841aabd773e2f348ebf",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:54 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -277,39 +261,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:54 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.2455197Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:02 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A03.0391304Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "d84ed65d04984841aabd773e2f348ebf",
- "x-ms-request-id": "20752c64-b002-001b-1021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "d84ed65d-0498-4841-aabd-773e2f348ebf"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable5bcr74pm/@Element",
- "odata.type": "chrissscratch.testtable5bcr74pm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.2455197Z\u0027\u0022",
- "odata.editLink": "testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0002",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:54.2455197Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable5bcr74pm/$metadata#testtable5bcr74pm/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A03.0391304Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -323,7 +293,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -340,24 +310,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
+ "String": "0002",
+ "PartitionKey": "somPartition",
+ "RowKey": "0002",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:03.0391304Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable5bcr74pm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1795",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-7b62ceaf00092749a668461b6daedf56-61cd8547ec1b554c-00",
+ "traceparent": "00-1da510d54cbd5a4fad35b867c90013ee-550bc623d6bf054d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "31b45295bad6abea05bdf967557131eb",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:54 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -426,39 +401,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:54 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.2925584Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:02 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A03.1197192Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "31b45295bad6abea05bdf967557131eb",
- "x-ms-request-id": "20752c6f-b002-001b-1921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "31b45295-bad6-abea-05bd-f967557131eb"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable5bcr74pm/@Element",
- "odata.type": "chrissscratch.testtable5bcr74pm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.2925584Z\u0027\u0022",
- "odata.editLink": "testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:54.2925584Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable5bcr74pm/$metadata#testtable5bcr74pm/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A03.1197192Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -472,7 +433,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -489,24 +450,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:03.1197192Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable5bcr74pm?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-65fffac2f34b5b4d8017ff0b095065cd-2def1b23019cc143-00",
+ "traceparent": "00-56232dfd8b0dd9489cd1de66a54fa9d0-973f8cdfa414994f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d3257b2a192ca0ddb08f30d5f7f88f51",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:54 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -575,39 +541,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:54 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.3486053Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:02 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A03.2022536Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "d3257b2a192ca0ddb08f30d5f7f88f51",
- "x-ms-request-id": "20752c7b-b002-001b-2521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "d3257b2a-192c-a0dd-b08f-30d5f7f88f51"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable5bcr74pm/@Element",
- "odata.type": "chrissscratch.testtable5bcr74pm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.3486053Z\u0027\u0022",
- "odata.editLink": "testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0004",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:54.3486053Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable5bcr74pm/$metadata#testtable5bcr74pm/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A03.2022536Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -621,7 +573,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -638,60 +590,50 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:03.2022536Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=String%20ge%20%270003%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable5bcr74pm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=String%20ge%20%270003%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5008a0251050a2cbeba3d3db0bdaf339",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:54 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:54 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:02 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "5008a0251050a2cbeba3d3db0bdaf339",
- "x-ms-request-id": "20752c8d-b002-001b-3421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "5008a025-1050-a2cb-eba3-d3db0bdaf339"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable5bcr74pm",
"value": [
{
- "odata.type": "chrissscratch.testtable5bcr74pm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.2925584Z\u0027\u0022",
- "odata.editLink": "testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:54.2925584Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A03.1197192Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -705,7 +647,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -722,25 +664,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtable5bcr74pm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.3486053Z\u0027\u0022",
- "odata.editLink": "testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:54.3486053Z",
+ "Timestamp": "2020-07-17T20:38:03.1197192Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A03.2022536Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -754,7 +693,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -771,62 +710,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:03.2022536Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Guid%20eq%20guid%270d391d16-97f1-4b9a-be68-4cc871f90003%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable5bcr74pm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Guid%20eq%20guid%270d391d16-97f1-4b9a-be68-4cc871f90003%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b3138b8cba0e7c92741481478a14b30c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:54 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:54 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:02 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "b3138b8cba0e7c92741481478a14b30c",
- "x-ms-request-id": "20752c99-b002-001b-3f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "b3138b8c-ba0e-7c92-7414-81478a14b30c"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable5bcr74pm",
"value": [
{
- "odata.type": "chrissscratch.testtable5bcr74pm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.2925584Z\u0027\u0022",
- "odata.editLink": "testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:54.2925584Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A03.1197192Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -840,7 +769,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -857,62 +786,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:03.1197192Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Int64%20ge%202147483650L",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable5bcr74pm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Int64%20ge%202147483650L",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b441a82ee0681a9baf83e789450294d5",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:54 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:54 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:02 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "b441a82ee0681a9baf83e789450294d5",
- "x-ms-request-id": "20752c9f-b002-001b-4521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "b441a82e-e068-1a9b-af83-e789450294d5"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable5bcr74pm",
"value": [
{
- "odata.type": "chrissscratch.testtable5bcr74pm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.2925584Z\u0027\u0022",
- "odata.editLink": "testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:54.2925584Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A03.1197192Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -926,7 +845,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -943,25 +862,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtable5bcr74pm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.3486053Z\u0027\u0022",
- "odata.editLink": "testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:54.3486053Z",
+ "Timestamp": "2020-07-17T20:38:03.1197192Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A03.2022536Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -975,7 +891,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -992,62 +908,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:03.2022536Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=LongPrimitive%20ge%202147483650L",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable5bcr74pm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=LongPrimitive%20ge%202147483650L",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6c49f79bdce46a420d8bdc3c8e8418d7",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:54 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:54 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:02 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "6c49f79bdce46a420d8bdc3c8e8418d7",
- "x-ms-request-id": "20752cb4-b002-001b-5921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "6c49f79b-dce4-6a42-0d8b-dc3c8e8418d7"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable5bcr74pm",
"value": [
{
- "odata.type": "chrissscratch.testtable5bcr74pm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.2925584Z\u0027\u0022",
- "odata.editLink": "testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:54.2925584Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A03.1197192Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -1061,7 +967,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -1078,25 +984,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtable5bcr74pm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.3486053Z\u0027\u0022",
- "odata.editLink": "testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:54.3486053Z",
+ "Timestamp": "2020-07-17T20:38:03.1197192Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A03.2022536Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -1110,7 +1013,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -1127,62 +1030,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:03.2022536Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=LongPrimitiveN%20ge%202147483650L",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable5bcr74pm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=LongPrimitiveN%20ge%202147483650L",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "63acc6f03f98abd0f0f8038bd2093671",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:55 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:54 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:03 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "63acc6f03f98abd0f0f8038bd2093671",
- "x-ms-request-id": "20752cce-b002-001b-7321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "63acc6f0-3f98-abd0-f0f8-038bd2093671"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable5bcr74pm",
"value": [
{
- "odata.type": "chrissscratch.testtable5bcr74pm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.2925584Z\u0027\u0022",
- "odata.editLink": "testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:54.2925584Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A03.1197192Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -1196,7 +1089,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -1213,25 +1106,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtable5bcr74pm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.3486053Z\u0027\u0022",
- "odata.editLink": "testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:54.3486053Z",
+ "Timestamp": "2020-07-17T20:38:03.1197192Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A03.2022536Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -1245,7 +1135,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -1262,62 +1152,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:03.2022536Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Double%20ge%203.03",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable5bcr74pm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Double%20ge%203.03",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "92acab7f46cb512765d7a6dc045f8b2b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:55 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:54 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:03 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "92acab7f46cb512765d7a6dc045f8b2b",
- "x-ms-request-id": "20752ce3-b002-001b-0721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "92acab7f-46cb-5127-65d7-a6dc045f8b2b"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable5bcr74pm",
"value": [
{
- "odata.type": "chrissscratch.testtable5bcr74pm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.2925584Z\u0027\u0022",
- "odata.editLink": "testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:54.2925584Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A03.1197192Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -1331,7 +1211,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -1348,25 +1228,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtable5bcr74pm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.3486053Z\u0027\u0022",
- "odata.editLink": "testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:54.3486053Z",
+ "Timestamp": "2020-07-17T20:38:03.1197192Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A03.2022536Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -1380,7 +1257,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -1397,62 +1274,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:03.2022536Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=DoublePrimitive%20ge%203.03",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable5bcr74pm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=DoublePrimitive%20ge%203.03",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7f98106a30555b3d269d7cecd8b69704",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:55 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:54 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:03 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "7f98106a30555b3d269d7cecd8b69704",
- "x-ms-request-id": "20752cf7-b002-001b-1a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "7f98106a-3055-5b3d-269d-7cecd8b69704"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable5bcr74pm",
"value": [
{
- "odata.type": "chrissscratch.testtable5bcr74pm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.2925584Z\u0027\u0022",
- "odata.editLink": "testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:54.2925584Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A03.1197192Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -1466,7 +1333,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -1483,25 +1350,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtable5bcr74pm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.3486053Z\u0027\u0022",
- "odata.editLink": "testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:54.3486053Z",
+ "Timestamp": "2020-07-17T20:38:03.1197192Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A03.2022536Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -1515,7 +1379,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -1532,62 +1396,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:03.2022536Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Int32%20ge%203",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable5bcr74pm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Int32%20ge%203",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e3bc6a5585d7a90c9f5afdc099f3a790",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:55 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:54 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:03 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "e3bc6a5585d7a90c9f5afdc099f3a790",
- "x-ms-request-id": "20752d14-b002-001b-3621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "e3bc6a55-85d7-a90c-9f5a-fdc099f3a790"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable5bcr74pm",
"value": [
{
- "odata.type": "chrissscratch.testtable5bcr74pm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.2925584Z\u0027\u0022",
- "odata.editLink": "testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:54.2925584Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A03.1197192Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -1601,7 +1455,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -1618,25 +1472,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtable5bcr74pm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.3486053Z\u0027\u0022",
- "odata.editLink": "testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:54.3486053Z",
+ "Timestamp": "2020-07-17T20:38:03.1197192Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A03.2022536Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -1650,7 +1501,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -1667,62 +1518,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:03.2022536Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Int32N%20ge%203",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable5bcr74pm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Int32N%20ge%203",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c221d86db7704e1b6d506b2dca3b79af",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:55 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:54 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:03 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c221d86db7704e1b6d506b2dca3b79af",
- "x-ms-request-id": "20752d48-b002-001b-6621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "c221d86d-b770-4e1b-6d50-6b2dca3b79af"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable5bcr74pm",
"value": [
{
- "odata.type": "chrissscratch.testtable5bcr74pm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.2925584Z\u0027\u0022",
- "odata.editLink": "testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:54.2925584Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A03.1197192Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -1736,7 +1577,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -1753,25 +1594,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtable5bcr74pm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.3486053Z\u0027\u0022",
- "odata.editLink": "testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:54.3486053Z",
+ "Timestamp": "2020-07-17T20:38:03.1197192Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A03.2022536Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -1785,7 +1623,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -1802,62 +1640,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:03.2022536Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=DateTimeOffset%20ge%20datetime%272020-01-01T01%3A04%3A00Z%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable5bcr74pm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=DateTimeOffset%20ge%20datetime%272020-01-01T01%3A04%3A00Z%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9987a13fa8a2e45304efe0fa337cc233",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:55 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:55 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:03 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "9987a13fa8a2e45304efe0fa337cc233",
- "x-ms-request-id": "20752d5d-b002-001b-7b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "9987a13f-a8a2-e453-04ef-e0fa337cc233"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable5bcr74pm",
"value": [
{
- "odata.type": "chrissscratch.testtable5bcr74pm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.2925584Z\u0027\u0022",
- "odata.editLink": "testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:54.2925584Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A03.1197192Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -1871,7 +1699,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -1888,25 +1716,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtable5bcr74pm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.3486053Z\u0027\u0022",
- "odata.editLink": "testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:54.3486053Z",
+ "Timestamp": "2020-07-17T20:38:03.1197192Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A03.2022536Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -1920,7 +1745,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -1937,62 +1762,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:03.2022536Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=DateTimeOffset%20lt%20datetime%272020-01-01T01%3A04%3A00Z%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable5bcr74pm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=DateTimeOffset%20lt%20datetime%272020-01-01T01%3A04%3A00Z%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "007eebf6d5949d934f6e758719dedf63",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:55 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:55 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:03 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "007eebf6d5949d934f6e758719dedf63",
- "x-ms-request-id": "20752d70-b002-001b-0d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "007eebf6-d594-9d93-4f6e-758719dedf63"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable5bcr74pm",
"value": [
{
- "odata.type": "chrissscratch.testtable5bcr74pm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.1974794Z\u0027\u0022",
- "odata.editLink": "testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:54.1974794Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A02.9205512Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -2006,7 +1821,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -2023,25 +1838,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
- },
- {
- "odata.type": "chrissscratch.testtable5bcr74pm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.2455197Z\u0027\u0022",
- "odata.editLink": "testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
+ "String": "0001",
"PartitionKey": "somPartition",
- "RowKey": "0002",
+ "RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:54.2455197Z",
+ "Timestamp": "2020-07-17T20:38:02.9205512Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A03.0391304Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -2055,7 +1867,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -2072,62 +1884,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
+ "String": "0002",
+ "PartitionKey": "somPartition",
+ "RowKey": "0002",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:03.0391304Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Bool%20eq%20false",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable5bcr74pm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Bool%20eq%20false",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f7804ee10d6cc5ee843cbd81d7201bf1",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:55 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:55 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:03 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "f7804ee10d6cc5ee843cbd81d7201bf1",
- "x-ms-request-id": "20752d88-b002-001b-2521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "f7804ee1-0d6c-c5ee-843c-bd81d7201bf1"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable5bcr74pm",
"value": [
{
- "odata.type": "chrissscratch.testtable5bcr74pm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.1974794Z\u0027\u0022",
- "odata.editLink": "testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:54.1974794Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A02.9205512Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -2141,7 +1943,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -2158,25 +1960,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
- },
- {
- "odata.type": "chrissscratch.testtable5bcr74pm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.2925584Z\u0027\u0022",
- "odata.editLink": "testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
+ "String": "0001",
"PartitionKey": "somPartition",
- "RowKey": "0003",
+ "RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:54.2925584Z",
+ "Timestamp": "2020-07-17T20:38:02.9205512Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A03.1197192Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -2190,7 +1989,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -2207,62 +2006,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:03.1197192Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=BoolPrimitive%20eq%20false",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable5bcr74pm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=BoolPrimitive%20eq%20false",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "de37388d79bc6a1b0ee94a3332cccb25",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:55 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:55 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:03 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "de37388d79bc6a1b0ee94a3332cccb25",
- "x-ms-request-id": "20752da1-b002-001b-3e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "de37388d-79bc-6a1b-0ee9-4a3332cccb25"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable5bcr74pm",
"value": [
{
- "odata.type": "chrissscratch.testtable5bcr74pm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.1974794Z\u0027\u0022",
- "odata.editLink": "testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:54.1974794Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A02.9205512Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -2276,7 +2065,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -2293,25 +2082,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
- },
- {
- "odata.type": "chrissscratch.testtable5bcr74pm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.2925584Z\u0027\u0022",
- "odata.editLink": "testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
+ "String": "0001",
"PartitionKey": "somPartition",
- "RowKey": "0003",
+ "RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:54.2925584Z",
+ "Timestamp": "2020-07-17T20:38:02.9205512Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A03.1197192Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -2325,7 +2111,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -2342,62 +2128,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:03.1197192Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Binary%20eq%20X%27010203%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable5bcr74pm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Binary%20eq%20X%27010203%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e4197c0fcbfbe8c6fcb97c571711c62e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:56 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:55 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:03 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "e4197c0fcbfbe8c6fcb97c571711c62e",
- "x-ms-request-id": "20752db4-b002-001b-5121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "e4197c0f-cbfb-e8c6-fcb9-7c571711c62e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable5bcr74pm",
"value": [
{
- "odata.type": "chrissscratch.testtable5bcr74pm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.2925584Z\u0027\u0022",
- "odata.editLink": "testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:54.2925584Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A03.1197192Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -2411,7 +2187,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -2428,62 +2204,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:03.1197192Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=BinaryPrimitive%20eq%20X%27010203%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable5bcr74pm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=BinaryPrimitive%20eq%20X%27010203%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e0f9845200a668a63316e882c3bb92b8",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:56 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:55 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:03 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "e0f9845200a668a63316e882c3bb92b8",
- "x-ms-request-id": "20752dbf-b002-001b-5b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "e0f98452-00a6-68a6-3316-e882c3bb92b8"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable5bcr74pm",
"value": [
{
- "odata.type": "chrissscratch.testtable5bcr74pm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.2925584Z\u0027\u0022",
- "odata.editLink": "testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:54.2925584Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A03.1197192Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -2497,7 +2263,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -2514,62 +2280,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:03.1197192Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28%28%28%28%28%28%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28String%20ge%20%270003%27%29%29%20and%20%28Int64%20ge%202147483650L%29%29%20and%20%28LongPrimitive%20ge%202147483650L%29%29%20and%20%28LongPrimitiveN%20ge%202147483650L%29%29%20and%20%28Int32%20ge%203%29%29%20and%20%28Int32N%20ge%203%29%29%20and%20%28DateTimeOffset%20ge%20datetime%272020-01-01T01%3A04%3A00Z%27%29",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable5bcr74pm()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28%28%28%28%28%28%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28String%20ge%20%270003%27%29%29%20and%20%28Int64%20ge%202147483650L%29%29%20and%20%28LongPrimitive%20ge%202147483650L%29%29%20and%20%28LongPrimitiveN%20ge%202147483650L%29%29%20and%20%28Int32%20ge%203%29%29%20and%20%28Int32N%20ge%203%29%29%20and%20%28DateTimeOffset%20ge%20datetime%272020-01-01T01%3A04%3A00Z%27%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5a7298713607c2f5714fe202fdc353fc",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:56 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:55 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:03 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "5a7298713607c2f5714fe202fdc353fc",
- "x-ms-request-id": "20752dcb-b002-001b-6721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "5a729871-3607-c2f5-714f-e202fdc353fc"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable5bcr74pm",
"value": [
{
- "odata.type": "chrissscratch.testtable5bcr74pm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.2925584Z\u0027\u0022",
- "odata.editLink": "testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:54.2925584Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A03.1197192Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -2583,7 +2339,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -2600,25 +2356,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtable5bcr74pm",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A54.3486053Z\u0027\u0022",
- "odata.editLink": "testtable5bcr74pm(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:54.3486053Z",
+ "Timestamp": "2020-07-17T20:38:03.1197192Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A03.2022536Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -2632,7 +2385,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -2649,48 +2402,45 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:03.2022536Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable5bcr74pm\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable5bcr74pm\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-3c1d2a2a720cb14faaf3caea4c226b71-e81939b54789d045-00",
+ "traceparent": "00-0772e0c3ee2e8641b4e965943a800669-ed0c37ffd8501f41-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "aee01b23ead20e7fd6b1b1e5e2442541",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:56 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:55 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "aee01b23ead20e7fd6b1b1e5e2442541",
- "x-ms-request-id": "20752de2-b002-001b-7e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:38:04 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "aee01b23-ead2-0e7f-d6b1-b1e5e2442541"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1432890277",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableOnSupportedTypesAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableOnSupportedTypesAsync.json
index d2eec2b8dc0c..9be60bc6b122 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableOnSupportedTypesAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableOnSupportedTypesAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-7020a05e276dab40ac9ef8ef50c033e4-efe284ff08644a4f-00",
+ "traceparent": "00-74a9554644def1459e5f85020a2a1c71-9ef76820386a2b49-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "faa254d2cb845b46d1856bc3dc176812",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:12 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablet55fm4or\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:26 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A26.3565832Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablet55fm4or\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "faa254d2cb845b46d1856bc3dc176812",
- "x-ms-request-id": "20753e7f-b002-001b-1921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "faa254d2-cb84-5b46-d185-6bc3dc176812"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablet55fm4or\u0027)",
- "odata.editLink": "Tables(\u0027testtablet55fm4or\u0027)",
- "TableName": "testtablet55fm4or"
+ "TableName": "testtablet55fm4or",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablet55fm4or?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablet55fm4or?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d5d9f8e7983ee34ab5a74513582e6975-6bf2cd64f04ac74e-00",
+ "traceparent": "00-5fb38411589aa24384d644c44176ab29-54b16796b8f19b4b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ae9f0f5965f950a7e3919d1988eeb90a",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:27 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -128,39 +121,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:13 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.290329Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:26 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.0780936Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ae9f0f5965f950a7e3919d1988eeb90a",
- "x-ms-request-id": "20753e88-b002-001b-2121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "ae9f0f59-65f9-50a7-e391-9d1988eeb90a"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablet55fm4or/@Element",
- "odata.type": "chrissscratch.testtablet55fm4or",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.290329Z\u0027\u0022",
- "odata.editLink": "testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:13.290329Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablet55fm4or/$metadata#testtablet55fm4or/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.0780936Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -174,7 +153,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -191,24 +170,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
+ "String": "0001",
+ "PartitionKey": "somPartition",
+ "RowKey": "0001",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:27.0780936Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablet55fm4or?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablet55fm4or?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6b1385357608694ab14d824d2750825e-65578f4f3053954f-00",
+ "traceparent": "00-faa698b4f2ca734ebf8d667fb5b9aaf2-a616afa13acf4043-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3a1edb11948f1ca3e0e93d37e2ceb34c",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:27 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -277,39 +261,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:13 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.3353673Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:26 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.1573512Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "3a1edb11948f1ca3e0e93d37e2ceb34c",
- "x-ms-request-id": "20753e90-b002-001b-2821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "3a1edb11-948f-1ca3-e0e9-3d37e2ceb34c"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablet55fm4or/@Element",
- "odata.type": "chrissscratch.testtablet55fm4or",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.3353673Z\u0027\u0022",
- "odata.editLink": "testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0002",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:13.3353673Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablet55fm4or/$metadata#testtablet55fm4or/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.1573512Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -323,7 +293,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -340,24 +310,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
+ "String": "0002",
+ "PartitionKey": "somPartition",
+ "RowKey": "0002",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:27.1573512Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablet55fm4or?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablet55fm4or?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1795",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ebe5e68c9753d44d993fa066ab389784-aa31a0a77ad2a044-00",
+ "traceparent": "00-23b2bcaa739ff44ba927ce892db996bf-4d0ff14da8c5ea42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b76d06c64d0e6de4ad5117f22e2dd2e3",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:27 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -426,39 +401,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:13 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.3753996Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:26 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.2425480Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "b76d06c64d0e6de4ad5117f22e2dd2e3",
- "x-ms-request-id": "20753e9a-b002-001b-3121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "b76d06c6-4d0e-6de4-ad51-17f22e2dd2e3"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablet55fm4or/@Element",
- "odata.type": "chrissscratch.testtablet55fm4or",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.3753996Z\u0027\u0022",
- "odata.editLink": "testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:13.3753996Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablet55fm4or/$metadata#testtablet55fm4or/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.2425480Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -472,7 +433,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -489,24 +450,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:27.2425480Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablet55fm4or?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablet55fm4or?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ed88efd8e2766b48b180527dca9f9f0d-ad0983b969203f48-00",
+ "traceparent": "00-ea4c21ed9d77d146a6099fa64df13506-9d98dd96fa5d1c4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "01b260cc2ef9c4836b83ce0f276f6e15",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:27 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -575,39 +541,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:13 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.4284441Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:26 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.3173000Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "01b260cc2ef9c4836b83ce0f276f6e15",
- "x-ms-request-id": "20753ea2-b002-001b-3921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "01b260cc-2ef9-c483-6b83-ce0f276f6e15"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablet55fm4or/@Element",
- "odata.type": "chrissscratch.testtablet55fm4or",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.4284441Z\u0027\u0022",
- "odata.editLink": "testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0004",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:13.4284441Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablet55fm4or/$metadata#testtablet55fm4or/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.3173000Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -621,7 +573,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -638,60 +590,50 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:27.3173000Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablet55fm4or()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=String%20ge%20%270003%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablet55fm4or()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=String%20ge%20%270003%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "815350dd0281c3fcf6b08d3d7db1eeb3",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:27 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:13 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:26 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "815350dd0281c3fcf6b08d3d7db1eeb3",
- "x-ms-request-id": "20753ea9-b002-001b-4021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "815350dd-0281-c3fc-f6b0-8d3d7db1eeb3"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablet55fm4or",
"value": [
{
- "odata.type": "chrissscratch.testtablet55fm4or",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.3753996Z\u0027\u0022",
- "odata.editLink": "testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:13.3753996Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.2425480Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -705,7 +647,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -722,25 +664,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtablet55fm4or",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.4284441Z\u0027\u0022",
- "odata.editLink": "testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:13.4284441Z",
+ "Timestamp": "2020-07-17T19:39:27.2425480Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.3173000Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -754,7 +693,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -771,62 +710,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:27.3173000Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablet55fm4or()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Guid%20eq%20guid%270d391d16-97f1-4b9a-be68-4cc871f90003%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablet55fm4or()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Guid%20eq%20guid%270d391d16-97f1-4b9a-be68-4cc871f90003%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "816b5a17b11c975383a84c8b7fd5463d",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:27 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:13 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:26 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "816b5a17b11c975383a84c8b7fd5463d",
- "x-ms-request-id": "20753ecf-b002-001b-6521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "816b5a17-b11c-9753-83a8-4c8b7fd5463d"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablet55fm4or",
"value": [
{
- "odata.type": "chrissscratch.testtablet55fm4or",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.3753996Z\u0027\u0022",
- "odata.editLink": "testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:13.3753996Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.2425480Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -840,7 +769,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -857,62 +786,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:27.2425480Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablet55fm4or()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Int64%20ge%202147483650L",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablet55fm4or()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Int64%20ge%202147483650L",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "dd1501e350d9ca6264ee0b48a14546ba",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:13 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:27 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:13 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:26 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "dd1501e350d9ca6264ee0b48a14546ba",
- "x-ms-request-id": "20753edd-b002-001b-7221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "dd1501e3-50d9-ca62-64ee-0b48a14546ba"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablet55fm4or",
"value": [
{
- "odata.type": "chrissscratch.testtablet55fm4or",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.3753996Z\u0027\u0022",
- "odata.editLink": "testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:13.3753996Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.2425480Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -926,7 +845,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -943,25 +862,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtablet55fm4or",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.4284441Z\u0027\u0022",
- "odata.editLink": "testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:13.4284441Z",
+ "Timestamp": "2020-07-17T19:39:27.2425480Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.3173000Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -975,7 +891,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -992,62 +908,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:27.3173000Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablet55fm4or()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=LongPrimitive%20ge%202147483650L",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablet55fm4or()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=LongPrimitive%20ge%202147483650L",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "cdf71b94ec042cf9fdbbfed8b6704421",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:13 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:26 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "cdf71b94ec042cf9fdbbfed8b6704421",
- "x-ms-request-id": "20753f01-b002-001b-1121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "cdf71b94-ec04-2cf9-fdbb-fed8b6704421"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablet55fm4or",
"value": [
{
- "odata.type": "chrissscratch.testtablet55fm4or",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.3753996Z\u0027\u0022",
- "odata.editLink": "testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:13.3753996Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.2425480Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -1061,7 +967,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -1078,25 +984,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtablet55fm4or",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.4284441Z\u0027\u0022",
- "odata.editLink": "testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:13.4284441Z",
+ "Timestamp": "2020-07-17T19:39:27.2425480Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.3173000Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -1110,7 +1013,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -1127,62 +1030,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:27.3173000Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablet55fm4or()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=LongPrimitiveN%20ge%202147483650L",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablet55fm4or()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=LongPrimitiveN%20ge%202147483650L",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7c5a4f6a109bc6d9f7a11d2da60af63d",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:13 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:26 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "7c5a4f6a109bc6d9f7a11d2da60af63d",
- "x-ms-request-id": "20753f1f-b002-001b-2f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "7c5a4f6a-109b-c6d9-f7a1-1d2da60af63d"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablet55fm4or",
"value": [
{
- "odata.type": "chrissscratch.testtablet55fm4or",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.3753996Z\u0027\u0022",
- "odata.editLink": "testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:13.3753996Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.2425480Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -1196,7 +1089,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -1213,25 +1106,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtablet55fm4or",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.4284441Z\u0027\u0022",
- "odata.editLink": "testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:13.4284441Z",
+ "Timestamp": "2020-07-17T19:39:27.2425480Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.3173000Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -1245,7 +1135,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -1262,62 +1152,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:27.3173000Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablet55fm4or()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Double%20ge%203.03",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablet55fm4or()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Double%20ge%203.03",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "63f6926178ddf63907e8e01e528913f4",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:13 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:26 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "63f6926178ddf63907e8e01e528913f4",
- "x-ms-request-id": "20753f33-b002-001b-4321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "63f69261-78dd-f639-07e8-e01e528913f4"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablet55fm4or",
"value": [
{
- "odata.type": "chrissscratch.testtablet55fm4or",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.3753996Z\u0027\u0022",
- "odata.editLink": "testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:13.3753996Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.2425480Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -1331,7 +1211,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -1348,25 +1228,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtablet55fm4or",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.4284441Z\u0027\u0022",
- "odata.editLink": "testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:13.4284441Z",
+ "Timestamp": "2020-07-17T19:39:27.2425480Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.3173000Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -1380,7 +1257,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -1397,62 +1274,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:27.3173000Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablet55fm4or()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=DoublePrimitive%20ge%203.03",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablet55fm4or()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=DoublePrimitive%20ge%203.03",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "52dde9a9caeb831e4131d563cfcb85f2",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:13 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:26 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "52dde9a9caeb831e4131d563cfcb85f2",
- "x-ms-request-id": "20753f4a-b002-001b-5621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "52dde9a9-caeb-831e-4131-d563cfcb85f2"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablet55fm4or",
"value": [
{
- "odata.type": "chrissscratch.testtablet55fm4or",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.3753996Z\u0027\u0022",
- "odata.editLink": "testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:13.3753996Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.2425480Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -1466,7 +1333,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -1483,25 +1350,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtablet55fm4or",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.4284441Z\u0027\u0022",
- "odata.editLink": "testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:13.4284441Z",
+ "Timestamp": "2020-07-17T19:39:27.2425480Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.3173000Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -1515,7 +1379,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -1532,62 +1396,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:27.3173000Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablet55fm4or()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Int32%20ge%203",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablet55fm4or()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Int32%20ge%203",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2477c0c5e079f244156374b330bb746e",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:13 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:26 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "2477c0c5e079f244156374b330bb746e",
- "x-ms-request-id": "20753f64-b002-001b-6d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "2477c0c5-e079-f244-1563-74b330bb746e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablet55fm4or",
"value": [
{
- "odata.type": "chrissscratch.testtablet55fm4or",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.3753996Z\u0027\u0022",
- "odata.editLink": "testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:13.3753996Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.2425480Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -1601,7 +1455,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -1618,25 +1472,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtablet55fm4or",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.4284441Z\u0027\u0022",
- "odata.editLink": "testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:13.4284441Z",
+ "Timestamp": "2020-07-17T19:39:27.2425480Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.3173000Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -1650,7 +1501,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -1667,62 +1518,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:27.3173000Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablet55fm4or()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Int32N%20ge%203",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablet55fm4or()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Int32N%20ge%203",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "bc83298da42d9752737222aba2d6263b",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:14 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:27 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "bc83298da42d9752737222aba2d6263b",
- "x-ms-request-id": "20753f87-b002-001b-0c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "bc83298d-a42d-9752-7372-22aba2d6263b"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablet55fm4or",
"value": [
{
- "odata.type": "chrissscratch.testtablet55fm4or",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.3753996Z\u0027\u0022",
- "odata.editLink": "testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:13.3753996Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.2425480Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -1736,7 +1577,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -1753,25 +1594,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtablet55fm4or",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.4284441Z\u0027\u0022",
- "odata.editLink": "testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:13.4284441Z",
+ "Timestamp": "2020-07-17T19:39:27.2425480Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.3173000Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -1785,7 +1623,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -1802,62 +1640,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:27.3173000Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablet55fm4or()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=DateTimeOffset%20ge%20datetime%272020-01-01T01%3A04%3A00Z%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablet55fm4or()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=DateTimeOffset%20ge%20datetime%272020-01-01T01%3A04%3A00Z%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9158ed63ef12c97aa5eb3c87556a5385",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:14 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:27 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "9158ed63ef12c97aa5eb3c87556a5385",
- "x-ms-request-id": "20753f96-b002-001b-1a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "9158ed63-ef12-c97a-a5eb-3c87556a5385"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablet55fm4or",
"value": [
{
- "odata.type": "chrissscratch.testtablet55fm4or",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.3753996Z\u0027\u0022",
- "odata.editLink": "testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:13.3753996Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.2425480Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -1871,7 +1699,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -1888,25 +1716,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtablet55fm4or",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.4284441Z\u0027\u0022",
- "odata.editLink": "testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:13.4284441Z",
+ "Timestamp": "2020-07-17T19:39:27.2425480Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.3173000Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -1920,7 +1745,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -1937,62 +1762,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:27.3173000Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablet55fm4or()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=DateTimeOffset%20lt%20datetime%272020-01-01T01%3A04%3A00Z%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablet55fm4or()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=DateTimeOffset%20lt%20datetime%272020-01-01T01%3A04%3A00Z%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a6d566bcc84721c56ee0b006be984f3f",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:14 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:27 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a6d566bcc84721c56ee0b006be984f3f",
- "x-ms-request-id": "20753fb1-b002-001b-3521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "a6d566bc-c847-21c5-6ee0-b006be984f3f"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablet55fm4or",
"value": [
{
- "odata.type": "chrissscratch.testtablet55fm4or",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.290329Z\u0027\u0022",
- "odata.editLink": "testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:13.290329Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.0780936Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -2006,7 +1821,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -2023,25 +1838,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
- },
- {
- "odata.type": "chrissscratch.testtablet55fm4or",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.3353673Z\u0027\u0022",
- "odata.editLink": "testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
+ "String": "0001",
"PartitionKey": "somPartition",
- "RowKey": "0002",
+ "RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:13.3353673Z",
+ "Timestamp": "2020-07-17T19:39:27.0780936Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.1573512Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -2055,7 +1867,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -2072,62 +1884,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
+ "String": "0002",
+ "PartitionKey": "somPartition",
+ "RowKey": "0002",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:27.1573512Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablet55fm4or()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Bool%20eq%20false",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablet55fm4or()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Bool%20eq%20false",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "434f383de2629d5caeba174267ca4108",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:14 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:27 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "434f383de2629d5caeba174267ca4108",
- "x-ms-request-id": "20753fdc-b002-001b-5c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "434f383d-e262-9d5c-aeba-174267ca4108"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablet55fm4or",
"value": [
{
- "odata.type": "chrissscratch.testtablet55fm4or",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.290329Z\u0027\u0022",
- "odata.editLink": "testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:13.290329Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.0780936Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -2141,7 +1943,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -2158,25 +1960,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
- },
- {
- "odata.type": "chrissscratch.testtablet55fm4or",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.3753996Z\u0027\u0022",
- "odata.editLink": "testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
+ "String": "0001",
"PartitionKey": "somPartition",
- "RowKey": "0003",
+ "RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:13.3753996Z",
+ "Timestamp": "2020-07-17T19:39:27.0780936Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.2425480Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -2190,7 +1989,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -2207,62 +2006,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:27.2425480Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablet55fm4or()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=BoolPrimitive%20eq%20false",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablet55fm4or()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=BoolPrimitive%20eq%20false",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3bee9c1f80009af3283723313f730a0c",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:14 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:27 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "3bee9c1f80009af3283723313f730a0c",
- "x-ms-request-id": "20753ff6-b002-001b-7621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "3bee9c1f-8000-9af3-2837-23313f730a0c"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablet55fm4or",
"value": [
{
- "odata.type": "chrissscratch.testtablet55fm4or",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.290329Z\u0027\u0022",
- "odata.editLink": "testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:13.290329Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.0780936Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -2276,7 +2065,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -2293,25 +2082,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
- },
- {
- "odata.type": "chrissscratch.testtablet55fm4or",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.3753996Z\u0027\u0022",
- "odata.editLink": "testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
+ "String": "0001",
"PartitionKey": "somPartition",
- "RowKey": "0003",
+ "RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:13.3753996Z",
+ "Timestamp": "2020-07-17T19:39:27.0780936Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.2425480Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -2325,7 +2111,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -2342,62 +2128,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:27.2425480Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablet55fm4or()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Binary%20eq%20X%27010203%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablet55fm4or()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Binary%20eq%20X%27010203%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1d4afc9b101bda230a38f88db082b9a3",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:14 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:27 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "1d4afc9b101bda230a38f88db082b9a3",
- "x-ms-request-id": "20754019-b002-001b-1821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "1d4afc9b-101b-da23-0a38-f88db082b9a3"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablet55fm4or",
"value": [
{
- "odata.type": "chrissscratch.testtablet55fm4or",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.3753996Z\u0027\u0022",
- "odata.editLink": "testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:13.3753996Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.2425480Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -2411,7 +2187,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -2428,62 +2204,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:27.2425480Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablet55fm4or()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=BinaryPrimitive%20eq%20X%27010203%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablet55fm4or()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=BinaryPrimitive%20eq%20X%27010203%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "21e6a79f13a9bc3f44b51a2bbf2a5e3a",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:14 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:27 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "21e6a79f13a9bc3f44b51a2bbf2a5e3a",
- "x-ms-request-id": "20754022-b002-001b-2021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "21e6a79f-13a9-bc3f-44b5-1a2bbf2a5e3a"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablet55fm4or",
"value": [
{
- "odata.type": "chrissscratch.testtablet55fm4or",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.3753996Z\u0027\u0022",
- "odata.editLink": "testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:13.3753996Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.2425480Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -2497,7 +2263,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -2514,62 +2280,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:27.2425480Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablet55fm4or()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28%28%28%28%28%28%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28String%20ge%20%270003%27%29%29%20and%20%28Int64%20ge%202147483650L%29%29%20and%20%28LongPrimitive%20ge%202147483650L%29%29%20and%20%28LongPrimitiveN%20ge%202147483650L%29%29%20and%20%28Int32%20ge%203%29%29%20and%20%28Int32N%20ge%203%29%29%20and%20%28DateTimeOffset%20ge%20datetime%272020-01-01T01%3A04%3A00Z%27%29",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablet55fm4or()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28%28%28%28%28%28%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28String%20ge%20%270003%27%29%29%20and%20%28Int64%20ge%202147483650L%29%29%20and%20%28LongPrimitive%20ge%202147483650L%29%29%20and%20%28LongPrimitiveN%20ge%202147483650L%29%29%20and%20%28Int32%20ge%203%29%29%20and%20%28Int32N%20ge%203%29%29%20and%20%28DateTimeOffset%20ge%20datetime%272020-01-01T01%3A04%3A00Z%27%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6ba60ab023800fed791431c88766e9a5",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:14 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:27 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "6ba60ab023800fed791431c88766e9a5",
- "x-ms-request-id": "20754026-b002-001b-2421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "6ba60ab0-2380-0fed-7914-31c88766e9a5"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablet55fm4or",
"value": [
{
- "odata.type": "chrissscratch.testtablet55fm4or",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.3753996Z\u0027\u0022",
- "odata.editLink": "testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:13.3753996Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.2425480Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -2583,7 +2339,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -2600,25 +2356,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtablet55fm4or",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A13.4284441Z\u0027\u0022",
- "odata.editLink": "testtablet55fm4or(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:13.4284441Z",
+ "Timestamp": "2020-07-17T19:39:27.2425480Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A27.3173000Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -2632,7 +2385,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -2649,48 +2402,45 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:27.3173000Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablet55fm4or\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablet55fm4or\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-cae33dadeafe854ca1594eeef90d096f-e0d96b7232725d45-00",
+ "traceparent": "00-70d7efc68df3fb4786d3a500104de294-73a4473a52ad8241-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9892807de98d8863bd8dd865f5f71bdf",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:14 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "9892807de98d8863bd8dd865f5f71bdf",
- "x-ms-request-id": "20754047-b002-001b-4421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:39:27 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "9892807d-e98d-8863-bd8d-d865f5f71bdf"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "750583255",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableUnary.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableUnary.json
index bb58dfb08395..9a911db092ed 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableUnary.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableUnary.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-2920d71f151d4a45b4771c4243bfaef9-6e9ef5f73bb5e241-00",
+ "traceparent": "00-84c976b9a5028a4baefe1ed22c96e457-c8e7ccbc9928434c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1b0428a3dc692563100de51e83ce2b0c",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:56 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:38:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:55 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablevpg58sjh\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:38:01 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A00.6806536Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablevpg58sjh\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "1b0428a3dc692563100de51e83ce2b0c",
- "x-ms-request-id": "20752e00-b002-001b-1721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "1b0428a3-dc69-2563-100d-e51e83ce2b0c"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablevpg58sjh\u0027)",
- "odata.editLink": "Tables(\u0027testtablevpg58sjh\u0027)",
- "TableName": "testtablevpg58sjh"
+ "TableName": "testtablevpg58sjh",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablevpg58sjh?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablevpg58sjh?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e5c5d1a81a407843aadd3d4522a13ed2-2924bcb0aab0c142-00",
+ "traceparent": "00-dc4e55c7cd616f4f8360bf80806a2c7b-e636a54f84b5384d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ac22497386a0bc94bf532a3fe296d15e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:56 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:38:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -128,39 +121,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:55 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.1400925Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:38:01 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A01.3507592Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ac22497386a0bc94bf532a3fe296d15e",
- "x-ms-request-id": "20752e17-b002-001b-2c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "ac224973-86a0-bc94-bf53-2a3fe296d15e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablevpg58sjh/@Element",
- "odata.type": "chrissscratch.testtablevpg58sjh",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.1400925Z\u0027\u0022",
- "odata.editLink": "testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.1400925Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablevpg58sjh/$metadata#testtablevpg58sjh/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A01.3507592Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -174,7 +153,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -191,24 +170,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
+ "String": "0001",
+ "PartitionKey": "somPartition",
+ "RowKey": "0001",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:38:01.3507592Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablevpg58sjh?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablevpg58sjh?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-4bf8d696362f8140b587e6088fde44e9-9be00cbc1925e049-00",
+ "traceparent": "00-6828a23f5fbe5046a24ae76182cd6568-f2dea7b89786774b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "febc68b939fb822d9129696ff460feca",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:56 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:38:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -277,39 +261,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:55 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.1841286Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:38:01 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A01.4334984Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "febc68b939fb822d9129696ff460feca",
- "x-ms-request-id": "20752e1e-b002-001b-3321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "febc68b9-39fb-822d-9129-696ff460feca"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablevpg58sjh/@Element",
- "odata.type": "chrissscratch.testtablevpg58sjh",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.1841286Z\u0027\u0022",
- "odata.editLink": "testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0002",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.1841286Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablevpg58sjh/$metadata#testtablevpg58sjh/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A01.4334984Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -323,7 +293,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -340,24 +310,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
+ "String": "0002",
+ "PartitionKey": "somPartition",
+ "RowKey": "0002",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:38:01.4334984Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablevpg58sjh?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablevpg58sjh?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1795",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-644e272aa0ef7c4f97344f48bb0646cd-0b44ba2b97745049-00",
+ "traceparent": "00-647105ab901543408b29722a0204d8c0-97d3fe4ef161a94a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "acc51572ce581d6693485b15b123437a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:56 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:38:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -426,39 +401,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:55 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.2331697Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:38:01 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A01.5189000Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "acc51572ce581d6693485b15b123437a",
- "x-ms-request-id": "20752e26-b002-001b-3a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "acc51572-ce58-1d66-9348-5b15b123437a"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablevpg58sjh/@Element",
- "odata.type": "chrissscratch.testtablevpg58sjh",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.2331697Z\u0027\u0022",
- "odata.editLink": "testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.2331697Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablevpg58sjh/$metadata#testtablevpg58sjh/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A01.5189000Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -472,7 +433,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -489,24 +450,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:38:01.5189000Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablevpg58sjh?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablevpg58sjh?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-4ff853f8e4727e4bab7d18ed7d656deb-3ff09db672a2f141-00",
+ "traceparent": "00-cc839f7e14b3e74b8dc476b5ce8d9176-d188d838eb5a0445-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1a65873c2d113a111ca01a771c24c75f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:56 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:38:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -575,39 +541,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:56 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.2832113Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:38:01 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A01.5965192Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "1a65873c2d113a111ca01a771c24c75f",
- "x-ms-request-id": "20752e34-b002-001b-4721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "1a65873c-2d11-3a11-1ca0-1a771c24c75f"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablevpg58sjh/@Element",
- "odata.type": "chrissscratch.testtablevpg58sjh",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.2832113Z\u0027\u0022",
- "odata.editLink": "testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0004",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.2832113Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablevpg58sjh/$metadata#testtablevpg58sjh/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A01.5965192Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -621,7 +573,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -638,60 +590,50 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:38:01.5965192Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablevpg58sjh()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28not%20%28RowKey%20eq%20%270001%27%29%29",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablevpg58sjh()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28not%20%28RowKey%20eq%20%270001%27%29%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "cccd605424d1ea05029f6ab2dd17d06e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:56 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:38:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:56 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:38:01 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "cccd605424d1ea05029f6ab2dd17d06e",
- "x-ms-request-id": "20752e40-b002-001b-5321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "cccd6054-24d1-ea05-029f-6ab2dd17d06e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablevpg58sjh",
"value": [
{
- "odata.type": "chrissscratch.testtablevpg58sjh",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.1841286Z\u0027\u0022",
- "odata.editLink": "testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0002",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.1841286Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A01.4334984Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -705,7 +647,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -722,25 +664,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
- },
- {
- "odata.type": "chrissscratch.testtablevpg58sjh",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.2331697Z\u0027\u0022",
- "odata.editLink": "testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
+ "String": "0002",
"PartitionKey": "somPartition",
- "RowKey": "0003",
+ "RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.2331697Z",
+ "Timestamp": "2020-07-17T19:38:01.4334984Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A01.5189000Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -754,7 +693,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -771,25 +710,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtablevpg58sjh",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.2832113Z\u0027\u0022",
- "odata.editLink": "testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.2832113Z",
+ "Timestamp": "2020-07-17T19:38:01.5189000Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A01.5965192Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -803,7 +739,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -820,62 +756,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:38:01.5965192Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablevpg58sjh()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28Int32%20lt%205%29",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablevpg58sjh()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28Int32%20lt%205%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6d32efe6e4fb45b9048a8fb8b4ef016f",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:56 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:38:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:56 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:38:01 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "6d32efe6e4fb45b9048a8fb8b4ef016f",
- "x-ms-request-id": "20752e48-b002-001b-5b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "6d32efe6-e4fb-45b9-048a-8fb8b4ef016f"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablevpg58sjh",
"value": [
{
- "odata.type": "chrissscratch.testtablevpg58sjh",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.1400925Z\u0027\u0022",
- "odata.editLink": "testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.1400925Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A01.3507592Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -889,7 +815,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -906,25 +832,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
- },
- {
- "odata.type": "chrissscratch.testtablevpg58sjh",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.1841286Z\u0027\u0022",
- "odata.editLink": "testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
+ "String": "0001",
"PartitionKey": "somPartition",
- "RowKey": "0002",
+ "RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.1841286Z",
+ "Timestamp": "2020-07-17T19:38:01.3507592Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A01.4334984Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -938,7 +861,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -955,25 +878,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
- },
- {
- "odata.type": "chrissscratch.testtablevpg58sjh",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.2331697Z\u0027\u0022",
- "odata.editLink": "testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
+ "String": "0002",
"PartitionKey": "somPartition",
- "RowKey": "0003",
+ "RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.2331697Z",
+ "Timestamp": "2020-07-17T19:38:01.4334984Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A01.5189000Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -987,7 +907,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -1004,25 +924,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtablevpg58sjh",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.2832113Z\u0027\u0022",
- "odata.editLink": "testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.2832113Z",
+ "Timestamp": "2020-07-17T19:38:01.5189000Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A01.5965192Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -1036,7 +953,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -1053,62 +970,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:38:01.5965192Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablevpg58sjh()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28Int32%20gt%20-1%29",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablevpg58sjh()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28Int32%20gt%20-1%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "51c0fb80775617a9827a1772c25e5c05",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:56 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:38:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:56 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:38:01 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "51c0fb80775617a9827a1772c25e5c05",
- "x-ms-request-id": "20752e5d-b002-001b-7021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "51c0fb80-7756-17a9-827a-1772c25e5c05"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablevpg58sjh",
"value": [
{
- "odata.type": "chrissscratch.testtablevpg58sjh",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.1400925Z\u0027\u0022",
- "odata.editLink": "testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.1400925Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A01.3507592Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -1122,7 +1029,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -1139,25 +1046,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
- },
- {
- "odata.type": "chrissscratch.testtablevpg58sjh",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.1841286Z\u0027\u0022",
- "odata.editLink": "testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
+ "String": "0001",
"PartitionKey": "somPartition",
- "RowKey": "0002",
+ "RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.1841286Z",
+ "Timestamp": "2020-07-17T19:38:01.3507592Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A01.4334984Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -1171,7 +1075,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -1188,25 +1092,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
- },
- {
- "odata.type": "chrissscratch.testtablevpg58sjh",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.2331697Z\u0027\u0022",
- "odata.editLink": "testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
+ "String": "0002",
"PartitionKey": "somPartition",
- "RowKey": "0003",
+ "RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.2331697Z",
+ "Timestamp": "2020-07-17T19:38:01.4334984Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A01.5189000Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -1220,7 +1121,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -1237,25 +1138,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtablevpg58sjh",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.2832113Z\u0027\u0022",
- "odata.editLink": "testtablevpg58sjh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.2832113Z",
+ "Timestamp": "2020-07-17T19:38:01.5189000Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A01.5965192Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -1269,7 +1167,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -1286,48 +1184,45 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:38:01.5965192Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablevpg58sjh\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablevpg58sjh\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-517c4e45dfa7ec40b7bc738445b722fd-37da8e01da930744-00",
+ "traceparent": "00-bd2d51c1ee04c445872ff79565750881-302ef0798de24e40-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2d90accf5af17064a788c746954d3613",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:56 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:38:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:56 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "2d90accf5af17064a788c746954d3613",
- "x-ms-request-id": "20752e73-b002-001b-0621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:38:01 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "2d90accf-5af1-7064-a788-c746954d3613"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "674870205",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableUnaryAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableUnaryAsync.json
index 01f96f170949..165210297747 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableUnaryAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableUnaryAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c05f6348605b2e4d96b84f6ba828bd19-e06f429e6357db48-00",
+ "traceparent": "00-a42dee30cd6ce544b5b988c41bddab5e-dba31f557971524d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7f6994f78369915ad38cb4d528569f63",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:35 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:14 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable5cadadyd\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:36 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A35.4208264Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable5cadadyd\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "7f6994f78369915ad38cb4d528569f63",
- "x-ms-request-id": "20754058-b002-001b-5521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "7f6994f7-8369-915a-d38c-b4d528569f63"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable5cadadyd\u0027)",
- "odata.editLink": "Tables(\u0027testtable5cadadyd\u0027)",
- "TableName": "testtable5cadadyd"
+ "TableName": "testtable5cadadyd",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable5cadadyd?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable5cadadyd?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-efc655b01a64454c956b785abe682de9-5eaf29531114aa45-00",
+ "traceparent": "00-56ce6775d004184ca161192e8864d97f-e7df37d1bc0dfb44-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "955c8e7e7662c9297e43dc477ce8bc2c",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:36 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -128,39 +121,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:14 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.2169288Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:36 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A36.1981448Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "955c8e7e7662c9297e43dc477ce8bc2c",
- "x-ms-request-id": "20754069-b002-001b-6521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "955c8e7e-7662-c929-7e43-dc477ce8bc2c"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable5cadadyd/@Element",
- "odata.type": "chrissscratch.testtable5cadadyd",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.2169288Z\u0027\u0022",
- "odata.editLink": "testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.2169288Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable5cadadyd/$metadata#testtable5cadadyd/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A36.1981448Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -174,7 +153,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -191,24 +170,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
+ "String": "0001",
+ "PartitionKey": "somPartition",
+ "RowKey": "0001",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:36.1981448Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable5cadadyd?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable5cadadyd?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-559ddacc84c59f4684d0fdf729861903-22b653dd1ad1904b-00",
+ "traceparent": "00-9a6947993a2380418b2393bc0e54703a-29db1a498829b84a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f51641b212443a771cbfd140b15f9689",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:36 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -277,39 +261,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:14 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.2609653Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:36 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A36.2813960Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "f51641b212443a771cbfd140b15f9689",
- "x-ms-request-id": "20754076-b002-001b-7021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "f51641b2-1244-3a77-1cbf-d140b15f9689"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable5cadadyd/@Element",
- "odata.type": "chrissscratch.testtable5cadadyd",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.2609653Z\u0027\u0022",
- "odata.editLink": "testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0002",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.2609653Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable5cadadyd/$metadata#testtable5cadadyd/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A36.2813960Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -323,7 +293,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -340,24 +310,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
+ "String": "0002",
+ "PartitionKey": "somPartition",
+ "RowKey": "0002",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:36.2813960Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable5cadadyd?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable5cadadyd?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1795",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-82e38375ea27df48815a4e662e282e84-3d113c074bf5c244-00",
+ "traceparent": "00-d8c2a04a7980fd4493ff84ab4b47f4e5-25b0d694212e7048-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "00d2bbe0ea09817a6a9f0126a71314eb",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:36 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -426,39 +401,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:15 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.3090061Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:36 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A36.3586056Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "00d2bbe0ea09817a6a9f0126a71314eb",
- "x-ms-request-id": "20754087-b002-001b-8021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "00d2bbe0-ea09-817a-6a9f-0126a71314eb"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable5cadadyd/@Element",
- "odata.type": "chrissscratch.testtable5cadadyd",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.3090061Z\u0027\u0022",
- "odata.editLink": "testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.3090061Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable5cadadyd/$metadata#testtable5cadadyd/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A36.3586056Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -472,7 +433,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -489,24 +450,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:36.3586056Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable5cadadyd?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable5cadadyd?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-82bc2343d9e8204faad0e78fc2b1d698-c7a847ed274efa4b-00",
+ "traceparent": "00-384b184599633c4fb915291615dda0f8-1fef21478bfab444-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e72288cfa93f6b1f162179a2a4e9181e",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:36 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -575,39 +541,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:15 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.3570451Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:36 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A36.4352008Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "e72288cfa93f6b1f162179a2a4e9181e",
- "x-ms-request-id": "20754093-b002-001b-0c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "e72288cf-a93f-6b1f-1621-79a2a4e9181e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable5cadadyd/@Element",
- "odata.type": "chrissscratch.testtable5cadadyd",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.3570451Z\u0027\u0022",
- "odata.editLink": "testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0004",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.3570451Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable5cadadyd/$metadata#testtable5cadadyd/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A36.4352008Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -621,7 +573,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -638,60 +590,50 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:36.4352008Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable5cadadyd()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28not%20%28RowKey%20eq%20%270001%27%29%29",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable5cadadyd()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28not%20%28RowKey%20eq%20%270001%27%29%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c16653adbb15c723c7958ba411519209",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:36 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:15 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:36 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c16653adbb15c723c7958ba411519209",
- "x-ms-request-id": "2075409f-b002-001b-1821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "c16653ad-bb15-c723-c795-8ba411519209"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable5cadadyd",
"value": [
{
- "odata.type": "chrissscratch.testtable5cadadyd",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.2609653Z\u0027\u0022",
- "odata.editLink": "testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0002",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.2609653Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A36.2813960Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -705,7 +647,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -722,25 +664,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
- },
- {
- "odata.type": "chrissscratch.testtable5cadadyd",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.3090061Z\u0027\u0022",
- "odata.editLink": "testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
+ "String": "0002",
"PartitionKey": "somPartition",
- "RowKey": "0003",
+ "RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.3090061Z",
+ "Timestamp": "2020-07-17T19:39:36.2813960Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A36.3586056Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -754,7 +693,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -771,25 +710,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtable5cadadyd",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.3570451Z\u0027\u0022",
- "odata.editLink": "testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.3570451Z",
+ "Timestamp": "2020-07-17T19:39:36.3586056Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A36.4352008Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -803,7 +739,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -820,62 +756,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:36.4352008Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable5cadadyd()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28Int32%20lt%205%29",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable5cadadyd()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28Int32%20lt%205%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2870e6aaae3d37499b67eae771d7dc81",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:36 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:15 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:36 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "2870e6aaae3d37499b67eae771d7dc81",
- "x-ms-request-id": "207540ac-b002-001b-2521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "2870e6aa-ae3d-3749-9b67-eae771d7dc81"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable5cadadyd",
"value": [
{
- "odata.type": "chrissscratch.testtable5cadadyd",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.2169288Z\u0027\u0022",
- "odata.editLink": "testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.2169288Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A36.1981448Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -889,7 +815,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -906,25 +832,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
- },
- {
- "odata.type": "chrissscratch.testtable5cadadyd",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.2609653Z\u0027\u0022",
- "odata.editLink": "testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
+ "String": "0001",
"PartitionKey": "somPartition",
- "RowKey": "0002",
+ "RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.2609653Z",
+ "Timestamp": "2020-07-17T19:39:36.1981448Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A36.2813960Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -938,7 +861,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -955,25 +878,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
- },
- {
- "odata.type": "chrissscratch.testtable5cadadyd",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.3090061Z\u0027\u0022",
- "odata.editLink": "testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
+ "String": "0002",
"PartitionKey": "somPartition",
- "RowKey": "0003",
+ "RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.3090061Z",
+ "Timestamp": "2020-07-17T19:39:36.2813960Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A36.3586056Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -987,7 +907,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -1004,25 +924,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtable5cadadyd",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.3570451Z\u0027\u0022",
- "odata.editLink": "testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.3570451Z",
+ "Timestamp": "2020-07-17T19:39:36.3586056Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A36.4352008Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -1036,7 +953,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -1053,62 +970,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:36.4352008Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable5cadadyd()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28Int32%20gt%20-1%29",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable5cadadyd()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28Int32%20gt%20-1%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5478e28752ac14d5655a20aa1d7b59c4",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:15 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:36 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "5478e28752ac14d5655a20aa1d7b59c4",
- "x-ms-request-id": "207540ba-b002-001b-3321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "5478e287-52ac-14d5-655a-20aa1d7b59c4"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable5cadadyd",
"value": [
{
- "odata.type": "chrissscratch.testtable5cadadyd",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.2169288Z\u0027\u0022",
- "odata.editLink": "testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.2169288Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A36.1981448Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -1122,7 +1029,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -1139,25 +1046,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
- },
- {
- "odata.type": "chrissscratch.testtable5cadadyd",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.2609653Z\u0027\u0022",
- "odata.editLink": "testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
+ "String": "0001",
"PartitionKey": "somPartition",
- "RowKey": "0002",
+ "RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.2609653Z",
+ "Timestamp": "2020-07-17T19:39:36.1981448Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A36.2813960Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -1171,7 +1075,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -1188,25 +1092,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
- },
- {
- "odata.type": "chrissscratch.testtable5cadadyd",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.3090061Z\u0027\u0022",
- "odata.editLink": "testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
+ "String": "0002",
"PartitionKey": "somPartition",
- "RowKey": "0003",
+ "RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.3090061Z",
+ "Timestamp": "2020-07-17T19:39:36.2813960Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A36.3586056Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -1220,7 +1121,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -1237,25 +1138,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtable5cadadyd",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.3570451Z\u0027\u0022",
- "odata.editLink": "testtable5cadadyd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.3570451Z",
+ "Timestamp": "2020-07-17T19:39:36.3586056Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A36.4352008Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -1269,7 +1167,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -1286,48 +1184,45 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:36.4352008Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable5cadadyd\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable5cadadyd\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-68ce88da9351554fbb12ba9570e2496e-22ba26d06e650641-00",
+ "traceparent": "00-6f16b08ab3aa174a9af0e08401afab50-39974767ffeb5c45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "bef7708ff078fee0092f26aed13c56ef",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:37 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:15 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "bef7708ff078fee0092f26aed13c56ef",
- "x-ms-request-id": "207540cc-b002-001b-3f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:39:36 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "bef7708f-f078-fee0-092f-26aed13c56ef"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "2132388481",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableWithDictionaryTypeOnSupportedTypes.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableWithDictionaryTypeOnSupportedTypes.json
index 8c9f7f4eb757..73a53fab2d22 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableWithDictionaryTypeOnSupportedTypes.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableWithDictionaryTypeOnSupportedTypes.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1acf6a1ce3ecbc4aab360d6513d5f026-dc513a05762da54d-00",
+ "traceparent": "00-b60e037451c308428b9d2e297dbf5b26-111a0cbaf239c54d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "89652965bdb764e4d7fffc6b4236cfe3",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:56 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:11 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:56 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablectufdof9\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:12 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A11.7690376Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablectufdof9\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "89652965bdb764e4d7fffc6b4236cfe3",
- "x-ms-request-id": "20752e82-b002-001b-1521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "89652965-bdb7-64e4-d7ff-fc6b4236cfe3"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablectufdof9\u0027)",
- "odata.editLink": "Tables(\u0027testtablectufdof9\u0027)",
- "TableName": "testtablectufdof9"
+ "TableName": "testtablectufdof9",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablectufdof9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablectufdof9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9d098ebfa8e65640974570797f7422a5-6ac2d608491ae244-00",
+ "traceparent": "00-59d9d774e957ec408f3e36452de060a5-5f2a4652a024df40-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2c72ff1ec81d30d2ce54af6f6dd79822",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:57 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:12 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -128,39 +121,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:56 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.7596068Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:12 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.3251720Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "2c72ff1ec81d30d2ce54af6f6dd79822",
- "x-ms-request-id": "20752e92-b002-001b-2421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "2c72ff1e-c81d-30d2-ce54-af6f6dd79822"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablectufdof9/@Element",
- "odata.type": "chrissscratch.testtablectufdof9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.7596068Z\u0027\u0022",
- "odata.editLink": "testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.7596068Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablectufdof9/$metadata#testtablectufdof9/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.3251720Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -174,7 +153,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -191,24 +170,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
+ "String": "0001",
+ "PartitionKey": "somPartition",
+ "RowKey": "0001",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:12.3251720Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablectufdof9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablectufdof9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-eaecfbb30940ea4f8ba91e7ed97ee81d-18a54e618c38c241-00",
+ "traceparent": "00-b079d392863e454da5e98ed72ef7237f-6153641a8c0c864d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "812f5284d8dda675759c2744a8d8bb7a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:57 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:12 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -277,39 +261,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:56 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.8286641Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:12 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.4233736Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "812f5284d8dda675759c2744a8d8bb7a",
- "x-ms-request-id": "20752e9d-b002-001b-2f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "812f5284-d8dd-a675-759c-2744a8d8bb7a"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablectufdof9/@Element",
- "odata.type": "chrissscratch.testtablectufdof9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.8286641Z\u0027\u0022",
- "odata.editLink": "testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0002",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.8286641Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablectufdof9/$metadata#testtablectufdof9/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.4233736Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -323,7 +293,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -340,24 +310,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
+ "String": "0002",
+ "PartitionKey": "somPartition",
+ "RowKey": "0002",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:12.4233736Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablectufdof9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablectufdof9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1795",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-acb311e5dc57ce4eab3de5ec97a586b6-4a1d665f16a5ae48-00",
+ "traceparent": "00-cd7f5583accb3e43bf403c0b9aaddfff-c6bca62097386048-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "46b3a7d4a5699c135734ba620d74f7ff",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:57 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:12 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -426,39 +401,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:56 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.8757023Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:12 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.5084680Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "46b3a7d4a5699c135734ba620d74f7ff",
- "x-ms-request-id": "20752ea1-b002-001b-3321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "46b3a7d4-a569-9c13-5734-ba620d74f7ff"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablectufdof9/@Element",
- "odata.type": "chrissscratch.testtablectufdof9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.8757023Z\u0027\u0022",
- "odata.editLink": "testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.8757023Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablectufdof9/$metadata#testtablectufdof9/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.5084680Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -472,7 +433,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -489,24 +450,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:12.5084680Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablectufdof9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablectufdof9?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f49f8d2e6837a04195e8ee52972ce795-3aa1526e0f8a8144-00",
+ "traceparent": "00-dfb0b167e5f3604ab2ead2f15fa19865-ada763bbdead5c41-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f0e6da674d0745058acbb681a18d87f6",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:57 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:12 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -575,39 +541,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:56 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.9217409Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:12 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.6046216Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "f0e6da674d0745058acbb681a18d87f6",
- "x-ms-request-id": "20752ea5-b002-001b-3721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "f0e6da67-4d07-4505-8acb-b681a18d87f6"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablectufdof9/@Element",
- "odata.type": "chrissscratch.testtablectufdof9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.9217409Z\u0027\u0022",
- "odata.editLink": "testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0004",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.9217409Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablectufdof9/$metadata#testtablectufdof9/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.6046216Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -621,7 +573,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -638,60 +590,50 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:12.6046216Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablectufdof9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=String%20ge%20%270003%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablectufdof9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=String%20ge%20%270003%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c59b35995124dfb83f9229a91d129901",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:57 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:12 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:56 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:12 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c59b35995124dfb83f9229a91d129901",
- "x-ms-request-id": "20752eae-b002-001b-3f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "c59b3599-5124-dfb8-3f92-29a91d129901"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablectufdof9",
"value": [
{
- "odata.type": "chrissscratch.testtablectufdof9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.8757023Z\u0027\u0022",
- "odata.editLink": "testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.8757023Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.5084680Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -705,7 +647,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -722,25 +664,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtablectufdof9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.9217409Z\u0027\u0022",
- "odata.editLink": "testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.9217409Z",
+ "Timestamp": "2020-07-17T20:38:12.5084680Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.6046216Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -754,7 +693,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -771,62 +710,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:12.6046216Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablectufdof9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Guid%20eq%20guid%270d391d16-97f1-4b9a-be68-4cc871f90003%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablectufdof9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Guid%20eq%20guid%270d391d16-97f1-4b9a-be68-4cc871f90003%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "cedd28a4cbf18673a26dbc9eee91fbc9",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:57 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:12 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:56 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:12 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "cedd28a4cbf18673a26dbc9eee91fbc9",
- "x-ms-request-id": "20752eb2-b002-001b-4321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "cedd28a4-cbf1-8673-a26d-bc9eee91fbc9"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablectufdof9",
"value": [
{
- "odata.type": "chrissscratch.testtablectufdof9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.8757023Z\u0027\u0022",
- "odata.editLink": "testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.8757023Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.5084680Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -840,7 +769,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -857,62 +786,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:12.5084680Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablectufdof9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Int64%20ge%202147483650L",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablectufdof9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Int64%20ge%202147483650L",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d8c9c4ac31d915da2106b074235c2778",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:57 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:56 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:12 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "d8c9c4ac31d915da2106b074235c2778",
- "x-ms-request-id": "20752ebb-b002-001b-4c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "d8c9c4ac-31d9-15da-2106-b074235c2778"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablectufdof9",
"value": [
{
- "odata.type": "chrissscratch.testtablectufdof9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.8757023Z\u0027\u0022",
- "odata.editLink": "testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.8757023Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.5084680Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -926,7 +845,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -943,25 +862,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtablectufdof9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.9217409Z\u0027\u0022",
- "odata.editLink": "testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.9217409Z",
+ "Timestamp": "2020-07-17T20:38:12.5084680Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.6046216Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -975,7 +891,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -992,62 +908,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:12.6046216Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablectufdof9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=LongPrimitive%20ge%202147483650L",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablectufdof9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=LongPrimitive%20ge%202147483650L",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "78dcb532b9b0ce04c11423b7951af1ad",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:57 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:56 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:13 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "78dcb532b9b0ce04c11423b7951af1ad",
- "x-ms-request-id": "20752ece-b002-001b-5d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "78dcb532-b9b0-ce04-c114-23b7951af1ad"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablectufdof9",
"value": [
{
- "odata.type": "chrissscratch.testtablectufdof9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.8757023Z\u0027\u0022",
- "odata.editLink": "testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.8757023Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.5084680Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -1061,7 +967,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -1078,25 +984,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtablectufdof9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.9217409Z\u0027\u0022",
- "odata.editLink": "testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.9217409Z",
+ "Timestamp": "2020-07-17T20:38:12.5084680Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.6046216Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -1110,7 +1013,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -1127,62 +1030,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:12.6046216Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablectufdof9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=LongPrimitiveN%20ge%202147483650L",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablectufdof9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=LongPrimitiveN%20ge%202147483650L",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "59fc5f97c04972274dc7acea1afe6245",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:57 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:57 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:13 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "59fc5f97c04972274dc7acea1afe6245",
- "x-ms-request-id": "20752ee5-b002-001b-7421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "59fc5f97-c049-7227-4dc7-acea1afe6245"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablectufdof9",
"value": [
{
- "odata.type": "chrissscratch.testtablectufdof9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.8757023Z\u0027\u0022",
- "odata.editLink": "testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.8757023Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.5084680Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -1196,7 +1089,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -1213,25 +1106,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtablectufdof9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.9217409Z\u0027\u0022",
- "odata.editLink": "testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.9217409Z",
+ "Timestamp": "2020-07-17T20:38:12.5084680Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.6046216Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -1245,7 +1135,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -1262,62 +1152,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:12.6046216Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablectufdof9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Double%20ge%203.03",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablectufdof9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Double%20ge%203.03",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "386b444582b5f319c0fa16c50e238007",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:57 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:57 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:13 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "386b444582b5f319c0fa16c50e238007",
- "x-ms-request-id": "20752ef5-b002-001b-0221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "386b4445-82b5-f319-c0fa-16c50e238007"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablectufdof9",
"value": [
{
- "odata.type": "chrissscratch.testtablectufdof9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.8757023Z\u0027\u0022",
- "odata.editLink": "testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.8757023Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.5084680Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -1331,7 +1211,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -1348,25 +1228,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtablectufdof9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.9217409Z\u0027\u0022",
- "odata.editLink": "testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.9217409Z",
+ "Timestamp": "2020-07-17T20:38:12.5084680Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.6046216Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -1380,7 +1257,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -1397,62 +1274,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:12.6046216Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablectufdof9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=DoublePrimitive%20ge%203.03",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablectufdof9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=DoublePrimitive%20ge%203.03",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c3dd0315ce5f712e8e692ae80c19b4c3",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:57 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:57 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:13 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c3dd0315ce5f712e8e692ae80c19b4c3",
- "x-ms-request-id": "20752f0c-b002-001b-1921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "c3dd0315-ce5f-712e-8e69-2ae80c19b4c3"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablectufdof9",
"value": [
{
- "odata.type": "chrissscratch.testtablectufdof9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.8757023Z\u0027\u0022",
- "odata.editLink": "testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.8757023Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.5084680Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -1466,7 +1333,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -1483,25 +1350,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtablectufdof9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.9217409Z\u0027\u0022",
- "odata.editLink": "testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.9217409Z",
+ "Timestamp": "2020-07-17T20:38:12.5084680Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.6046216Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -1515,7 +1379,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -1532,62 +1396,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:12.6046216Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablectufdof9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Int32%20ge%203",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablectufdof9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Int32%20ge%203",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5071ddb1b8af14f84608984ea962642a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:57 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:57 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:13 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "5071ddb1b8af14f84608984ea962642a",
- "x-ms-request-id": "20752f33-b002-001b-3f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "5071ddb1-b8af-14f8-4608-984ea962642a"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablectufdof9",
"value": [
{
- "odata.type": "chrissscratch.testtablectufdof9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.8757023Z\u0027\u0022",
- "odata.editLink": "testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.8757023Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.5084680Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -1601,7 +1455,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -1618,25 +1472,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtablectufdof9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.9217409Z\u0027\u0022",
- "odata.editLink": "testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.9217409Z",
+ "Timestamp": "2020-07-17T20:38:12.5084680Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.6046216Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -1650,7 +1501,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -1667,62 +1518,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:12.6046216Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablectufdof9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Int32N%20ge%203",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablectufdof9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Int32N%20ge%203",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "16d4a5479e2076e515f9aa4b5731e7a6",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:58 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:57 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:13 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "16d4a5479e2076e515f9aa4b5731e7a6",
- "x-ms-request-id": "20752f57-b002-001b-6321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "16d4a547-9e20-76e5-15f9-aa4b5731e7a6"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablectufdof9",
"value": [
{
- "odata.type": "chrissscratch.testtablectufdof9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.8757023Z\u0027\u0022",
- "odata.editLink": "testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.8757023Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.5084680Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -1736,7 +1577,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -1753,25 +1594,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtablectufdof9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.9217409Z\u0027\u0022",
- "odata.editLink": "testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.9217409Z",
+ "Timestamp": "2020-07-17T20:38:12.5084680Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.6046216Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -1785,7 +1623,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -1802,62 +1640,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:12.6046216Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablectufdof9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=DateTimeOffset%20ge%20datetime%272020-01-01T01%3A04%3A00Z%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablectufdof9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=DateTimeOffset%20ge%20datetime%272020-01-01T01%3A04%3A00Z%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "311352462fb15c580bc97d5736e0c72b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:58 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:57 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:13 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "311352462fb15c580bc97d5736e0c72b",
- "x-ms-request-id": "20752f60-b002-001b-6c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "31135246-2fb1-5c58-0bc9-7d5736e0c72b"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablectufdof9",
"value": [
{
- "odata.type": "chrissscratch.testtablectufdof9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.8757023Z\u0027\u0022",
- "odata.editLink": "testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.8757023Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.5084680Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -1871,7 +1699,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -1888,25 +1716,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtablectufdof9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.9217409Z\u0027\u0022",
- "odata.editLink": "testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.9217409Z",
+ "Timestamp": "2020-07-17T20:38:12.5084680Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.6046216Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -1920,7 +1745,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -1937,62 +1762,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:12.6046216Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablectufdof9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=DateTimeOffset%20lt%20datetime%272020-01-01T01%3A04%3A00Z%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablectufdof9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=DateTimeOffset%20lt%20datetime%272020-01-01T01%3A04%3A00Z%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "66a000059d4412a3f7fb3bb50eacbc15",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:58 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:57 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:13 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "66a000059d4412a3f7fb3bb50eacbc15",
- "x-ms-request-id": "20752f85-b002-001b-1021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "66a00005-9d44-12a3-f7fb-3bb50eacbc15"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablectufdof9",
"value": [
{
- "odata.type": "chrissscratch.testtablectufdof9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.7596068Z\u0027\u0022",
- "odata.editLink": "testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.7596068Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.3251720Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -2006,7 +1821,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -2023,25 +1838,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
- },
- {
- "odata.type": "chrissscratch.testtablectufdof9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.8286641Z\u0027\u0022",
- "odata.editLink": "testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
+ "String": "0001",
"PartitionKey": "somPartition",
- "RowKey": "0002",
+ "RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.8286641Z",
+ "Timestamp": "2020-07-17T20:38:12.3251720Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.4233736Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -2055,7 +1867,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -2072,62 +1884,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
+ "String": "0002",
+ "PartitionKey": "somPartition",
+ "RowKey": "0002",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:12.4233736Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablectufdof9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Bool%20eq%20false",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablectufdof9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Bool%20eq%20false",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5708f221324e18784d770b57218e4035",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:58 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:57 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:13 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "5708f221324e18784d770b57218e4035",
- "x-ms-request-id": "20752f92-b002-001b-1a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "5708f221-324e-1878-4d77-0b57218e4035"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablectufdof9",
"value": [
{
- "odata.type": "chrissscratch.testtablectufdof9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.7596068Z\u0027\u0022",
- "odata.editLink": "testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.7596068Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.3251720Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -2141,7 +1943,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -2158,25 +1960,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
- },
- {
- "odata.type": "chrissscratch.testtablectufdof9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.8757023Z\u0027\u0022",
- "odata.editLink": "testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
+ "String": "0001",
"PartitionKey": "somPartition",
- "RowKey": "0003",
+ "RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.8757023Z",
+ "Timestamp": "2020-07-17T20:38:12.3251720Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.5084680Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -2190,7 +1989,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -2207,62 +2006,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:12.5084680Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablectufdof9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=BoolPrimitive%20eq%20false",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablectufdof9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=BoolPrimitive%20eq%20false",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "56457e318090a861af003ab6f3a24e5e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:58 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:57 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:13 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "56457e318090a861af003ab6f3a24e5e",
- "x-ms-request-id": "20752fa4-b002-001b-2c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "56457e31-8090-a861-af00-3ab6f3a24e5e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablectufdof9",
"value": [
{
- "odata.type": "chrissscratch.testtablectufdof9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.7596068Z\u0027\u0022",
- "odata.editLink": "testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.7596068Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.3251720Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -2276,7 +2065,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -2293,25 +2082,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
- },
- {
- "odata.type": "chrissscratch.testtablectufdof9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.8757023Z\u0027\u0022",
- "odata.editLink": "testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
+ "String": "0001",
"PartitionKey": "somPartition",
- "RowKey": "0003",
+ "RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.8757023Z",
+ "Timestamp": "2020-07-17T20:38:12.3251720Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.5084680Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -2325,7 +2111,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -2342,62 +2128,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:12.5084680Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablectufdof9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Binary%20eq%20X%27010203%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablectufdof9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Binary%20eq%20X%27010203%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4435680c70d7d2dc888719cc924cf168",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:58 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:58 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:13 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "4435680c70d7d2dc888719cc924cf168",
- "x-ms-request-id": "20752fbb-b002-001b-4221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "4435680c-70d7-d2dc-8887-19cc924cf168"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablectufdof9",
"value": [
{
- "odata.type": "chrissscratch.testtablectufdof9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.8757023Z\u0027\u0022",
- "odata.editLink": "testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.8757023Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.5084680Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -2411,7 +2187,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -2428,62 +2204,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:12.5084680Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablectufdof9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=BinaryPrimitive%20eq%20X%27010203%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablectufdof9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=BinaryPrimitive%20eq%20X%27010203%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8f8306bb6566a184905fa74df8c124aa",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:58 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:58 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:13 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "8f8306bb6566a184905fa74df8c124aa",
- "x-ms-request-id": "20752fbf-b002-001b-4621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "8f8306bb-6566-a184-905f-a74df8c124aa"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablectufdof9",
"value": [
{
- "odata.type": "chrissscratch.testtablectufdof9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.8757023Z\u0027\u0022",
- "odata.editLink": "testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.8757023Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.5084680Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -2497,7 +2263,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -2514,62 +2280,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:12.5084680Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablectufdof9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28%28%28%28%28%28%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28String%20ge%20%270003%27%29%29%20and%20%28Int64%20ge%202147483650L%29%29%20and%20%28LongPrimitive%20ge%202147483650L%29%29%20and%20%28LongPrimitiveN%20ge%202147483650L%29%29%20and%20%28Int32%20ge%203%29%29%20and%20%28Int32N%20ge%203%29%29%20and%20%28DateTimeOffset%20ge%20datetime%272020-01-01T01%3A04%3A00Z%27%29",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablectufdof9()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28%28%28%28%28%28%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28String%20ge%20%270003%27%29%29%20and%20%28Int64%20ge%202147483650L%29%29%20and%20%28LongPrimitive%20ge%202147483650L%29%29%20and%20%28LongPrimitiveN%20ge%202147483650L%29%29%20and%20%28Int32%20ge%203%29%29%20and%20%28Int32N%20ge%203%29%29%20and%20%28DateTimeOffset%20ge%20datetime%272020-01-01T01%3A04%3A00Z%27%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b84aac29fc59c15da172ce0866941663",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:58 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:58 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:13 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "b84aac29fc59c15da172ce0866941663",
- "x-ms-request-id": "20752fc8-b002-001b-4f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "b84aac29-fc59-c15d-a172-ce0866941663"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablectufdof9",
"value": [
{
- "odata.type": "chrissscratch.testtablectufdof9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.8757023Z\u0027\u0022",
- "odata.editLink": "testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.8757023Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.5084680Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -2583,7 +2339,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -2600,25 +2356,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtablectufdof9",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A56.9217409Z\u0027\u0022",
- "odata.editLink": "testtablectufdof9(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:56.9217409Z",
+ "Timestamp": "2020-07-17T20:38:12.5084680Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A12.6046216Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -2632,7 +2385,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -2649,48 +2402,45 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:12.6046216Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablectufdof9\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablectufdof9\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-add377ee62426549bf38a4baff464337-917ca62c49664347-00",
+ "traceparent": "00-e5c1a5a3ebf25f4eb78cde430b0259ad-49940531086bb747-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "edfbd10fbe1fa7f7e494b377c98edac6",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:58 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:58 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "edfbd10fbe1fa7f7e494b377c98edac6",
- "x-ms-request-id": "20752fdb-b002-001b-6121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:38:14 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "edfbd10f-be1f-a7f7-e494-b377c98edac6"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1962721747",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableWithDictionaryTypeOnSupportedTypesAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableWithDictionaryTypeOnSupportedTypesAsync.json
index d2fc8c21ba43..e4dca76fcd4b 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableWithDictionaryTypeOnSupportedTypesAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableWithDictionaryTypeOnSupportedTypesAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-db20b3ea44436f4da06f16a354e86b86-dc1590aa3fdf6342-00",
+ "traceparent": "00-14f2e17d0945264a99ac4f9e226674df-4e3be9097d5c7841-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "652b9627ccafa38602ab74d8cefa6192",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:15 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable2gxf9rtj\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:15 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A14.8502536Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable2gxf9rtj\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "652b9627ccafa38602ab74d8cefa6192",
- "x-ms-request-id": "207540d6-b002-001b-4921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "652b9627-ccaf-a386-02ab-74d8cefa6192"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable2gxf9rtj\u0027)",
- "odata.editLink": "Tables(\u0027testtable2gxf9rtj\u0027)",
- "TableName": "testtable2gxf9rtj"
+ "TableName": "testtable2gxf9rtj",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable2gxf9rtj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a04e59230de8d141ba762dbed3cc76a3-318f35c7c177694f-00",
+ "traceparent": "00-4939274fcab64b4880a3c9509252bd30-9c849f510dd0404a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ca86dcd17d5ad0653dbf97558a2be321",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -128,39 +121,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:15 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.8324402Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:15 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.4298376Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ca86dcd17d5ad0653dbf97558a2be321",
- "x-ms-request-id": "207540e0-b002-001b-5221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "ca86dcd1-7d5a-d065-3dbf-97558a2be321"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable2gxf9rtj/@Element",
- "odata.type": "chrissscratch.testtable2gxf9rtj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.8324402Z\u0027\u0022",
- "odata.editLink": "testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.8324402Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable2gxf9rtj/$metadata#testtable2gxf9rtj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.4298376Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -174,7 +153,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -191,24 +170,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
+ "String": "0001",
+ "PartitionKey": "somPartition",
+ "RowKey": "0001",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:15.4298376Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable2gxf9rtj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-aaa9e9bfd3717d44bdc01f10d0e20bb6-b83819a70c37984d-00",
+ "traceparent": "00-136a2b3dd399f445a53164b815fdb7ae-ed316e3e13bcea42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e2bc48ed0a9c8fbc890bf4b6ea1ca216",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -277,39 +261,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:15 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.8814813Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:15 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.5566088Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "e2bc48ed0a9c8fbc890bf4b6ea1ca216",
- "x-ms-request-id": "207540ee-b002-001b-6021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "e2bc48ed-0a9c-8fbc-890b-f4b6ea1ca216"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable2gxf9rtj/@Element",
- "odata.type": "chrissscratch.testtable2gxf9rtj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.8814813Z\u0027\u0022",
- "odata.editLink": "testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0002",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.8814813Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable2gxf9rtj/$metadata#testtable2gxf9rtj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.5566088Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -323,7 +293,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -340,24 +310,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
+ "String": "0002",
+ "PartitionKey": "somPartition",
+ "RowKey": "0002",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:15.5566088Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable2gxf9rtj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1795",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1c1526f4fb4f8347943c18c3342e0a87-30f223e0f5f56a46-00",
+ "traceparent": "00-dad2e8b994e2fc4c9a4240c53536da41-49db294ff815c445-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "32f748465f7da9af315a28ef343118d6",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -426,39 +401,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:15 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.9255174Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:15 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.6411912Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "32f748465f7da9af315a28ef343118d6",
- "x-ms-request-id": "207540f5-b002-001b-6521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "32f74846-5f7d-a9af-315a-28ef343118d6"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable2gxf9rtj/@Element",
- "odata.type": "chrissscratch.testtable2gxf9rtj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.9255174Z\u0027\u0022",
- "odata.editLink": "testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.9255174Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable2gxf9rtj/$metadata#testtable2gxf9rtj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.6411912Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -472,7 +433,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -489,24 +450,29 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:15.6411912Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable2gxf9rtj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8ee7a577814f1646b3c46704d4ff0326-17871ab4640e244a-00",
+ "traceparent": "00-3c8555a42c8a5642bd1fdd61f4063aa6-6fdbcc14d7e34342-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "86eb52c87e3dc6f51ff7414e89afe620",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -575,39 +541,25 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:15 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.969554Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:15 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.7175816Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "86eb52c87e3dc6f51ff7414e89afe620",
- "x-ms-request-id": "207540ff-b002-001b-6d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "86eb52c8-7e3d-c6f5-1ff7-414e89afe620"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable2gxf9rtj/@Element",
- "odata.type": "chrissscratch.testtable2gxf9rtj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.969554Z\u0027\u0022",
- "odata.editLink": "testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0004",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.969554Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtable2gxf9rtj/$metadata#testtable2gxf9rtj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.7175816Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -621,7 +573,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -638,60 +590,50 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:15.7175816Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=String%20ge%20%270003%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable2gxf9rtj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=String%20ge%20%270003%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "420f811cb1338da49813b141e2cc5a58",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:15 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:15 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "420f811cb1338da49813b141e2cc5a58",
- "x-ms-request-id": "2075410a-b002-001b-7821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "420f811c-b133-8da4-9813-b141e2cc5a58"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable2gxf9rtj",
"value": [
{
- "odata.type": "chrissscratch.testtable2gxf9rtj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.9255174Z\u0027\u0022",
- "odata.editLink": "testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.9255174Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.6411912Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -705,7 +647,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -722,25 +664,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtable2gxf9rtj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.969554Z\u0027\u0022",
- "odata.editLink": "testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.969554Z",
+ "Timestamp": "2020-07-17T20:40:15.6411912Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.7175816Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -754,7 +693,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -771,62 +710,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:15.7175816Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Guid%20eq%20guid%270d391d16-97f1-4b9a-be68-4cc871f90003%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable2gxf9rtj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Guid%20eq%20guid%270d391d16-97f1-4b9a-be68-4cc871f90003%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "97ed1df31b30c7d8533012861e601f81",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:15 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:15 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "97ed1df31b30c7d8533012861e601f81",
- "x-ms-request-id": "20754114-b002-001b-8021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "97ed1df3-1b30-c7d8-5330-12861e601f81"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable2gxf9rtj",
"value": [
{
- "odata.type": "chrissscratch.testtable2gxf9rtj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.9255174Z\u0027\u0022",
- "odata.editLink": "testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.9255174Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.6411912Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -840,7 +769,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -857,62 +786,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:15.6411912Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Int64%20ge%202147483650L",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable2gxf9rtj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Int64%20ge%202147483650L",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b3d30774d62117a3ae5eed2acdb3e352",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:15 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:15 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "b3d30774d62117a3ae5eed2acdb3e352",
- "x-ms-request-id": "20754124-b002-001b-1021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "b3d30774-d621-17a3-ae5e-ed2acdb3e352"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable2gxf9rtj",
"value": [
{
- "odata.type": "chrissscratch.testtable2gxf9rtj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.9255174Z\u0027\u0022",
- "odata.editLink": "testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.9255174Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.6411912Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -926,7 +845,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -943,25 +862,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtable2gxf9rtj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.969554Z\u0027\u0022",
- "odata.editLink": "testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.969554Z",
+ "Timestamp": "2020-07-17T20:40:15.6411912Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.7175816Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -975,7 +891,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -992,62 +908,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:15.7175816Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=LongPrimitive%20ge%202147483650L",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable2gxf9rtj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=LongPrimitive%20ge%202147483650L",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6b5be99c4fc101efa847ee029e1d6f38",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:16 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:15 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "6b5be99c4fc101efa847ee029e1d6f38",
- "x-ms-request-id": "2075413d-b002-001b-2721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "6b5be99c-4fc1-01ef-a847-ee029e1d6f38"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable2gxf9rtj",
"value": [
{
- "odata.type": "chrissscratch.testtable2gxf9rtj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.9255174Z\u0027\u0022",
- "odata.editLink": "testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.9255174Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.6411912Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -1061,7 +967,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -1078,25 +984,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtable2gxf9rtj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.969554Z\u0027\u0022",
- "odata.editLink": "testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.969554Z",
+ "Timestamp": "2020-07-17T20:40:15.6411912Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.7175816Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -1110,7 +1013,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -1127,62 +1030,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:15.7175816Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=LongPrimitiveN%20ge%202147483650L",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable2gxf9rtj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=LongPrimitiveN%20ge%202147483650L",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "dbcd30f4a6f91c367ad6e9d22dadfa9f",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:16 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:16 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "dbcd30f4a6f91c367ad6e9d22dadfa9f",
- "x-ms-request-id": "2075416d-b002-001b-5521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "dbcd30f4-a6f9-1c36-7ad6-e9d22dadfa9f"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable2gxf9rtj",
"value": [
{
- "odata.type": "chrissscratch.testtable2gxf9rtj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.9255174Z\u0027\u0022",
- "odata.editLink": "testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.9255174Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.6411912Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -1196,7 +1089,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -1213,25 +1106,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtable2gxf9rtj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.969554Z\u0027\u0022",
- "odata.editLink": "testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.969554Z",
+ "Timestamp": "2020-07-17T20:40:15.6411912Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.7175816Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -1245,7 +1135,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -1262,62 +1152,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:15.7175816Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Double%20ge%203.03",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable2gxf9rtj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Double%20ge%203.03",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "34e9c04db40525bf17d20ad9e7a07990",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:16 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:16 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "34e9c04db40525bf17d20ad9e7a07990",
- "x-ms-request-id": "20754185-b002-001b-6c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "34e9c04d-b405-25bf-17d2-0ad9e7a07990"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable2gxf9rtj",
"value": [
{
- "odata.type": "chrissscratch.testtable2gxf9rtj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.9255174Z\u0027\u0022",
- "odata.editLink": "testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.9255174Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.6411912Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -1331,7 +1211,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -1348,25 +1228,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtable2gxf9rtj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.969554Z\u0027\u0022",
- "odata.editLink": "testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.969554Z",
+ "Timestamp": "2020-07-17T20:40:15.6411912Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.7175816Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -1380,7 +1257,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -1397,62 +1274,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:15.7175816Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=DoublePrimitive%20ge%203.03",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable2gxf9rtj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=DoublePrimitive%20ge%203.03",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9c36b5ee07e6f659b23ef1eb651dd3fb",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:16 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:16 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "9c36b5ee07e6f659b23ef1eb651dd3fb",
- "x-ms-request-id": "20754197-b002-001b-7e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "9c36b5ee-07e6-f659-b23e-f1eb651dd3fb"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable2gxf9rtj",
"value": [
{
- "odata.type": "chrissscratch.testtable2gxf9rtj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.9255174Z\u0027\u0022",
- "odata.editLink": "testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.9255174Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.6411912Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -1466,7 +1333,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -1483,25 +1350,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtable2gxf9rtj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.969554Z\u0027\u0022",
- "odata.editLink": "testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.969554Z",
+ "Timestamp": "2020-07-17T20:40:15.6411912Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.7175816Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -1515,7 +1379,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -1532,62 +1396,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:15.7175816Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Int32%20ge%203",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable2gxf9rtj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Int32%20ge%203",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ddb54f4d3a343f3271a8c4279b5c34da",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:16 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:16 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ddb54f4d3a343f3271a8c4279b5c34da",
- "x-ms-request-id": "207541a6-b002-001b-0d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "ddb54f4d-3a34-3f32-71a8-c4279b5c34da"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable2gxf9rtj",
"value": [
{
- "odata.type": "chrissscratch.testtable2gxf9rtj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.9255174Z\u0027\u0022",
- "odata.editLink": "testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.9255174Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.6411912Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -1601,7 +1455,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -1618,25 +1472,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtable2gxf9rtj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.969554Z\u0027\u0022",
- "odata.editLink": "testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.969554Z",
+ "Timestamp": "2020-07-17T20:40:15.6411912Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.7175816Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -1650,7 +1501,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -1667,62 +1518,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:15.7175816Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Int32N%20ge%203",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable2gxf9rtj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Int32N%20ge%203",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "78e4585d5d7745b967f382c7c3d3bffa",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:16 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:16 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "78e4585d5d7745b967f382c7c3d3bffa",
- "x-ms-request-id": "207541b6-b002-001b-1b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "78e4585d-5d77-45b9-67f3-82c7c3d3bffa"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable2gxf9rtj",
"value": [
{
- "odata.type": "chrissscratch.testtable2gxf9rtj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.9255174Z\u0027\u0022",
- "odata.editLink": "testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.9255174Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.6411912Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -1736,7 +1577,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -1753,25 +1594,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtable2gxf9rtj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.969554Z\u0027\u0022",
- "odata.editLink": "testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.969554Z",
+ "Timestamp": "2020-07-17T20:40:15.6411912Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.7175816Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -1785,7 +1623,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -1802,62 +1640,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:15.7175816Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=DateTimeOffset%20ge%20datetime%272020-01-01T01%3A04%3A00Z%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable2gxf9rtj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=DateTimeOffset%20ge%20datetime%272020-01-01T01%3A04%3A00Z%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "988c0ffe9beab35c83f62b3e43315a55",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:16 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:16 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "988c0ffe9beab35c83f62b3e43315a55",
- "x-ms-request-id": "207541c4-b002-001b-2721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "988c0ffe-9bea-b35c-83f6-2b3e43315a55"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable2gxf9rtj",
"value": [
{
- "odata.type": "chrissscratch.testtable2gxf9rtj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.9255174Z\u0027\u0022",
- "odata.editLink": "testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.9255174Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.6411912Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -1871,7 +1699,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -1888,25 +1716,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtable2gxf9rtj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.969554Z\u0027\u0022",
- "odata.editLink": "testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.969554Z",
+ "Timestamp": "2020-07-17T20:40:15.6411912Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.7175816Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -1920,7 +1745,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -1937,62 +1762,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:15.7175816Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=DateTimeOffset%20lt%20datetime%272020-01-01T01%3A04%3A00Z%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable2gxf9rtj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=DateTimeOffset%20lt%20datetime%272020-01-01T01%3A04%3A00Z%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0d8d16095b38ef8396707640b86b7c9d",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:16 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:16 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "0d8d16095b38ef8396707640b86b7c9d",
- "x-ms-request-id": "207541cd-b002-001b-3021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "0d8d1609-5b38-ef83-9670-7640b86b7c9d"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable2gxf9rtj",
"value": [
{
- "odata.type": "chrissscratch.testtable2gxf9rtj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.8324402Z\u0027\u0022",
- "odata.editLink": "testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.8324402Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.4298376Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -2006,7 +1821,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -2023,25 +1838,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
- },
- {
- "odata.type": "chrissscratch.testtable2gxf9rtj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.8814813Z\u0027\u0022",
- "odata.editLink": "testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
+ "String": "0001",
"PartitionKey": "somPartition",
- "RowKey": "0002",
+ "RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.8814813Z",
+ "Timestamp": "2020-07-17T20:40:15.4298376Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.5566088Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:03:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:03:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:03:00Z",
+ "DateTimeOffset": "2020-01-01T01:03:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:03:00Z",
+ "DateTimeN": "2020-01-01T01:03:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:03:00Z",
+ "DateTime": "2020-01-01T01:03:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:03:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -2055,7 +1867,7 @@
"DoublePrimitive": 2.02,
"DoubleN": 2.02,
"Double": 2.02,
- "DoubleInteger": 2.0,
+ "DoubleInteger": 2,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"Guid@odata.type": "Edm.Guid",
@@ -2072,62 +1884,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483649",
- "String": "0002"
+ "String": "0002",
+ "PartitionKey": "somPartition",
+ "RowKey": "0002",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:15.5566088Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Bool%20eq%20false",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable2gxf9rtj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Bool%20eq%20false",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8b28cae89cd0c2effb30f581327b0135",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:16 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:16 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "8b28cae89cd0c2effb30f581327b0135",
- "x-ms-request-id": "207541dd-b002-001b-3e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "8b28cae8-9cd0-c2ef-fb30-f581327b0135"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable2gxf9rtj",
"value": [
{
- "odata.type": "chrissscratch.testtable2gxf9rtj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.8324402Z\u0027\u0022",
- "odata.editLink": "testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.8324402Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.4298376Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -2141,7 +1943,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -2158,25 +1960,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
- },
- {
- "odata.type": "chrissscratch.testtable2gxf9rtj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.9255174Z\u0027\u0022",
- "odata.editLink": "testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
+ "String": "0001",
"PartitionKey": "somPartition",
- "RowKey": "0003",
+ "RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.9255174Z",
+ "Timestamp": "2020-07-17T20:40:15.4298376Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.6411912Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -2190,7 +1989,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -2207,62 +2006,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:15.6411912Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=BoolPrimitive%20eq%20false",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable2gxf9rtj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=BoolPrimitive%20eq%20false",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "acbd2c99b146a3c18c9c0279241cfb17",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:17 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:16 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "acbd2c99b146a3c18c9c0279241cfb17",
- "x-ms-request-id": "20754202-b002-001b-6021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "acbd2c99-b146-a3c1-8c9c-0279241cfb17"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable2gxf9rtj",
"value": [
{
- "odata.type": "chrissscratch.testtable2gxf9rtj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.8324402Z\u0027\u0022",
- "odata.editLink": "testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0001",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.8324402Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.4298376Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:02:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:02:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:02:00Z",
+ "DateTimeOffset": "2020-01-01T01:02:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:02:00Z",
+ "DateTimeN": "2020-01-01T01:02:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:02:00Z",
+ "DateTime": "2020-01-01T01:02:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:02:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -2276,7 +2065,7 @@
"DoublePrimitive": 1.01,
"DoubleN": 1.01,
"Double": 1.01,
- "DoubleInteger": 1.0,
+ "DoubleInteger": 1,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"Guid@odata.type": "Edm.Guid",
@@ -2293,25 +2082,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483648",
- "String": "0001"
- },
- {
- "odata.type": "chrissscratch.testtable2gxf9rtj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.9255174Z\u0027\u0022",
- "odata.editLink": "testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
+ "String": "0001",
"PartitionKey": "somPartition",
- "RowKey": "0003",
+ "RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.9255174Z",
+ "Timestamp": "2020-07-17T20:40:15.4298376Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.6411912Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -2325,7 +2111,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -2342,62 +2128,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:15.6411912Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Binary%20eq%20X%27010203%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable2gxf9rtj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Binary%20eq%20X%27010203%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "79558e79ce086d8526cb11086502bd1b",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:17 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:16 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "79558e79ce086d8526cb11086502bd1b",
- "x-ms-request-id": "20754216-b002-001b-7021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "79558e79-ce08-6d85-26cb-11086502bd1b"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable2gxf9rtj",
"value": [
{
- "odata.type": "chrissscratch.testtable2gxf9rtj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.9255174Z\u0027\u0022",
- "odata.editLink": "testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.9255174Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.6411912Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -2411,7 +2187,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -2428,62 +2204,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:15.6411912Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=BinaryPrimitive%20eq%20X%27010203%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable2gxf9rtj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=BinaryPrimitive%20eq%20X%27010203%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8ca7406ed0ae36570984ff349a759ddf",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:17 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:16 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "8ca7406ed0ae36570984ff349a759ddf",
- "x-ms-request-id": "20754228-b002-001b-7e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "8ca7406e-d0ae-3657-0984-ff349a759ddf"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable2gxf9rtj",
"value": [
{
- "odata.type": "chrissscratch.testtable2gxf9rtj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.9255174Z\u0027\u0022",
- "odata.editLink": "testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.9255174Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.6411912Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -2497,7 +2263,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -2514,62 +2280,52 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
+ "String": "0003",
+ "PartitionKey": "somPartition",
+ "RowKey": "0003",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:15.6411912Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28%28%28%28%28%28%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28String%20ge%20%270003%27%29%29%20and%20%28Int64%20ge%202147483650L%29%29%20and%20%28LongPrimitive%20ge%202147483650L%29%29%20and%20%28LongPrimitiveN%20ge%202147483650L%29%29%20and%20%28Int32%20ge%203%29%29%20and%20%28Int32N%20ge%203%29%29%20and%20%28DateTimeOffset%20ge%20datetime%272020-01-01T01%3A04%3A00Z%27%29",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtable2gxf9rtj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28%28%28%28%28%28%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28String%20ge%20%270003%27%29%29%20and%20%28Int64%20ge%202147483650L%29%29%20and%20%28LongPrimitive%20ge%202147483650L%29%29%20and%20%28LongPrimitiveN%20ge%202147483650L%29%29%20and%20%28Int32%20ge%203%29%29%20and%20%28Int32N%20ge%203%29%29%20and%20%28DateTimeOffset%20ge%20datetime%272020-01-01T01%3A04%3A00Z%27%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a307dd358825ca2da650857a9fb83d8a",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:17 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:16 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a307dd358825ca2da650857a9fb83d8a",
- "x-ms-request-id": "20754230-b002-001b-0521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "a307dd35-8825-ca2d-a650-857a9fb83d8a"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable2gxf9rtj",
"value": [
{
- "odata.type": "chrissscratch.testtable2gxf9rtj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.9255174Z\u0027\u0022",
- "odata.editLink": "testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "0003",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.9255174Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.6411912Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:04:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:04:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:04:00Z",
+ "DateTimeOffset": "2020-01-01T01:04:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:04:00Z",
+ "DateTimeN": "2020-01-01T01:04:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:04:00Z",
+ "DateTime": "2020-01-01T01:04:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:04:00.0000000Z",
"BoolN": false,
"Bool": false,
@@ -2583,7 +2339,7 @@
"DoublePrimitive": 3.03,
"DoubleN": 3.03,
"Double": 3.03,
- "DoubleInteger": 3.0,
+ "DoubleInteger": 3,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"Guid@odata.type": "Edm.Guid",
@@ -2600,25 +2356,22 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483650",
- "String": "0003"
- },
- {
- "odata.type": "chrissscratch.testtable2gxf9rtj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A15.969554Z\u0027\u0022",
- "odata.editLink": "testtable2gxf9rtj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
+ "String": "0003",
"PartitionKey": "somPartition",
- "RowKey": "0004",
+ "RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:15.969554Z",
+ "Timestamp": "2020-07-17T20:40:15.6411912Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A15.7175816Z\u0027\u0022",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
- "DateTimeOffsetN": "2020-01-01T01:05:00Z",
+ "DateTimeOffsetN": "2020-01-01T01:05:00.0000000Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
- "DateTimeOffset": "2020-01-01T01:05:00Z",
+ "DateTimeOffset": "2020-01-01T01:05:00.0000000Z",
"DateTimeN@odata.type": "Edm.DateTime",
- "DateTimeN": "2020-01-01T01:05:00Z",
+ "DateTimeN": "2020-01-01T01:05:00.0000000Z",
"DateTime@odata.type": "Edm.DateTime",
- "DateTime": "2020-01-01T01:05:00Z",
+ "DateTime": "2020-01-01T01:05:00.0000000Z",
"DateTimeAsString": "2020-01-01T01:05:00.0000000Z",
"BoolN": false,
"Bool": true,
@@ -2632,7 +2385,7 @@
"DoublePrimitive": 4.04,
"DoubleN": 4.04,
"Double": 4.04,
- "DoubleInteger": 4.0,
+ "DoubleInteger": 4,
"GuidN@odata.type": "Edm.Guid",
"GuidN": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"Guid@odata.type": "Edm.Guid",
@@ -2649,48 +2402,45 @@
"Int64N": "123456789012",
"Int64@odata.type": "Edm.Int64",
"Int64": "2147483651",
- "String": "0004"
+ "String": "0004",
+ "PartitionKey": "somPartition",
+ "RowKey": "0004",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:15.7175816Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable2gxf9rtj\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable2gxf9rtj\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-044c5fb3e7aeae499f8d22476f5a254c-2de98c91cb78994d-00",
+ "traceparent": "00-72ecb73b1a4b8c46bc1cf4db69cc9c23-2514291fb9506f47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e30be7de6e74a869371e6f83cf51d2b0",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:17 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "e30be7de6e74a869371e6f83cf51d2b0",
- "x-ms-request-id": "2075423a-b002-001b-0f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:40:17 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "e30be7de-6e74-a869-371e-6f83cf51d2b0"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1042398420",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableWithInvalidQuery.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableWithInvalidQuery.json
index 1207b394a859..e9ee5599baab 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableWithInvalidQuery.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableWithInvalidQuery.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-28387a667a94b148835fa33c46c827cb-9c2129f44a522c4e-00",
+ "traceparent": "00-9f81921fb65391428d50b111955efb77-7bb748ceef64db42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a74046436dbc36aca5fbdb02a9c7a9dc",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:58 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:38:11 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:58 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablejs0ofu8f\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:38:12 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A11.5208200Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablejs0ofu8f\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a74046436dbc36aca5fbdb02a9c7a9dc",
- "x-ms-request-id": "20752fea-b002-001b-7021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "a7404643-6dbc-36ac-a5fb-db02a9c7a9dc"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablejs0ofu8f\u0027)",
- "odata.editLink": "Tables(\u0027testtablejs0ofu8f\u0027)",
- "TableName": "testtablejs0ofu8f"
+ "TableName": "testtablejs0ofu8f",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablejs0ofu8f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablejs0ofu8f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-318794755c0d7443882b833392fd8352-3b94b3875ec80e44-00",
+ "traceparent": "00-aaeb752e39ae2944b95f74997ee0d7bd-695f6c09a1d55049-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "84e4696b5287fa2cc27fa93be7b65cc9",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:58 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:38:12 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -86,61 +79,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:58 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A58.6391666Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablejs0ofu8f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:38:12 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A12.1862152Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablejs0ofu8f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "84e4696b5287fa2cc27fa93be7b65cc9",
- "x-ms-request-id": "20752ff7-b002-001b-7c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "84e4696b-5287-fa2c-c27f-a93be7b65cc9"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablejs0ofu8f/@Element",
- "odata.type": "chrissscratch.testtablejs0ofu8f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejs0ofu8f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A58.6391666Z\u0027\u0022",
- "odata.editLink": "testtablejs0ofu8f(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:58.6391666Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablejs0ofu8f/$metadata#testtablejs0ofu8f/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A12.1862152Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:02:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "1",
- "DoubleTypeProperty": 1.0,
- "IntTypeProperty": 1
+ "DoubleTypeProperty": 1,
+ "IntTypeProperty": 1,
+ "PartitionKey": "somPartition",
+ "RowKey": "01",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:38:12.1862152Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablejs0ofu8f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablejs0ofu8f?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "742",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-baa48166327d1b4cafc311f562d390d6-4b8e742854818848-00",
+ "traceparent": "00-696d22b6f9962045bb3a7e108df155b9-6d33d5b80c575c43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "907209e09bdf18848e826c7b00e51d2e",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:58 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:38:12 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -167,119 +151,95 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:58 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A58.6822028Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablejs0ofu8f(PartitionKey=\u0027somPartition2\u0027,RowKey=\u002701\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:38:12 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A12.2621960Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablejs0ofu8f(PartitionKey=\u0027somPartition2\u0027,RowKey=\u002701\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "907209e09bdf18848e826c7b00e51d2e",
- "x-ms-request-id": "20753002-b002-001b-0621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "907209e0-9bdf-1884-8e82-6c7b00e51d2e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablejs0ofu8f/@Element",
- "odata.type": "chrissscratch.testtablejs0ofu8f",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablejs0ofu8f(PartitionKey=\u0027somPartition2\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A58.6822028Z\u0027\u0022",
- "odata.editLink": "testtablejs0ofu8f(PartitionKey=\u0027somPartition2\u0027,RowKey=\u002701\u0027)",
- "PartitionKey": "somPartition2",
- "RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:58.6822028Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablejs0ofu8f/$metadata#testtablejs0ofu8f/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A38%3A12.2621960Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:02:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "1",
- "DoubleTypeProperty": 1.0,
- "IntTypeProperty": 1
+ "DoubleTypeProperty": 1,
+ "IntTypeProperty": 1,
+ "PartitionKey": "somPartition2",
+ "RowKey": "01",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:38:12.2621960Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablejs0ofu8f()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28PartitionKey%20eq%20%27somPartition2%27%29",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablejs0ofu8f()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28PartitionKey%20eq%20%27somPartition2%27%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a8f089c831cbf1b01945e43dc3704fee",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:59 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:38:12 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:58 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:38:12 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a8f089c831cbf1b01945e43dc3704fee",
- "x-ms-request-id": "2075300d-b002-001b-1121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "a8f089c8-31cb-f1b0-1945-e43dc3704fee"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablejs0ofu8f",
"value": []
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablejs0ofu8f\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablejs0ofu8f\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-4cd978c2d964f34194e4c0296bd9ab7d-73d97ca027b8484f-00",
+ "traceparent": "00-ba7d48d3068d3449af243a6e53d0a400-0958b45d84aad54a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9f21119e1954d0fce4ccf504e5b1fadc",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:59 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:38:12 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:58 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "9f21119e1954d0fce4ccf504e5b1fadc",
- "x-ms-request-id": "20753018-b002-001b-1a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:38:12 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "9f21119e-1954-d0fc-e4cc-f504e5b1fadc"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "728751575",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableWithInvalidQueryAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableWithInvalidQueryAsync.json
index 53ea1a6e67a1..562c96c038a3 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableWithInvalidQueryAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableQueryableWithInvalidQueryAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-7366db9d69da9f4cb42e11925660320b-4aa8b7889813fe4e-00",
+ "traceparent": "00-46cba8f434f8e043b8c7babb69aa449b-ab9b62ae4d3bd64b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d24a0401a7bdc878e98639017439e064",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:17 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablel405ynou\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:50 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A49.9048968Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablel405ynou\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "d24a0401a7bdc878e98639017439e064",
- "x-ms-request-id": "20754241-b002-001b-1521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "d24a0401-a7bd-c878-e986-39017439e064"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablel405ynou\u0027)",
- "odata.editLink": "Tables(\u0027testtablel405ynou\u0027)",
- "TableName": "testtablel405ynou"
+ "TableName": "testtablel405ynou",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablel405ynou?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablel405ynou?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6fbf422f55981a428c3b53ba6a9f2cf3-5b2b613f8647dd44-00",
+ "traceparent": "00-596ea704ee5ef04fbb786ef5c496e4d9-1438db6a860c584b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0862ac97157262143d8050babe349c4b",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -86,61 +79,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:17 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A17.7960698Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablel405ynou(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:50 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A50.5711112Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablel405ynou(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "0862ac97157262143d8050babe349c4b",
- "x-ms-request-id": "2075424b-b002-001b-1e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "0862ac97-1572-6214-3d80-50babe349c4b"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablel405ynou/@Element",
- "odata.type": "chrissscratch.testtablel405ynou",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablel405ynou(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A17.7960698Z\u0027\u0022",
- "odata.editLink": "testtablel405ynou(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:17.7960698Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablel405ynou/$metadata#testtablel405ynou/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A50.5711112Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:02:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "1",
- "DoubleTypeProperty": 1.0,
- "IntTypeProperty": 1
+ "DoubleTypeProperty": 1,
+ "IntTypeProperty": 1,
+ "PartitionKey": "somPartition",
+ "RowKey": "01",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:50.5711112Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablel405ynou?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablel405ynou?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "742",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ad63d31206fd5b459373dad19f1af0ae-67a66fdd85a67c4c-00",
+ "traceparent": "00-4b4833ebfe94a948be6facc0c6985f53-ed9d62d269c6de42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a59e9092a32dc891cbd89e6776de4fd5",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -167,119 +151,95 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:17 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A17.8411072Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablel405ynou(PartitionKey=\u0027somPartition2\u0027,RowKey=\u002701\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:50 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A50.6804744Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablel405ynou(PartitionKey=\u0027somPartition2\u0027,RowKey=\u002701\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a59e9092a32dc891cbd89e6776de4fd5",
- "x-ms-request-id": "20754256-b002-001b-2921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "a59e9092-a32d-c891-cbd8-9e6776de4fd5"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablel405ynou/@Element",
- "odata.type": "chrissscratch.testtablel405ynou",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablel405ynou(PartitionKey=\u0027somPartition2\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A17.8411072Z\u0027\u0022",
- "odata.editLink": "testtablel405ynou(PartitionKey=\u0027somPartition2\u0027,RowKey=\u002701\u0027)",
- "PartitionKey": "somPartition2",
- "RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:17.8411072Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablel405ynou/$metadata#testtablel405ynou/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A50.6804744Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:02:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "1",
- "DoubleTypeProperty": 1.0,
- "IntTypeProperty": 1
+ "DoubleTypeProperty": 1,
+ "IntTypeProperty": 1,
+ "PartitionKey": "somPartition2",
+ "RowKey": "01",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T19:39:50.6804744Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablel405ynou()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28PartitionKey%20eq%20%27somPartition2%27%29",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablel405ynou()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28PartitionKey%20eq%20%27somPartition2%27%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b0edd6920cecebc4efe7953d56bd09b4",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:17 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:39:50 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "b0edd6920cecebc4efe7953d56bd09b4",
- "x-ms-request-id": "2075425c-b002-001b-2f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "b0edd692-0cec-ebc4-efe7-953d56bd09b4"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablel405ynou",
"value": []
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablel405ynou\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablel405ynou\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-4c7964743cc5bd429efb948cce6db1f3-637f53ded5e39942-00",
+ "traceparent": "00-8f3d90f332e92e42ba3079d3e4ea5503-de4004c758d7af4d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e36feeea3b9bf3361a9a3d9977adeb5f",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:17 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "e36feeea3b9bf3361a9a3d9977adeb5f",
- "x-ms-request-id": "2075425f-b002-001b-3221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:39:50 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "e36feeea-3b9b-f336-1a9a-3d9977adeb5f"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "633364909",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableTakeWithContinuationTask.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableTakeWithContinuationTask.json
index 9c1500d510fa..0d1821517e24 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableTakeWithContinuationTask.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableTakeWithContinuationTask.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-81d02d8106b96e48a640b29aa90da7e4-43ad626b166f5c43-00",
+ "traceparent": "00-d999a3bdf066664aa0ced54dadd9aba2-af1ba3768db98642-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "31e3517e801e3e65529c889575dc4085",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:59 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:23 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:58 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableg4w5w8kj\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A23.6523528Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableg4w5w8kj\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "31e3517e801e3e65529c889575dc4085",
- "x-ms-request-id": "20753023-b002-001b-2421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "31e3517e-801e-3e65-529c-889575dc4085"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableg4w5w8kj\u0027)",
- "odata.editLink": "Tables(\u0027testtableg4w5w8kj\u0027)",
- "TableName": "testtableg4w5w8kj"
+ "TableName": "testtableg4w5w8kj",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6d1142009e65d9439996decbc3ddb68b-899ce45cadefaa4e-00",
+ "traceparent": "00-5bd9186bf2eb0545a847ae355d7148bf-2227fa1a6dffec43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8ca5b6ec024f1f10aa5dc0b680d044aa",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:59 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:24 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -86,61 +79,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:58 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A58.8723606Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A24.3738632Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "8ca5b6ec024f1f10aa5dc0b680d044aa",
- "x-ms-request-id": "2075302f-b002-001b-2f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "8ca5b6ec-024f-1f10-aa5d-c0b680d044aa"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableg4w5w8kj/@Element",
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A58.8723606Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:58.8723606Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj/$metadata#testtableg4w5w8kj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A24.3738632Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:02:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "1",
- "DoubleTypeProperty": 1.0,
- "IntTypeProperty": 1
+ "DoubleTypeProperty": 1,
+ "IntTypeProperty": 1,
+ "PartitionKey": "somPartition",
+ "RowKey": "01",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:24.3738632Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-378283a12d42104ca7054e78fba49dce-6e69974b6aada54f-00",
+ "traceparent": "00-c94f1c4927948a469cb3b49f3d116057-e7e7fd652fe9c748-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a344cf2db5053e7eb611117ba1d19773",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:59 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:24 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -167,61 +151,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:58 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A58.9204005Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A24.4491272Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a344cf2db5053e7eb611117ba1d19773",
- "x-ms-request-id": "2075303d-b002-001b-3d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "a344cf2d-b505-3e7e-b611-117ba1d19773"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableg4w5w8kj/@Element",
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A58.9204005Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "02",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:58.9204005Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj/$metadata#testtableg4w5w8kj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A24.4491272Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 02",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:03:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:03:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:03:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:03:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "2",
- "DoubleTypeProperty": 2.0,
- "IntTypeProperty": 2
+ "DoubleTypeProperty": 2,
+ "IntTypeProperty": 2,
+ "PartitionKey": "somPartition",
+ "RowKey": "02",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:24.4491272Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-29e9d5b1f05b3b47bd610b4e49b3237d-e4ece8d802414448-00",
+ "traceparent": "00-784aeb4f354db640b9b7cd6fa939bbeb-91a1935f071a974b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "573cac8f5bb57c9841c387c0bfafbd82",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:59 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:24 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -248,61 +223,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:58 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A58.9644366Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A24.5242888Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "573cac8f5bb57c9841c387c0bfafbd82",
- "x-ms-request-id": "20753046-b002-001b-4521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "573cac8f-5bb5-7c98-41c3-87c0bfafbd82"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableg4w5w8kj/@Element",
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A58.9644366Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "03",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:58.9644366Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj/$metadata#testtableg4w5w8kj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A24.5242888Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 03",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:04:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:04:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:04:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:04:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "3",
- "DoubleTypeProperty": 3.0,
- "IntTypeProperty": 3
+ "DoubleTypeProperty": 3,
+ "IntTypeProperty": 3,
+ "PartitionKey": "somPartition",
+ "RowKey": "03",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:24.5242888Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-66c98b815d37064bb574317aca38ac72-c0c9062982243748-00",
+ "traceparent": "00-e32cba4bee9daf469c5324d1c36dbc30-e5208f0a325f634d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a668de579c98377f3866d53ef0947dd8",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:59 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:24 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -329,61 +295,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:58 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.0104753Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A24.5996552Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a668de579c98377f3866d53ef0947dd8",
- "x-ms-request-id": "2075304d-b002-001b-4c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "a668de57-9c98-377f-3866-d53ef0947dd8"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableg4w5w8kj/@Element",
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.0104753Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "04",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:59.0104753Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj/$metadata#testtableg4w5w8kj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A24.5996552Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 04",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:05:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:05:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:05:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:05:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "4",
- "DoubleTypeProperty": 4.0,
- "IntTypeProperty": 4
+ "DoubleTypeProperty": 4,
+ "IntTypeProperty": 4,
+ "PartitionKey": "somPartition",
+ "RowKey": "04",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:24.5996552Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1c454125e1826244bcad368959896145-302a18d717959b46-00",
+ "traceparent": "00-927eb6294bfec449be3ef7214d5bde37-8bba57457c8c1e46-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d3274dc5ec93d2f537c862422dbd7e06",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:59 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:24 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -410,61 +367,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:58 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.0565135Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A24.6743048Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "d3274dc5ec93d2f537c862422dbd7e06",
- "x-ms-request-id": "20753056-b002-001b-5521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "d3274dc5-ec93-d2f5-37c8-62422dbd7e06"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableg4w5w8kj/@Element",
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.0565135Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "05",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:59.0565135Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj/$metadata#testtableg4w5w8kj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A24.6743048Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 05",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:06:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:06:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:06:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:06:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90005",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "5",
- "DoubleTypeProperty": 5.0,
- "IntTypeProperty": 5
+ "DoubleTypeProperty": 5,
+ "IntTypeProperty": 5,
+ "PartitionKey": "somPartition",
+ "RowKey": "05",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:24.6743048Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-dcee481a121ecc4386e7fcdca71d28f2-afcf766cb26c8e47-00",
+ "traceparent": "00-22c0c683ab30144c9b7af825f3749aa0-38873d336c570f46-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c3248f53f169f2db2d051f4e85598bac",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:59 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:24 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -491,61 +439,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:58 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.1055542Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A24.7448584Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c3248f53f169f2db2d051f4e85598bac",
- "x-ms-request-id": "2075306a-b002-001b-6221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "c3248f53-f169-f2db-2d05-1f4e85598bac"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableg4w5w8kj/@Element",
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.1055542Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "06",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:59.1055542Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj/$metadata#testtableg4w5w8kj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A24.7448584Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 06",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:07:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:07:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:07:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:07:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90006",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "6",
- "DoubleTypeProperty": 6.0,
- "IntTypeProperty": 6
+ "DoubleTypeProperty": 6,
+ "IntTypeProperty": 6,
+ "PartitionKey": "somPartition",
+ "RowKey": "06",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:24.7448584Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a225d67ab7bdf54aa73acc2b796fd870-4788265f0e429f43-00",
+ "traceparent": "00-5671633770b9174caa58cbc9d5d2d90c-b6b559331418564a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "72fbae45e9886aeee9956fd03a3d097b",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:59 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:24 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -572,61 +511,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:58 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.1495903Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A24.8187912Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "72fbae45e9886aeee9956fd03a3d097b",
- "x-ms-request-id": "2075306f-b002-001b-6721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "72fbae45-e988-6aee-e995-6fd03a3d097b"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableg4w5w8kj/@Element",
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.1495903Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "07",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:59.1495903Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj/$metadata#testtableg4w5w8kj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A24.8187912Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 07",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:08:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:08:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:08:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:08:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90007",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "7",
- "DoubleTypeProperty": 7.0,
- "IntTypeProperty": 7
+ "DoubleTypeProperty": 7,
+ "IntTypeProperty": 7,
+ "PartitionKey": "somPartition",
+ "RowKey": "07",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:24.8187912Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f3b4c220ab368f43ab17af97b2e0ff42-631d0a96a3f45946-00",
+ "traceparent": "00-6f80705b3baa1d4b9de390d4a9452c5e-004918aaa2444a45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "61eacfe8ba70d46f7234a68ecda64ddd",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:59 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:24 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -653,61 +583,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:58 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.1906248Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A24.8926216Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "61eacfe8ba70d46f7234a68ecda64ddd",
- "x-ms-request-id": "20753078-b002-001b-7021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "61eacfe8-ba70-d46f-7234-a68ecda64ddd"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableg4w5w8kj/@Element",
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.1906248Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "08",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:59.1906248Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj/$metadata#testtableg4w5w8kj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A24.8926216Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 08",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:09:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:09:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:09:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:09:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90008",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "8",
- "DoubleTypeProperty": 8.0,
- "IntTypeProperty": 8
+ "DoubleTypeProperty": 8,
+ "IntTypeProperty": 8,
+ "PartitionKey": "somPartition",
+ "RowKey": "08",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:24.8926216Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-4b6887c5b274a04f86c8fdadadcdb772-35039abbd5410446-00",
+ "traceparent": "00-efe09f3ab8ad47458d422cbedc3b9921-54340c676002a74b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7efcb53c0cc2697ea0b9d9d3820ab8ef",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:59 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -734,61 +655,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:58 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.2336606Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A24.9672712Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "7efcb53c0cc2697ea0b9d9d3820ab8ef",
- "x-ms-request-id": "2075307a-b002-001b-7221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "7efcb53c-0cc2-697e-a0b9-d9d3820ab8ef"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableg4w5w8kj/@Element",
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.2336606Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "09",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:59.2336606Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj/$metadata#testtableg4w5w8kj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A24.9672712Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 09",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:10:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:10:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:10:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:10:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90009",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "9",
- "DoubleTypeProperty": 9.0,
- "IntTypeProperty": 9
+ "DoubleTypeProperty": 9,
+ "IntTypeProperty": 9,
+ "PartitionKey": "somPartition",
+ "RowKey": "09",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:24.9672712Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-04c85dd9f081fa4fb1c6b7d88b8f011b-f912b840ec2d4141-00",
+ "traceparent": "00-baf4a3b25723bd47a4b8eef877b1362f-4129bd2a9f9d2041-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b666a3fc296e8a3c3e27ff5442609d42",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:59 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -815,61 +727,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:59 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.2766959Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A25.0432520Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "b666a3fc296e8a3c3e27ff5442609d42",
- "x-ms-request-id": "2075307f-b002-001b-7721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "b666a3fc-296e-8a3c-3e27-ff5442609d42"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableg4w5w8kj/@Element",
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.2766959Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "10",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:59.2766959Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj/$metadata#testtableg4w5w8kj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A25.0432520Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 10",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:11:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:11:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:11:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:11:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90010",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "10",
- "DoubleTypeProperty": 10.0,
- "IntTypeProperty": 10
+ "DoubleTypeProperty": 10,
+ "IntTypeProperty": 10,
+ "PartitionKey": "somPartition",
+ "RowKey": "10",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:25.0432520Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-5d1b3156ab0f754989c205c38bab1d26-6e41f6be07b5184d-00",
+ "traceparent": "00-2708cd4672c65b49b037707f60e333de-10b141bcc2da254a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "859391488a41dbb95081c0b6e09c5167",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:59 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -896,61 +799,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:59 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.3207328Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A25.1183112Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "859391488a41dbb95081c0b6e09c5167",
- "x-ms-request-id": "20753089-b002-001b-0121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "85939148-8a41-dbb9-5081-c0b6e09c5167"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableg4w5w8kj/@Element",
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.3207328Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "11",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:59.3207328Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj/$metadata#testtableg4w5w8kj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A25.1183112Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 11",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:12:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:12:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:12:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:12:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90011",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "11",
- "DoubleTypeProperty": 11.0,
- "IntTypeProperty": 11
+ "DoubleTypeProperty": 11,
+ "IntTypeProperty": 11,
+ "PartitionKey": "somPartition",
+ "RowKey": "11",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:25.1183112Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-51f45931b2e97b478df2b302ba1297c9-247d5e716364eb47-00",
+ "traceparent": "00-37acd36ee67ada4c9b072c5a3d5f8125-ce13813ba03cdc44-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2991b77b9740126e78713f9b0c2a2640",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:59 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -977,61 +871,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:59 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.3657702Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:25 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A25.2037128Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "2991b77b9740126e78713f9b0c2a2640",
- "x-ms-request-id": "20753092-b002-001b-0a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "2991b77b-9740-126e-7871-3f9b0c2a2640"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableg4w5w8kj/@Element",
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.3657702Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "12",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:59.3657702Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj/$metadata#testtableg4w5w8kj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A25.2037128Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 12",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:13:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:13:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:13:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:13:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90012",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "12",
- "DoubleTypeProperty": 12.0,
- "IntTypeProperty": 12
+ "DoubleTypeProperty": 12,
+ "IntTypeProperty": 12,
+ "PartitionKey": "somPartition",
+ "RowKey": "12",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:25.2037128Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9072779187e81a4ca672df3475c6cd61-8332b568daf1a54f-00",
+ "traceparent": "00-9508b89998945b4cad7a5b3b15bf4659-cf3ab60480743a4d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f08b971c337771aeea8a65ed6985aaa2",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:59 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1058,61 +943,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:59 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.4118089Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:25 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A25.2817416Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "f08b971c337771aeea8a65ed6985aaa2",
- "x-ms-request-id": "2075309d-b002-001b-1521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "f08b971c-3377-71ae-ea8a-65ed6985aaa2"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableg4w5w8kj/@Element",
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.4118089Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "13",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:59.4118089Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj/$metadata#testtableg4w5w8kj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A25.2817416Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 13",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:14:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:14:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:14:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:14:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90013",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "13",
- "DoubleTypeProperty": 13.0,
- "IntTypeProperty": 13
+ "DoubleTypeProperty": 13,
+ "IntTypeProperty": 13,
+ "PartitionKey": "somPartition",
+ "RowKey": "13",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:25.2817416Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d32efdb48e6a6c4c878cc04f8e2d746f-7d61ecdfd87b7448-00",
+ "traceparent": "00-c79793011adb304b846ea5c0166b75fd-5fa0baca1c7ba445-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8bd898d573ceb00223810ccf4b1ece26",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:59 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1139,61 +1015,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:59 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.4518412Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:25 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A25.3612040Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "8bd898d573ceb00223810ccf4b1ece26",
- "x-ms-request-id": "207530a4-b002-001b-1c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "8bd898d5-73ce-b002-2381-0ccf4b1ece26"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableg4w5w8kj/@Element",
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.4518412Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "14",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:59.4518412Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj/$metadata#testtableg4w5w8kj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A25.3612040Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 14",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:15:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:15:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:15:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:15:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90014",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "14",
- "DoubleTypeProperty": 14.0,
- "IntTypeProperty": 14
+ "DoubleTypeProperty": 14,
+ "IntTypeProperty": 14,
+ "PartitionKey": "somPartition",
+ "RowKey": "14",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:25.3612040Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-3fe6420ec8eb2e4ba0afac147ea1fc64-6389c8442208424d-00",
+ "traceparent": "00-75589ad73144e142839eaa20b326eeb8-5d2f984fe5756c49-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "499a805b601048f009203fb53181a9f2",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:59 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1220,61 +1087,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:59 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.5078886Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:25 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A25.4390280Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "499a805b601048f009203fb53181a9f2",
- "x-ms-request-id": "207530af-b002-001b-2721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "499a805b-6010-48f0-0920-3fb53181a9f2"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableg4w5w8kj/@Element",
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.5078886Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "15",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:59.5078886Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj/$metadata#testtableg4w5w8kj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A25.4390280Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 15",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:16:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:16:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:16:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:16:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90015",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "15",
- "DoubleTypeProperty": 15.0,
- "IntTypeProperty": 15
+ "DoubleTypeProperty": 15,
+ "IntTypeProperty": 15,
+ "PartitionKey": "somPartition",
+ "RowKey": "15",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:25.4390280Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1f1c048382a99b40837f93f9016478cd-cc2f95a7ed0b6943-00",
+ "traceparent": "00-5df663b2a938c649a51a0e571424b67c-d60fa01c4166ba4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "74c59dc79a51a97194dacdf526de26cc",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:59 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1301,61 +1159,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:59 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.5519243Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:25 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A25.5108104Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "74c59dc79a51a97194dacdf526de26cc",
- "x-ms-request-id": "207530b7-b002-001b-2f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "74c59dc7-9a51-a971-94da-cdf526de26cc"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableg4w5w8kj/@Element",
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.5519243Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "16",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:59.5519243Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj/$metadata#testtableg4w5w8kj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A25.5108104Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 16",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:17:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:17:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:17:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:17:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90016",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "16",
- "DoubleTypeProperty": 16.0,
- "IntTypeProperty": 16
+ "DoubleTypeProperty": 16,
+ "IntTypeProperty": 16,
+ "PartitionKey": "somPartition",
+ "RowKey": "16",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:25.5108104Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e221d34d6889204c994eda1345f86c52-56cf526885418448-00",
+ "traceparent": "00-9eb1cca7a3807244a4bf1a6de7128f03-9dc738eb9431a143-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e8913fbc60eb7492a88f82ad334d7fa2",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:59 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1382,61 +1231,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:59 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.597963Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:25 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A25.5853576Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "e8913fbc60eb7492a88f82ad334d7fa2",
- "x-ms-request-id": "207530c0-b002-001b-3821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "e8913fbc-60eb-7492-a88f-82ad334d7fa2"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableg4w5w8kj/@Element",
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.597963Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "17",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:59.597963Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj/$metadata#testtableg4w5w8kj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A25.5853576Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 17",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:18:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:18:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:18:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:18:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90017",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "17",
- "DoubleTypeProperty": 17.0,
- "IntTypeProperty": 17
+ "DoubleTypeProperty": 17,
+ "IntTypeProperty": 17,
+ "PartitionKey": "somPartition",
+ "RowKey": "17",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:25.5853576Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-676a3465c44bef4bb35f86727ef6a6ff-45ddeb0305912a4c-00",
+ "traceparent": "00-e47f839b625e0b42b172d39890feee45-189912bcfc263946-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ad0719d75a58c0d40ef1b43593fa212a",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:59 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1463,61 +1303,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:59 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.6420008Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:25 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A25.6625672Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ad0719d75a58c0d40ef1b43593fa212a",
- "x-ms-request-id": "207530d3-b002-001b-4a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "ad0719d7-5a58-c0d4-0ef1-b43593fa212a"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableg4w5w8kj/@Element",
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.6420008Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "18",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:59.6420008Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj/$metadata#testtableg4w5w8kj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A25.6625672Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 18",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:19:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:19:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:19:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:19:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90018",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "18",
- "DoubleTypeProperty": 18.0,
- "IntTypeProperty": 18
+ "DoubleTypeProperty": 18,
+ "IntTypeProperty": 18,
+ "PartitionKey": "somPartition",
+ "RowKey": "18",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:25.6625672Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a5e5e60378dfff4c9f1171f18c917e49-bd7e060df53b9e45-00",
+ "traceparent": "00-e5d9a768279348419f10851e9481a8e4-82292a7f17af9640-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f2f973fac0ef66070a50cbc218c37547",
- "x-ms-date": "Tue, 14 Jul 2020 20:56:59 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1544,61 +1375,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:59 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.684034Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:25 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A25.7365000Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "f2f973fac0ef66070a50cbc218c37547",
- "x-ms-request-id": "207530df-b002-001b-5621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "f2f973fa-c0ef-6607-0a50-cbc218c37547"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableg4w5w8kj/@Element",
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.684034Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "19",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:59.684034Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj/$metadata#testtableg4w5w8kj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A25.7365000Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 19",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:20:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:20:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:20:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:20:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90019",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "19",
- "DoubleTypeProperty": 19.0,
- "IntTypeProperty": 19
+ "DoubleTypeProperty": 19,
+ "IntTypeProperty": 19,
+ "PartitionKey": "somPartition",
+ "RowKey": "19",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:25.7365000Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-40ef890b03c54042ae709aecc8191b49-fde9c228fa64c144-00",
+ "traceparent": "00-2152358886118b46bcccad7cb6ef0ca9-e54bd2f7cdd76747-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0d1d2a5b78d761736ad1d9faab5ce0ad",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:00 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1625,619 +1447,528 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:59 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.7280706Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:25 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A25.8103304Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "0d1d2a5b78d761736ad1d9faab5ce0ad",
- "x-ms-request-id": "207530eb-b002-001b-6221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "0d1d2a5b-78d7-6173-6ad1-d9faab5ce0ad"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableg4w5w8kj/@Element",
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.7280706Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "20",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:59.7280706Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj/$metadata#testtableg4w5w8kj/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A25.8103304Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 20",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:21:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:21:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:21:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:21:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90020",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "20",
- "DoubleTypeProperty": 20.0,
- "IntTypeProperty": 20
+ "DoubleTypeProperty": 20,
+ "IntTypeProperty": 20,
+ "PartitionKey": "somPartition",
+ "RowKey": "20",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:25.8103304Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=10\u0026$filter=PartitionKey%20eq%20%27somPartition%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=10\u0026$filter=PartitionKey%20eq%20%27somPartition%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c0b3576d8d5416b311a0a3078f12a74a",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:00 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:59 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:25 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c0b3576d8d5416b311a0a3078f12a74a",
- "x-ms-continuation-NextPartitionKey": "1!16!c29tUGFydGl0aW9u",
- "x-ms-continuation-NextRowKey": "1!4!MTE-",
- "x-ms-request-id": "207530fa-b002-001b-7121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-continuation-NextPartitionKey": "{\u0022token\u0022:\u0022\u002BRID:~b1w3AMu2rzgKAAAAAAAAAA==#RT:1#TRC:10#ISV:2#IEO:65551#FPC:AQoAAAAAAAAAFAAAAAAAAAA=\u0022,\u0022range\u0022:{\u0022min\u0022:\u0022\u0022,\u0022max\u0022:\u0022FF\u0022}}",
+ "x-ms-continuation-NextRowKey": "NA",
+ "x-ms-request-id": "c0b3576d-8d54-16b3-11a0-a3078f12a74a"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableg4w5w8kj",
"value": [
{
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A58.8723606Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:58.8723606Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A24.3738632Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:02:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "1",
- "DoubleTypeProperty": 1.0,
- "IntTypeProperty": 1
- },
- {
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A58.9204005Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
+ "DoubleTypeProperty": 1,
+ "IntTypeProperty": 1,
"PartitionKey": "somPartition",
- "RowKey": "02",
+ "RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:58.9204005Z",
+ "Timestamp": "2020-07-17T20:38:24.3738632Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A24.4491272Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 02",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:03:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:03:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:03:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:03:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "2",
- "DoubleTypeProperty": 2.0,
- "IntTypeProperty": 2
- },
- {
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A58.9644366Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
+ "DoubleTypeProperty": 2,
+ "IntTypeProperty": 2,
"PartitionKey": "somPartition",
- "RowKey": "03",
+ "RowKey": "02",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:58.9644366Z",
+ "Timestamp": "2020-07-17T20:38:24.4491272Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A24.5242888Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 03",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:04:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:04:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:04:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:04:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "3",
- "DoubleTypeProperty": 3.0,
- "IntTypeProperty": 3
- },
- {
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.0104753Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
+ "DoubleTypeProperty": 3,
+ "IntTypeProperty": 3,
"PartitionKey": "somPartition",
- "RowKey": "04",
+ "RowKey": "03",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:59.0104753Z",
+ "Timestamp": "2020-07-17T20:38:24.5242888Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A24.5996552Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 04",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:05:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:05:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:05:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:05:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "4",
- "DoubleTypeProperty": 4.0,
- "IntTypeProperty": 4
- },
- {
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.0565135Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
+ "DoubleTypeProperty": 4,
+ "IntTypeProperty": 4,
"PartitionKey": "somPartition",
- "RowKey": "05",
+ "RowKey": "04",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:59.0565135Z",
+ "Timestamp": "2020-07-17T20:38:24.5996552Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A24.6743048Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 05",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:06:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:06:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:06:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:06:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90005",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "5",
- "DoubleTypeProperty": 5.0,
- "IntTypeProperty": 5
- },
- {
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.1055542Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
+ "DoubleTypeProperty": 5,
+ "IntTypeProperty": 5,
"PartitionKey": "somPartition",
- "RowKey": "06",
+ "RowKey": "05",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:59.1055542Z",
+ "Timestamp": "2020-07-17T20:38:24.6743048Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A24.7448584Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 06",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:07:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:07:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:07:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:07:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90006",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "6",
- "DoubleTypeProperty": 6.0,
- "IntTypeProperty": 6
- },
- {
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.1495903Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
+ "DoubleTypeProperty": 6,
+ "IntTypeProperty": 6,
"PartitionKey": "somPartition",
- "RowKey": "07",
+ "RowKey": "06",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:59.1495903Z",
+ "Timestamp": "2020-07-17T20:38:24.7448584Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A24.8187912Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 07",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:08:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:08:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:08:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:08:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90007",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "7",
- "DoubleTypeProperty": 7.0,
- "IntTypeProperty": 7
- },
- {
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.1906248Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
+ "DoubleTypeProperty": 7,
+ "IntTypeProperty": 7,
"PartitionKey": "somPartition",
- "RowKey": "08",
+ "RowKey": "07",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:59.1906248Z",
+ "Timestamp": "2020-07-17T20:38:24.8187912Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A24.8926216Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 08",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:09:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:09:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:09:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:09:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90008",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "8",
- "DoubleTypeProperty": 8.0,
- "IntTypeProperty": 8
- },
- {
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.2336606Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
+ "DoubleTypeProperty": 8,
+ "IntTypeProperty": 8,
"PartitionKey": "somPartition",
- "RowKey": "09",
+ "RowKey": "08",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:59.2336606Z",
+ "Timestamp": "2020-07-17T20:38:24.8926216Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A24.9672712Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 09",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:10:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:10:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:10:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:10:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90009",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "9",
- "DoubleTypeProperty": 9.0,
- "IntTypeProperty": 9
- },
- {
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.2766959Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
+ "DoubleTypeProperty": 9,
+ "IntTypeProperty": 9,
"PartitionKey": "somPartition",
- "RowKey": "10",
+ "RowKey": "09",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:59.2766959Z",
+ "Timestamp": "2020-07-17T20:38:24.9672712Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A25.0432520Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 10",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:11:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:11:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:11:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:11:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90010",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "10",
- "DoubleTypeProperty": 10.0,
- "IntTypeProperty": 10
+ "DoubleTypeProperty": 10,
+ "IntTypeProperty": 10,
+ "PartitionKey": "somPartition",
+ "RowKey": "10",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:25.0432520Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=10\u0026$filter=PartitionKey%20eq%20%27somPartition%27\u0026NextPartitionKey=1%2116%21c29tUGFydGl0aW9u\u0026NextRowKey=1%214%21MTE-",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtableg4w5w8kj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=10\u0026$filter=PartitionKey%20eq%20%27somPartition%27\u0026NextPartitionKey=%7B%22token%22%3A%22%2BRID%3A~b1w3AMu2rzgKAAAAAAAAAA%3D%3D%23RT%3A1%23TRC%3A10%23ISV%3A2%23IEO%3A65551%23FPC%3AAQoAAAAAAAAAFAAAAAAAAAA%3D%22%2C%22range%22%3A%7B%22min%22%3A%22%22%2C%22max%22%3A%22FF%22%7D%7D\u0026NextRowKey=NA",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "69da6d7b14dc81530097871de70dbbae",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:00 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:59 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:38:25 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "69da6d7b14dc81530097871de70dbbae",
- "x-ms-request-id": "2075310c-b002-001b-0321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "69da6d7b-14dc-8153-0097-871de70dbbae"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableg4w5w8kj",
"value": [
{
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.3207328Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "11",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:59.3207328Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A25.1183112Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 11",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:12:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:12:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:12:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:12:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90011",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "11",
- "DoubleTypeProperty": 11.0,
- "IntTypeProperty": 11
- },
- {
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.3657702Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
+ "DoubleTypeProperty": 11,
+ "IntTypeProperty": 11,
"PartitionKey": "somPartition",
- "RowKey": "12",
+ "RowKey": "11",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:59.3657702Z",
+ "Timestamp": "2020-07-17T20:38:25.1183112Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A25.2037128Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 12",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:13:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:13:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:13:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:13:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90012",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "12",
- "DoubleTypeProperty": 12.0,
- "IntTypeProperty": 12
- },
- {
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.4118089Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
+ "DoubleTypeProperty": 12,
+ "IntTypeProperty": 12,
"PartitionKey": "somPartition",
- "RowKey": "13",
+ "RowKey": "12",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:59.4118089Z",
+ "Timestamp": "2020-07-17T20:38:25.2037128Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A25.2817416Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 13",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:14:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:14:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:14:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:14:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90013",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "13",
- "DoubleTypeProperty": 13.0,
- "IntTypeProperty": 13
- },
- {
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.4518412Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
+ "DoubleTypeProperty": 13,
+ "IntTypeProperty": 13,
"PartitionKey": "somPartition",
- "RowKey": "14",
+ "RowKey": "13",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:59.4518412Z",
+ "Timestamp": "2020-07-17T20:38:25.2817416Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A25.3612040Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 14",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:15:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:15:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:15:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:15:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90014",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "14",
- "DoubleTypeProperty": 14.0,
- "IntTypeProperty": 14
- },
- {
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.5078886Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
+ "DoubleTypeProperty": 14,
+ "IntTypeProperty": 14,
"PartitionKey": "somPartition",
- "RowKey": "15",
+ "RowKey": "14",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:59.5078886Z",
+ "Timestamp": "2020-07-17T20:38:25.3612040Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A25.4390280Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 15",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:16:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:16:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:16:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:16:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90015",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "15",
- "DoubleTypeProperty": 15.0,
- "IntTypeProperty": 15
- },
- {
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.5519243Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
+ "DoubleTypeProperty": 15,
+ "IntTypeProperty": 15,
"PartitionKey": "somPartition",
- "RowKey": "16",
+ "RowKey": "15",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:59.5519243Z",
+ "Timestamp": "2020-07-17T20:38:25.4390280Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A25.5108104Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 16",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:17:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:17:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:17:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:17:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90016",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "16",
- "DoubleTypeProperty": 16.0,
- "IntTypeProperty": 16
- },
- {
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.597963Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
+ "DoubleTypeProperty": 16,
+ "IntTypeProperty": 16,
"PartitionKey": "somPartition",
- "RowKey": "17",
+ "RowKey": "16",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:59.597963Z",
+ "Timestamp": "2020-07-17T20:38:25.5108104Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A25.5853576Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 17",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:18:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:18:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:18:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:18:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90017",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "17",
- "DoubleTypeProperty": 17.0,
- "IntTypeProperty": 17
- },
- {
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.6420008Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
+ "DoubleTypeProperty": 17,
+ "IntTypeProperty": 17,
"PartitionKey": "somPartition",
- "RowKey": "18",
+ "RowKey": "17",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:59.6420008Z",
+ "Timestamp": "2020-07-17T20:38:25.5853576Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A25.6625672Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 18",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:19:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:19:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:19:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:19:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90018",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "18",
- "DoubleTypeProperty": 18.0,
- "IntTypeProperty": 18
- },
- {
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.684034Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
+ "DoubleTypeProperty": 18,
+ "IntTypeProperty": 18,
"PartitionKey": "somPartition",
- "RowKey": "19",
+ "RowKey": "18",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:59.684034Z",
+ "Timestamp": "2020-07-17T20:38:25.6625672Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A25.7365000Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 19",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:20:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:20:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:20:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:20:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90019",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "19",
- "DoubleTypeProperty": 19.0,
- "IntTypeProperty": 19
- },
- {
- "odata.type": "chrissscratch.testtableg4w5w8kj",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A56%3A59.7280706Z\u0027\u0022",
- "odata.editLink": "testtableg4w5w8kj(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
+ "DoubleTypeProperty": 19,
+ "IntTypeProperty": 19,
"PartitionKey": "somPartition",
- "RowKey": "20",
+ "RowKey": "19",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:56:59.7280706Z",
+ "Timestamp": "2020-07-17T20:38:25.7365000Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A38%3A25.8103304Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 20",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:21:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:21:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:21:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:21:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90020",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "20",
- "DoubleTypeProperty": 20.0,
- "IntTypeProperty": 20
+ "DoubleTypeProperty": 20,
+ "IntTypeProperty": 20,
+ "PartitionKey": "somPartition",
+ "RowKey": "20",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:38:25.8103304Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableg4w5w8kj\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableg4w5w8kj\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-b55021f3477cb349a83844e7d3969f9d-c171d17b537b2b45-00",
+ "traceparent": "00-2270f15f6cc80740b1ae84b2050b1f38-3709818e43054b49-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c0541d70b510cef37706fb36d56bd258",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:00 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:38:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:56:59 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c0541d70b510cef37706fb36d56bd258",
- "x-ms-request-id": "2075311d-b002-001b-1421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:38:26 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "c0541d70-b510-cef3-7706-fb36d56bd258"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "2105555626",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableTakeWithContinuationTaskAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableTakeWithContinuationTaskAsync.json
index a4307a0fc9e3..ea5db859ac78 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableTakeWithContinuationTaskAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(CosmosTable)/TableTakeWithContinuationTaskAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-2b55dab37db3434bacfbd7d9940f6862-4bf72e67b5065043-00",
+ "traceparent": "00-d60da6c2d7ee50408999aacd2301bb9c-53e918f18fec1d42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9d9ae29f3595beac067c82951ac226d4",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:24 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:17 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablea1nxjuh6\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:25 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A24.9210888Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablea1nxjuh6\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "9d9ae29f3595beac067c82951ac226d4",
- "x-ms-request-id": "20754263-b002-001b-3621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "9d9ae29f-3595-beac-067c-82951ac226d4"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablea1nxjuh6\u0027)",
- "odata.editLink": "Tables(\u0027testtablea1nxjuh6\u0027)",
- "TableName": "testtablea1nxjuh6"
+ "TableName": "testtablea1nxjuh6",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a14d6743aef9844ebb91f5eff501b0dc-5b06bf5297142243-00",
+ "traceparent": "00-a6dd83130513674c99d3fccae7ec4c93-f7703642e436e24c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6f00049289262eb99ab2d232bd521920",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -86,61 +79,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:17 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.0222571Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:25 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A25.7045512Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "6f00049289262eb99ab2d232bd521920",
- "x-ms-request-id": "20754269-b002-001b-3b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "6f000492-8926-2eb9-9ab2-d232bd521920"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea1nxjuh6/@Element",
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.0222571Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.0222571Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6/$metadata#testtablea1nxjuh6/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A25.7045512Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:02:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "1",
- "DoubleTypeProperty": 1.0,
- "IntTypeProperty": 1
+ "DoubleTypeProperty": 1,
+ "IntTypeProperty": 1,
+ "PartitionKey": "somPartition",
+ "RowKey": "01",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:25.7045512Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-541b22e25fea6b41bf2f284e9bfa0600-ac8c7a82a7636044-00",
+ "traceparent": "00-68f6619a28f0b441a4feebb8a51706cf-4f6c72cc51255a41-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "367afa06a4446ba19b11dcbd866d4f09",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -167,61 +151,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:17 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.0692966Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:25 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A25.7886216Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "367afa06a4446ba19b11dcbd866d4f09",
- "x-ms-request-id": "20754272-b002-001b-4421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "367afa06-a444-6ba1-9b11-dcbd866d4f09"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea1nxjuh6/@Element",
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.0692966Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "02",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.0692966Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6/$metadata#testtablea1nxjuh6/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A25.7886216Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 02",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:03:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:03:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:03:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:03:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "2",
- "DoubleTypeProperty": 2.0,
- "IntTypeProperty": 2
+ "DoubleTypeProperty": 2,
+ "IntTypeProperty": 2,
+ "PartitionKey": "somPartition",
+ "RowKey": "02",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:25.7886216Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-80cb201b029a864a9d3613f5e9d9968e-4aad71520c1c714f-00",
+ "traceparent": "00-faea3710cc633d40acf493fbdbd4f6ba-e6df488623a8774e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5df72377df511666286b03e3637a00b3",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -248,61 +223,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:17 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.1183373Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:25 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A25.8607112Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "5df72377df511666286b03e3637a00b3",
- "x-ms-request-id": "2075427c-b002-001b-4b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "5df72377-df51-1666-286b-03e3637a00b3"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea1nxjuh6/@Element",
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.1183373Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "03",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.1183373Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6/$metadata#testtablea1nxjuh6/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A25.8607112Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 03",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:04:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:04:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:04:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:04:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "3",
- "DoubleTypeProperty": 3.0,
- "IntTypeProperty": 3
+ "DoubleTypeProperty": 3,
+ "IntTypeProperty": 3,
+ "PartitionKey": "somPartition",
+ "RowKey": "03",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:25.8607112Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-cd50a917f5cb0d4fae4acd3c411839d3-c4b2a2659f08df48-00",
+ "traceparent": "00-bb6b0b5f8b02ca4badfbd26c25075b95-a94233bbd662af45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "208e6263f047ee8f6294d414acfba82d",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -329,61 +295,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:17 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.1613726Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:25 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A25.9345416Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "208e6263f047ee8f6294d414acfba82d",
- "x-ms-request-id": "20754282-b002-001b-5021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "208e6263-f047-ee8f-6294-d414acfba82d"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea1nxjuh6/@Element",
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.1613726Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "04",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.1613726Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6/$metadata#testtablea1nxjuh6/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A25.9345416Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 04",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:05:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:05:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:05:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:05:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "4",
- "DoubleTypeProperty": 4.0,
- "IntTypeProperty": 4
+ "DoubleTypeProperty": 4,
+ "IntTypeProperty": 4,
+ "PartitionKey": "somPartition",
+ "RowKey": "04",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:25.9345416Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-5f12580f2a44e4438668bf58aad77313-da577eaefc64c34c-00",
+ "traceparent": "00-2619e7d6c613354a82319386a5e103c2-0320bc1a364a1142-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9abac862bc5a27cf94640dd8a1be0720",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -410,61 +367,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:17 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.2174196Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:25 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.0059144Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "9abac862bc5a27cf94640dd8a1be0720",
- "x-ms-request-id": "20754288-b002-001b-5621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "9abac862-bc5a-27cf-9464-0dd8a1be0720"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea1nxjuh6/@Element",
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.2174196Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "05",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.2174196Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6/$metadata#testtablea1nxjuh6/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.0059144Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 05",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:06:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:06:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:06:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:06:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90005",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "5",
- "DoubleTypeProperty": 5.0,
- "IntTypeProperty": 5
+ "DoubleTypeProperty": 5,
+ "IntTypeProperty": 5,
+ "PartitionKey": "somPartition",
+ "RowKey": "05",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:26.0059144Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-899d15f13fe19148a252c069a719cffa-5fb6d6b8b4623a4b-00",
+ "traceparent": "00-1a8e2ccca0c1364bbcc749392cf9b171-a408faa5f76f2243-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "245a28112fde87c19309fabc0b51692d",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -491,61 +439,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:17 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.2594541Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:25 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.0771848Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "245a28112fde87c19309fabc0b51692d",
- "x-ms-request-id": "2075428c-b002-001b-5a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "245a2811-2fde-87c1-9309-fabc0b51692d"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea1nxjuh6/@Element",
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.2594541Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "06",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.2594541Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6/$metadata#testtablea1nxjuh6/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.0771848Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 06",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:07:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:07:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:07:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:07:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90006",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "6",
- "DoubleTypeProperty": 6.0,
- "IntTypeProperty": 6
+ "DoubleTypeProperty": 6,
+ "IntTypeProperty": 6,
+ "PartitionKey": "somPartition",
+ "RowKey": "06",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:26.0771848Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9c585b450ae58f4180dec5b28726006d-7568150afd8b154e-00",
+ "traceparent": "00-8bccf73f82764d4fabfd737617dd8ad1-7694aa3d5de21b42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9b80d6c366bfa75892678ce3e2b74ca4",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -572,61 +511,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:18 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.3054927Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:26 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.1531656Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "9b80d6c366bfa75892678ce3e2b74ca4",
- "x-ms-request-id": "20754297-b002-001b-6521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "9b80d6c3-66bf-a758-9267-8ce3e2b74ca4"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea1nxjuh6/@Element",
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.3054927Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "07",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.3054927Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6/$metadata#testtablea1nxjuh6/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.1531656Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 07",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:08:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:08:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:08:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:08:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90007",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "7",
- "DoubleTypeProperty": 7.0,
- "IntTypeProperty": 7
+ "DoubleTypeProperty": 7,
+ "IntTypeProperty": 7,
+ "PartitionKey": "somPartition",
+ "RowKey": "07",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:26.1531656Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-25aa05e623e65a4f9fc79281a13c4d75-79cbe241ebb9be46-00",
+ "traceparent": "00-bbd2dbebed5e1e4f8da9c68fd2945f0f-3e04f0383ea4454a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8403b38c83a1334e07330751c1121c42",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -653,61 +583,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:18 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.3555342Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:26 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.2267912Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "8403b38c83a1334e07330751c1121c42",
- "x-ms-request-id": "2075429b-b002-001b-6921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "8403b38c-83a1-334e-0733-0751c1121c42"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea1nxjuh6/@Element",
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.3555342Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "08",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.3555342Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6/$metadata#testtablea1nxjuh6/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.2267912Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 08",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:09:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:09:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:09:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:09:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90008",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "8",
- "DoubleTypeProperty": 8.0,
- "IntTypeProperty": 8
+ "DoubleTypeProperty": 8,
+ "IntTypeProperty": 8,
+ "PartitionKey": "somPartition",
+ "RowKey": "08",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:26.2267912Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-cbac61f76a52084686d26feaebd210ab-7e0707f30a850146-00",
+ "traceparent": "00-4bfa638276d840498d1acfe27245a1a3-0897223e12a7b24b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "cb14e0fb6c3daa61d0b39177a2dea5db",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -734,61 +655,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:18 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.3975687Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:26 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.2994952Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "cb14e0fb6c3daa61d0b39177a2dea5db",
- "x-ms-request-id": "207542a2-b002-001b-7021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "cb14e0fb-6c3d-aa61-d0b3-9177a2dea5db"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea1nxjuh6/@Element",
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.3975687Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "09",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.3975687Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6/$metadata#testtablea1nxjuh6/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.2994952Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 09",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:10:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:10:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:10:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:10:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90009",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "9",
- "DoubleTypeProperty": 9.0,
- "IntTypeProperty": 9
+ "DoubleTypeProperty": 9,
+ "IntTypeProperty": 9,
+ "PartitionKey": "somPartition",
+ "RowKey": "09",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:26.2994952Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-2502a53e98f60249991b1a8dca15d428-c0e64c16b7e3e24e-00",
+ "traceparent": "00-a196e876c2d30847a1203fd042eb5018-31aa9e98f92a4040-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "572f56bce54d408b874d948c5f07e580",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -815,61 +727,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:18 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.4506149Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:26 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.3739400Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "572f56bce54d408b874d948c5f07e580",
- "x-ms-request-id": "207542af-b002-001b-7d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "572f56bc-e54d-408b-874d-948c5f07e580"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea1nxjuh6/@Element",
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.4506149Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "10",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.4506149Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6/$metadata#testtablea1nxjuh6/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.3739400Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 10",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:11:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:11:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:11:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:11:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90010",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "10",
- "DoubleTypeProperty": 10.0,
- "IntTypeProperty": 10
+ "DoubleTypeProperty": 10,
+ "IntTypeProperty": 10,
+ "PartitionKey": "somPartition",
+ "RowKey": "10",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:26.3739400Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-3670a5a2ebdc9242af407aee8212f9d1-6f2e4cd47fce6944-00",
+ "traceparent": "00-ed3602338be5b44a8b971546e4d97682-c697305e8f23e840-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "02e8494b81a220665258b3eef1d79028",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -896,61 +799,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:18 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.4956497Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:26 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.4478728Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "02e8494b81a220665258b3eef1d79028",
- "x-ms-request-id": "207542b8-b002-001b-0621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "02e8494b-81a2-2066-5258-b3eef1d79028"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea1nxjuh6/@Element",
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.4956497Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "11",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.4956497Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6/$metadata#testtablea1nxjuh6/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.4478728Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 11",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:12:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:12:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:12:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:12:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90011",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "11",
- "DoubleTypeProperty": 11.0,
- "IntTypeProperty": 11
+ "DoubleTypeProperty": 11,
+ "IntTypeProperty": 11,
+ "PartitionKey": "somPartition",
+ "RowKey": "11",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:26.4478728Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ad8f1ffcd38e7445a9bb2412f82d4b0a-46e547c57473ef44-00",
+ "traceparent": "00-b9d1376a5475dc4ea774f5dbb880e94c-f8a7f1bbbcebbf47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6b942b8dc4e315f454d443efd8d44bc8",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -977,61 +871,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:18 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.5396871Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:26 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.5236488Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "6b942b8dc4e315f454d443efd8d44bc8",
- "x-ms-request-id": "207542c2-b002-001b-1021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "6b942b8d-c4e3-15f4-54d4-43efd8d44bc8"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea1nxjuh6/@Element",
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.5396871Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "12",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.5396871Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6/$metadata#testtablea1nxjuh6/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.5236488Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 12",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:13:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:13:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:13:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:13:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90012",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "12",
- "DoubleTypeProperty": 12.0,
- "IntTypeProperty": 12
+ "DoubleTypeProperty": 12,
+ "IntTypeProperty": 12,
+ "PartitionKey": "somPartition",
+ "RowKey": "12",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:26.5236488Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-50b83f61d7dae847bac42ded72fa46ff-2097befe6d528f41-00",
+ "traceparent": "00-a1ea5be8b5c38a4d9593b4d8fdfc4ccc-82c46bfbd0172249-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "582c11cda3f63a38ef0f05f5319d4eb0",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1058,61 +943,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:18 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.5847245Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:26 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.6011656Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "582c11cda3f63a38ef0f05f5319d4eb0",
- "x-ms-request-id": "207542ce-b002-001b-1a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "582c11cd-a3f6-3a38-ef0f-05f5319d4eb0"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea1nxjuh6/@Element",
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.5847245Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "13",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.5847245Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6/$metadata#testtablea1nxjuh6/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.6011656Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 13",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:14:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:14:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:14:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:14:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90013",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "13",
- "DoubleTypeProperty": 13.0,
- "IntTypeProperty": 13
+ "DoubleTypeProperty": 13,
+ "IntTypeProperty": 13,
+ "PartitionKey": "somPartition",
+ "RowKey": "13",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:26.6011656Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-558d5d482ce6d44eba81f47ead417d7f-9a27cba6c07fe64f-00",
+ "traceparent": "00-a507e98b72b31b4b810dcaeb91c1a188-14e34c082c7df348-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "34fe6bbd7972869c55d2adce3e77487d",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1139,61 +1015,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:18 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.6287606Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:26 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.6744840Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "34fe6bbd7972869c55d2adce3e77487d",
- "x-ms-request-id": "207542d5-b002-001b-2121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "34fe6bbd-7972-869c-55d2-adce3e77487d"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea1nxjuh6/@Element",
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.6287606Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "14",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.6287606Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6/$metadata#testtablea1nxjuh6/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.6744840Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 14",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:15:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:15:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:15:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:15:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90014",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "14",
- "DoubleTypeProperty": 14.0,
- "IntTypeProperty": 14
+ "DoubleTypeProperty": 14,
+ "IntTypeProperty": 14,
+ "PartitionKey": "somPartition",
+ "RowKey": "14",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:26.6744840Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a7c4ac7072545a46a44b7bd24c08bf68-3aaece7fccb98b43-00",
+ "traceparent": "00-ae03b9d3350bae4eae838b845b0e2250-7f57aba862d3d841-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "df20ea0d37abea32f2597cd4bfffe4b7",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1220,61 +1087,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:18 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.6757997Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:26 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.7490312Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "df20ea0d37abea32f2597cd4bfffe4b7",
- "x-ms-request-id": "207542df-b002-001b-2b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "df20ea0d-37ab-ea32-f259-7cd4bfffe4b7"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea1nxjuh6/@Element",
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.6757997Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "15",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.6757997Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6/$metadata#testtablea1nxjuh6/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.7490312Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 15",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:16:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:16:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:16:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:16:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90015",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "15",
- "DoubleTypeProperty": 15.0,
- "IntTypeProperty": 15
+ "DoubleTypeProperty": 15,
+ "IntTypeProperty": 15,
+ "PartitionKey": "somPartition",
+ "RowKey": "15",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:26.7490312Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-842687634122d04f9d29be79f154055b-b8618edec5a0bd46-00",
+ "traceparent": "00-e87487d0d139b2419d8e1f5e5dc3903a-85c42f0de4ad3540-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6d32938517d5535674a50323f56afc78",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1301,61 +1159,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:18 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.7158333Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:26 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.8219400Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "6d32938517d5535674a50323f56afc78",
- "x-ms-request-id": "207542e8-b002-001b-3321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "6d329385-17d5-5356-74a5-0323f56afc78"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea1nxjuh6/@Element",
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.7158333Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "16",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.7158333Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6/$metadata#testtablea1nxjuh6/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.8219400Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 16",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:17:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:17:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:17:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:17:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90016",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "16",
- "DoubleTypeProperty": 16.0,
- "IntTypeProperty": 16
+ "DoubleTypeProperty": 16,
+ "IntTypeProperty": 16,
+ "PartitionKey": "somPartition",
+ "RowKey": "16",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:26.8219400Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-b56b7f9ee7c9e54686a045c7ea75836a-950d09f6fe11494f-00",
+ "traceparent": "00-c1be35bad7a73f418c5e173078754cf7-ee8cc48358f67b4b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "46e787c76e7c850538134118fdc8c655",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1382,61 +1231,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:18 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.770879Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:26 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.8986376Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "46e787c76e7c850538134118fdc8c655",
- "x-ms-request-id": "207542f0-b002-001b-3b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "46e787c7-6e7c-8505-3813-4118fdc8c655"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea1nxjuh6/@Element",
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.770879Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "17",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.770879Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6/$metadata#testtablea1nxjuh6/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.8986376Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 17",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:18:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:18:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:18:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:18:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90017",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "17",
- "DoubleTypeProperty": 17.0,
- "IntTypeProperty": 17
+ "DoubleTypeProperty": 17,
+ "IntTypeProperty": 17,
+ "PartitionKey": "somPartition",
+ "RowKey": "17",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:26.8986376Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6f7a0edce54cdf4fae42ac5d94323cf9-f8bf0d2c831f0b47-00",
+ "traceparent": "00-19c472dd0d97b54998cc19cf891a84b8-277ed3d140df0e46-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "aa49f5eeda44f5a794cd6b05330ef588",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:27 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1463,61 +1303,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:18 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.8139156Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:26 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.9799432Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "aa49f5eeda44f5a794cd6b05330ef588",
- "x-ms-request-id": "207542f8-b002-001b-4321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "aa49f5ee-da44-f5a7-94cd-6b05330ef588"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea1nxjuh6/@Element",
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.8139156Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "18",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.8139156Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6/$metadata#testtablea1nxjuh6/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.9799432Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 18",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:19:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:19:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:19:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:19:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90018",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "18",
- "DoubleTypeProperty": 18.0,
- "IntTypeProperty": 18
+ "DoubleTypeProperty": 18,
+ "IntTypeProperty": 18,
+ "PartitionKey": "somPartition",
+ "RowKey": "18",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:26.9799432Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-269cfc8ceeb6f84985611839a03135c1-32c772d281865b4c-00",
+ "traceparent": "00-bd6b806336d26a4b900f486c304e8867-a197723e9338314f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "380c045d9d17163b8ead34c2d53d56ab",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:27 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1544,61 +1375,52 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:18 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.8619551Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:26 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A27.0533640Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "380c045d9d17163b8ead34c2d53d56ab",
- "x-ms-request-id": "207542fd-b002-001b-4821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "380c045d-9d17-163b-8ead-34c2d53d56ab"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea1nxjuh6/@Element",
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.8619551Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "19",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.8619551Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6/$metadata#testtablea1nxjuh6/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A27.0533640Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 19",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:20:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:20:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:20:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:20:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90019",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "19",
- "DoubleTypeProperty": 19.0,
- "IntTypeProperty": 19
+ "DoubleTypeProperty": 19,
+ "IntTypeProperty": 19,
+ "PartitionKey": "somPartition",
+ "RowKey": "19",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:27.0533640Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1bef456607647b479e3e4fb0b88b7465-d5dcb1769b49044d-00",
+ "traceparent": "00-635c4174d3f59e41bf12f35efbd5e9d7-5c2af36a07ec6e48-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ff35aede5220ec33dff2b1af03ff5129",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:27 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1625,619 +1447,528 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:18 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.9099945Z\u0027\u0022",
- "Location": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:26 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A27.1280136Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ff35aede5220ec33dff2b1af03ff5129",
- "x-ms-request-id": "20754305-b002-001b-5021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "ff35aede-5220-ec33-dff2-b1af03ff5129"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea1nxjuh6/@Element",
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.9099945Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "20",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.9099945Z",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6/$metadata#testtablea1nxjuh6/@Element",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A27.1280136Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 20",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:21:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:21:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:21:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:21:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90020",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "20",
- "DoubleTypeProperty": 20.0,
- "IntTypeProperty": 20
+ "DoubleTypeProperty": 20,
+ "IntTypeProperty": 20,
+ "PartitionKey": "somPartition",
+ "RowKey": "20",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:27.1280136Z"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=10\u0026$filter=PartitionKey%20eq%20%27somPartition%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=10\u0026$filter=PartitionKey%20eq%20%27somPartition%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f9bbb91e8ebc503dba331b96a6e51f56",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:27 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:18 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:27 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "f9bbb91e8ebc503dba331b96a6e51f56",
- "x-ms-continuation-NextPartitionKey": "1!16!c29tUGFydGl0aW9u",
- "x-ms-continuation-NextRowKey": "1!4!MTE-",
- "x-ms-request-id": "20754317-b002-001b-6121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-continuation-NextPartitionKey": "{\u0022token\u0022:\u0022\u002BRID:~b1w3ALH0c2MKAAAAAAAAAA==#RT:1#TRC:10#ISV:2#IEO:65551#FPC:AQoAAAAAAAAAFAAAAAAAAAA=\u0022,\u0022range\u0022:{\u0022min\u0022:\u0022\u0022,\u0022max\u0022:\u0022FF\u0022}}",
+ "x-ms-continuation-NextRowKey": "NA",
+ "x-ms-request-id": "f9bbb91e-8ebc-503d-ba33-1b96a6e51f56"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea1nxjuh6",
"value": [
{
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.0222571Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "01",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.0222571Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A25.7045512Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:02:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:02:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90001",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "1",
- "DoubleTypeProperty": 1.0,
- "IntTypeProperty": 1
- },
- {
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.0692966Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
+ "DoubleTypeProperty": 1,
+ "IntTypeProperty": 1,
"PartitionKey": "somPartition",
- "RowKey": "02",
+ "RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.0692966Z",
+ "Timestamp": "2020-07-17T20:40:25.7045512Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A25.7886216Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 02",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:03:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:03:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:03:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:03:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90002",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "2",
- "DoubleTypeProperty": 2.0,
- "IntTypeProperty": 2
- },
- {
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.1183373Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
+ "DoubleTypeProperty": 2,
+ "IntTypeProperty": 2,
"PartitionKey": "somPartition",
- "RowKey": "03",
+ "RowKey": "02",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.1183373Z",
+ "Timestamp": "2020-07-17T20:40:25.7886216Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A25.8607112Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 03",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:04:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:04:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:04:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:04:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90003",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "3",
- "DoubleTypeProperty": 3.0,
- "IntTypeProperty": 3
- },
- {
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.1613726Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
+ "DoubleTypeProperty": 3,
+ "IntTypeProperty": 3,
"PartitionKey": "somPartition",
- "RowKey": "04",
+ "RowKey": "03",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.1613726Z",
+ "Timestamp": "2020-07-17T20:40:25.8607112Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A25.9345416Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 04",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:05:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:05:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:05:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:05:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90004",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "4",
- "DoubleTypeProperty": 4.0,
- "IntTypeProperty": 4
- },
- {
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.2174196Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
+ "DoubleTypeProperty": 4,
+ "IntTypeProperty": 4,
"PartitionKey": "somPartition",
- "RowKey": "05",
+ "RowKey": "04",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.2174196Z",
+ "Timestamp": "2020-07-17T20:40:25.9345416Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.0059144Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 05",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:06:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:06:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:06:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:06:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90005",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "5",
- "DoubleTypeProperty": 5.0,
- "IntTypeProperty": 5
- },
- {
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.2594541Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
+ "DoubleTypeProperty": 5,
+ "IntTypeProperty": 5,
"PartitionKey": "somPartition",
- "RowKey": "06",
+ "RowKey": "05",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.2594541Z",
+ "Timestamp": "2020-07-17T20:40:26.0059144Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.0771848Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 06",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:07:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:07:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:07:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:07:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90006",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "6",
- "DoubleTypeProperty": 6.0,
- "IntTypeProperty": 6
- },
- {
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.3054927Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
+ "DoubleTypeProperty": 6,
+ "IntTypeProperty": 6,
"PartitionKey": "somPartition",
- "RowKey": "07",
+ "RowKey": "06",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.3054927Z",
+ "Timestamp": "2020-07-17T20:40:26.0771848Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.1531656Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 07",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:08:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:08:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:08:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:08:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90007",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "7",
- "DoubleTypeProperty": 7.0,
- "IntTypeProperty": 7
- },
- {
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.3555342Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
+ "DoubleTypeProperty": 7,
+ "IntTypeProperty": 7,
"PartitionKey": "somPartition",
- "RowKey": "08",
+ "RowKey": "07",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.3555342Z",
+ "Timestamp": "2020-07-17T20:40:26.1531656Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.2267912Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 08",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:09:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:09:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:09:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:09:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90008",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "8",
- "DoubleTypeProperty": 8.0,
- "IntTypeProperty": 8
- },
- {
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.3975687Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
+ "DoubleTypeProperty": 8,
+ "IntTypeProperty": 8,
"PartitionKey": "somPartition",
- "RowKey": "09",
+ "RowKey": "08",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.3975687Z",
+ "Timestamp": "2020-07-17T20:40:26.2267912Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.2994952Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 09",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:10:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:10:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:10:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:10:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90009",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "9",
- "DoubleTypeProperty": 9.0,
- "IntTypeProperty": 9
- },
- {
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.4506149Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
+ "DoubleTypeProperty": 9,
+ "IntTypeProperty": 9,
"PartitionKey": "somPartition",
- "RowKey": "10",
+ "RowKey": "09",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.4506149Z",
+ "Timestamp": "2020-07-17T20:40:26.2994952Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.3739400Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 10",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:11:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:11:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:11:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:11:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90010",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "10",
- "DoubleTypeProperty": 10.0,
- "IntTypeProperty": 10
+ "DoubleTypeProperty": 10,
+ "IntTypeProperty": 10,
+ "PartitionKey": "somPartition",
+ "RowKey": "10",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:26.3739400Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=10\u0026$filter=PartitionKey%20eq%20%27somPartition%27\u0026NextPartitionKey=1%2116%21c29tUGFydGl0aW9u\u0026NextRowKey=1%214%21MTE-",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/testtablea1nxjuh6()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=10\u0026$filter=PartitionKey%20eq%20%27somPartition%27\u0026NextPartitionKey=%7B%22token%22%3A%22%2BRID%3A~b1w3ALH0c2MKAAAAAAAAAA%3D%3D%23RT%3A1%23TRC%3A10%23ISV%3A2%23IEO%3A65551%23FPC%3AAQoAAAAAAAAAFAAAAAAAAAA%3D%22%2C%22range%22%3A%7B%22min%22%3A%22%22%2C%22max%22%3A%22FF%22%7D%7D\u0026NextRowKey=NA",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8526bf76f5d90a68d0205825eb8c128e",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:27 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:18 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:27 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "8526bf76f5d90a68d0205825eb8c128e",
- "x-ms-request-id": "20754338-b002-001b-8021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "8526bf76-f5d9-0a68-d020-5825eb8c128e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablea1nxjuh6",
"value": [
{
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.4956497Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "PartitionKey": "somPartition",
- "RowKey": "11",
- "Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.4956497Z",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.4478728Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 11",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:12:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:12:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:12:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:12:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90011",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "11",
- "DoubleTypeProperty": 11.0,
- "IntTypeProperty": 11
- },
- {
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.5396871Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
+ "DoubleTypeProperty": 11,
+ "IntTypeProperty": 11,
"PartitionKey": "somPartition",
- "RowKey": "12",
+ "RowKey": "11",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.5396871Z",
+ "Timestamp": "2020-07-17T20:40:26.4478728Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.5236488Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 12",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:13:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:13:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:13:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:13:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90012",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "12",
- "DoubleTypeProperty": 12.0,
- "IntTypeProperty": 12
- },
- {
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.5847245Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
+ "DoubleTypeProperty": 12,
+ "IntTypeProperty": 12,
"PartitionKey": "somPartition",
- "RowKey": "13",
+ "RowKey": "12",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.5847245Z",
+ "Timestamp": "2020-07-17T20:40:26.5236488Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.6011656Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 13",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:14:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:14:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:14:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:14:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90013",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "13",
- "DoubleTypeProperty": 13.0,
- "IntTypeProperty": 13
- },
- {
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.6287606Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
+ "DoubleTypeProperty": 13,
+ "IntTypeProperty": 13,
"PartitionKey": "somPartition",
- "RowKey": "14",
+ "RowKey": "13",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.6287606Z",
+ "Timestamp": "2020-07-17T20:40:26.6011656Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.6744840Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 14",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:15:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:15:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:15:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:15:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90014",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "14",
- "DoubleTypeProperty": 14.0,
- "IntTypeProperty": 14
- },
- {
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.6757997Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
+ "DoubleTypeProperty": 14,
+ "IntTypeProperty": 14,
"PartitionKey": "somPartition",
- "RowKey": "15",
+ "RowKey": "14",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.6757997Z",
+ "Timestamp": "2020-07-17T20:40:26.6744840Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.7490312Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 15",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:16:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:16:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:16:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:16:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90015",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "15",
- "DoubleTypeProperty": 15.0,
- "IntTypeProperty": 15
- },
- {
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.7158333Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
+ "DoubleTypeProperty": 15,
+ "IntTypeProperty": 15,
"PartitionKey": "somPartition",
- "RowKey": "16",
+ "RowKey": "15",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.7158333Z",
+ "Timestamp": "2020-07-17T20:40:26.7490312Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.8219400Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 16",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:17:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:17:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:17:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:17:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90016",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "16",
- "DoubleTypeProperty": 16.0,
- "IntTypeProperty": 16
- },
- {
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.770879Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
+ "DoubleTypeProperty": 16,
+ "IntTypeProperty": 16,
"PartitionKey": "somPartition",
- "RowKey": "17",
+ "RowKey": "16",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.770879Z",
+ "Timestamp": "2020-07-17T20:40:26.8219400Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.8986376Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 17",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:18:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:18:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:18:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:18:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90017",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "17",
- "DoubleTypeProperty": 17.0,
- "IntTypeProperty": 17
- },
- {
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.8139156Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
+ "DoubleTypeProperty": 17,
+ "IntTypeProperty": 17,
"PartitionKey": "somPartition",
- "RowKey": "18",
+ "RowKey": "17",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.8139156Z",
+ "Timestamp": "2020-07-17T20:40:26.8986376Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A26.9799432Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 18",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:19:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:19:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:19:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:19:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90018",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "18",
- "DoubleTypeProperty": 18.0,
- "IntTypeProperty": 18
- },
- {
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.8619551Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
+ "DoubleTypeProperty": 18,
+ "IntTypeProperty": 18,
"PartitionKey": "somPartition",
- "RowKey": "19",
+ "RowKey": "18",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.8619551Z",
+ "Timestamp": "2020-07-17T20:40:26.9799432Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A27.0533640Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 19",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:20:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:20:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:20:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:20:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90019",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "19",
- "DoubleTypeProperty": 19.0,
- "IntTypeProperty": 19
- },
- {
- "odata.type": "chrissscratch.testtablea1nxjuh6",
- "odata.id": "https://chrissscratch.table.core.windows.net/testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A18.9099945Z\u0027\u0022",
- "odata.editLink": "testtablea1nxjuh6(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
+ "DoubleTypeProperty": 19,
+ "IntTypeProperty": 19,
"PartitionKey": "somPartition",
- "RowKey": "20",
+ "RowKey": "19",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:18.9099945Z",
+ "Timestamp": "2020-07-17T20:40:27.0533640Z"
+ },
+ {
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A27.1280136Z\u0027\u0022",
"StringTypeProperty": "This is table entity number 20",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeTypeProperty": "2020-01-01T01:21:00Z",
+ "DatetimeTypeProperty": "2020-01-01T01:21:00.0000000Z",
"DatetimeOffsetTypeProperty@odata.type": "Edm.DateTime",
- "DatetimeOffsetTypeProperty": "2020-01-01T01:21:00Z",
+ "DatetimeOffsetTypeProperty": "2020-01-01T01:21:00.0000000Z",
"GuidTypeProperty@odata.type": "Edm.Guid",
"GuidTypeProperty": "0d391d16-97f1-4b9a-be68-4cc871f90020",
"BinaryTypeProperty@odata.type": "Edm.Binary",
"BinaryTypeProperty": "AQIDBAU=",
"Int64TypeProperty@odata.type": "Edm.Int64",
"Int64TypeProperty": "20",
- "DoubleTypeProperty": 20.0,
- "IntTypeProperty": 20
+ "DoubleTypeProperty": 20,
+ "IntTypeProperty": 20,
+ "PartitionKey": "somPartition",
+ "RowKey": "20",
+ "Timestamp@odata.type": "Edm.DateTime",
+ "Timestamp": "2020-07-17T20:40:27.1280136Z"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablea1nxjuh6\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablea1nxjuh6\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-238584424251604a9b33194ab2cb8165-f6d4c325185a844b-00",
+ "traceparent": "00-5a49ee081a7cb3489504814a9bd2fa88-739446b4afffef4c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1ca30a5b5d8250ef70e545ec369c45f9",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:27 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:18 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "1ca30a5b5d8250ef70e545ec369c45f9",
- "x-ms-request-id": "20754348-b002-001b-0f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:40:27 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "1ca30a5b-5d82-50ef-70e5-45ec369c45f9"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "2029280009",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableComplexFilter.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableComplexFilter.json
index 01818fc7f517..f257fbb328a9 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableComplexFilter.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableComplexFilter.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9b7febc4b431ac4b92dfe2a12d438058-9bc0fbe064a8f043-00",
+ "traceparent": "00-5443989e8a17974394f87de2efe01951-bc5da8fcd8fb2f4f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ed3179f2c02d26f302977ca0e66d72c6",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:00 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:09 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:59 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:08 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable46nmomqr\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ed3179f2c02d26f302977ca0e66d72c6",
- "x-ms-request-id": "20753123-b002-001b-1a21-5aea7a000000",
+ "x-ms-request-id": "9b331ce7-4002-002c-5286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable46nmomqr?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6d3e11d5f886ac4f8a8f41074984bfee-b6a5df26eca8924f-00",
+ "traceparent": "00-157867d9d1ce8847900d8c766063fdfb-602de3d7fb79244e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9e45e672b79a69403a2affeb5c30a38f",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:00 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:09 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -130,8 +132,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:59 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A00.033324Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:08 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A09.4641849Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable46nmomqr(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -140,19 +142,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "9e45e672b79a69403a2affeb5c30a38f",
- "x-ms-request-id": "20753131-b002-001b-2721-5aea7a000000",
+ "x-ms-request-id": "9b331cf3-4002-002c-5d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable46nmomqr/@Element",
"odata.type": "chrissscratch.testtable46nmomqr",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable46nmomqr(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A00.033324Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A09.4641849Z\u0027\u0022",
"odata.editLink": "testtable46nmomqr(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:00.033324Z",
+ "Timestamp": "2020-07-17T22:09:09.4641849Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -198,17 +200,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable46nmomqr?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8e04c158df2ce0409847c43844aaf1d4-d64fbc68402ccc42-00",
+ "traceparent": "00-6f32847e2cb8b14da3f5ef1a48def46c-0e0e43842bc38341-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6f13650205c0015bc26994f3bdba22b2",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:00 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:09 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -279,8 +282,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:59 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A00.0773609Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:08 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A09.5072209Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable46nmomqr(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -289,19 +292,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "6f13650205c0015bc26994f3bdba22b2",
- "x-ms-request-id": "2075313d-b002-001b-3221-5aea7a000000",
+ "x-ms-request-id": "9b331cf9-4002-002c-6386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable46nmomqr/@Element",
"odata.type": "chrissscratch.testtable46nmomqr",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable46nmomqr(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A00.0773609Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A09.5072209Z\u0027\u0022",
"odata.editLink": "testtable46nmomqr(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:00.0773609Z",
+ "Timestamp": "2020-07-17T22:09:09.5072209Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -347,17 +350,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable46nmomqr?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1795",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-dd5e691800920348998ed372231896eb-7ed4255122996144-00",
+ "traceparent": "00-36670eff0fa75641a6f4c180200d354c-4dc5b862ee45094d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "49930ccfd0893ab139c7b203c107c9d2",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:00 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:09 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -428,8 +432,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:59 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A00.1223983Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:08 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A09.553259Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable46nmomqr(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -438,19 +442,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "49930ccfd0893ab139c7b203c107c9d2",
- "x-ms-request-id": "20753149-b002-001b-3e21-5aea7a000000",
+ "x-ms-request-id": "9b331d00-4002-002c-6a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable46nmomqr/@Element",
"odata.type": "chrissscratch.testtable46nmomqr",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable46nmomqr(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A00.1223983Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A09.553259Z\u0027\u0022",
"odata.editLink": "testtable46nmomqr(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:00.1223983Z",
+ "Timestamp": "2020-07-17T22:09:09.553259Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -496,17 +500,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable46nmomqr?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6ab92c80875eeb458e16fa080e9847b9-5a73bbc1b296cc4f-00",
+ "traceparent": "00-729287ab5c8a5e4da0b0e6f6722ef9be-b5e3e835ca7f4f42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "819dedf3035a6d068a44db30234dab80",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:00 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:09 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -577,8 +582,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:59 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A00.1694374Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:08 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A09.595293Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable46nmomqr(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -587,19 +592,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "819dedf3035a6d068a44db30234dab80",
- "x-ms-request-id": "20753156-b002-001b-4b21-5aea7a000000",
+ "x-ms-request-id": "9b331d08-4002-002c-7186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable46nmomqr/@Element",
"odata.type": "chrissscratch.testtable46nmomqr",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable46nmomqr(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A00.1694374Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A09.595293Z\u0027\u0022",
"odata.editLink": "testtable46nmomqr(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:00.1694374Z",
+ "Timestamp": "2020-07-17T22:09:09.595293Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -645,14 +650,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable46nmomqr()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28%28%28RowKey%20eq%20%270004%27%29%20and%20%28Int32%20eq%204%29%29%20or%20%28%28Int32%20eq%202%29%20and%20%28%28String%20eq%20%27wrong%20string%27%29%20or%20%28Bool%20eq%20true%29%29%29%29%20or%20%28LongPrimitiveN%20eq%202147483697L%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4f1c4c085a9c3105b4d836f8535840bb",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:00 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:09 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -661,7 +667,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:56:59 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:08 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -669,7 +675,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "4f1c4c085a9c3105b4d836f8535840bb",
- "x-ms-request-id": "20753163-b002-001b-5821-5aea7a000000",
+ "x-ms-request-id": "9b331d13-4002-002c-7c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -678,12 +684,12 @@
{
"odata.type": "chrissscratch.testtable46nmomqr",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable46nmomqr(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A00.0773609Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A09.5072209Z\u0027\u0022",
"odata.editLink": "testtable46nmomqr(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:00.0773609Z",
+ "Timestamp": "2020-07-17T22:09:09.5072209Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -727,12 +733,12 @@
{
"odata.type": "chrissscratch.testtable46nmomqr",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable46nmomqr(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A00.1694374Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A09.595293Z\u0027\u0022",
"odata.editLink": "testtable46nmomqr(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:00.1694374Z",
+ "Timestamp": "2020-07-17T22:09:09.595293Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -782,13 +788,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-1e5bd449b5145d4dbd2fd0ce004a3c82-49e49fd1722d484f-00",
+ "traceparent": "00-24b69fab4afc4b4da65c56461e158028-8526b3b1b5cfb741-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d0ffc1a0a11ccc580626be45f48017eb",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:00 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:09 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -797,14 +803,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:00 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:08 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d0ffc1a0a11ccc580626be45f48017eb",
- "x-ms-request-id": "20753186-b002-001b-7921-5aea7a000000",
+ "x-ms-request-id": "9b331d2c-4002-002c-1486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableComplexFilterAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableComplexFilterAsync.json
index a2e4e351bb95..5ffa4c7dcfc4 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableComplexFilterAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableComplexFilterAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ad0c98250c658b4aab635e09ce2f7a2c-5d9aba7569f82447-00",
+ "traceparent": "00-2fafb081073ee443aabc1891ba950d81-6c21d6b5f04da84b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "525acc7ddb71d3994e788580d8021804",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:19 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:18 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:18 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableapgmeofn\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "525acc7ddb71d3994e788580d8021804",
- "x-ms-request-id": "20754358-b002-001b-1f21-5aea7a000000",
+ "x-ms-request-id": "9b3323d3-4002-002c-3c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableapgmeofn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d0d549cf813f9844b63a0e4488ea217f-2a51ce968aa8584c-00",
+ "traceparent": "00-3c3eb31926e8df46a3eef140800e1478-b6af3a9b696f024a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "bbade5fd715a3a227d3e732843d0834b",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:19 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -130,8 +132,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:18 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A19.2342637Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:18 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A19.0791885Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableapgmeofn(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -140,19 +142,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "bbade5fd715a3a227d3e732843d0834b",
- "x-ms-request-id": "20754360-b002-001b-2621-5aea7a000000",
+ "x-ms-request-id": "9b3323dd-4002-002c-4586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableapgmeofn/@Element",
"odata.type": "chrissscratch.testtableapgmeofn",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableapgmeofn(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A19.2342637Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A19.0791885Z\u0027\u0022",
"odata.editLink": "testtableapgmeofn(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:19.2342637Z",
+ "Timestamp": "2020-07-17T22:09:19.0791885Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -198,17 +200,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableapgmeofn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-eb1c6d60598ab3448a980c837e9f4ab8-88323979b2802a4d-00",
+ "traceparent": "00-d7329c584f39fc46b9f0f5c941b775da-cbb22a88aad5594e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "68857ff796f8f657cffc80fa03b89eca",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:19 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -279,8 +282,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:19 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A19.2813036Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:18 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A19.1262281Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableapgmeofn(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -289,19 +292,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "68857ff796f8f657cffc80fa03b89eca",
- "x-ms-request-id": "20754369-b002-001b-2f21-5aea7a000000",
+ "x-ms-request-id": "9b3323e6-4002-002c-4d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableapgmeofn/@Element",
"odata.type": "chrissscratch.testtableapgmeofn",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableapgmeofn(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A19.2813036Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A19.1262281Z\u0027\u0022",
"odata.editLink": "testtableapgmeofn(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:19.2813036Z",
+ "Timestamp": "2020-07-17T22:09:19.1262281Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -347,17 +350,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableapgmeofn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1795",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9fce18cb37fb904cb293fe8ceae62e35-9c0dec83c532e944-00",
+ "traceparent": "00-bc28e61bdce81b489bdcf200b22c9d72-bf51ab64d0e5ae4b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "05e9c8e5d62b0c2eaa20d53367718f7d",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:19 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -428,8 +432,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:19 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A19.3243385Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:18 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A19.178273Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableapgmeofn(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -438,19 +442,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "05e9c8e5d62b0c2eaa20d53367718f7d",
- "x-ms-request-id": "20754374-b002-001b-3a21-5aea7a000000",
+ "x-ms-request-id": "9b3323ed-4002-002c-5486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableapgmeofn/@Element",
"odata.type": "chrissscratch.testtableapgmeofn",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableapgmeofn(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A19.3243385Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A19.178273Z\u0027\u0022",
"odata.editLink": "testtableapgmeofn(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:19.3243385Z",
+ "Timestamp": "2020-07-17T22:09:19.178273Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -496,17 +500,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableapgmeofn?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-536dfcbb429c894e8468074dde882dce-546b0700d93a4c4a-00",
+ "traceparent": "00-b57dd95a0195a346bae03e379b57339b-dd6f38a11bdb5e44-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "59893af5af7c670b8db7ec5df12736c5",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:19 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -577,8 +582,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:19 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A19.3693759Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:18 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A19.2283134Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableapgmeofn(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -587,19 +592,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "59893af5af7c670b8db7ec5df12736c5",
- "x-ms-request-id": "20754379-b002-001b-3f21-5aea7a000000",
+ "x-ms-request-id": "9b3323f3-4002-002c-5a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableapgmeofn/@Element",
"odata.type": "chrissscratch.testtableapgmeofn",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableapgmeofn(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A19.3693759Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A19.2283134Z\u0027\u0022",
"odata.editLink": "testtableapgmeofn(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:19.3693759Z",
+ "Timestamp": "2020-07-17T22:09:19.2283134Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -645,14 +650,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableapgmeofn()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28%28%28RowKey%20eq%20%270004%27%29%20and%20%28Int32%20eq%204%29%29%20or%20%28%28Int32%20eq%202%29%20and%20%28%28String%20eq%20%27wrong%20string%27%29%20or%20%28Bool%20eq%20true%29%29%29%29%20or%20%28LongPrimitiveN%20eq%202147483697L%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7a42a8a07de7201f5079bed8c0248e5e",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:19 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -661,7 +667,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:19 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:18 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -669,7 +675,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "7a42a8a07de7201f5079bed8c0248e5e",
- "x-ms-request-id": "2075438a-b002-001b-5021-5aea7a000000",
+ "x-ms-request-id": "9b3323fc-4002-002c-6386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -678,12 +684,12 @@
{
"odata.type": "chrissscratch.testtableapgmeofn",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableapgmeofn(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A19.2813036Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A19.1262281Z\u0027\u0022",
"odata.editLink": "testtableapgmeofn(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:19.2813036Z",
+ "Timestamp": "2020-07-17T22:09:19.1262281Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -727,12 +733,12 @@
{
"odata.type": "chrissscratch.testtableapgmeofn",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableapgmeofn(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A19.3693759Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A19.2283134Z\u0027\u0022",
"odata.editLink": "testtableapgmeofn(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:19.3693759Z",
+ "Timestamp": "2020-07-17T22:09:19.2283134Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -782,13 +788,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-624fe979f0946c42b8258b86bf28c33d-8868a9befd0eaa43-00",
+ "traceparent": "00-f8467d746a9d7f4184a4954d4dc615db-c14c3ba4435f7e41-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c905026d452e354ebd817774ead11a82",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:19 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -797,14 +803,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:19 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:18 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "c905026d452e354ebd817774ead11a82",
- "x-ms-request-id": "207543a0-b002-001b-6621-5aea7a000000",
+ "x-ms-request-id": "9b332408-4002-002c-6e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableComplexFilterWithCreateFilter.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableComplexFilterWithCreateFilter.json
index 72696f4e2c7d..129b62c1792f 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableComplexFilterWithCreateFilter.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableComplexFilterWithCreateFilter.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-0c35c46eb1bbec49806b3983400267d0-f4dc70e66b260c45-00",
+ "traceparent": "00-b8c25371abb9a142b5b4300bddec5835-14da0624a65f8d43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7445822f96affd6e54e045a29ffe04c1",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:00 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:09 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:00 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:08 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablemwd6i22a\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "7445822f96affd6e54e045a29ffe04c1",
- "x-ms-request-id": "20753191-b002-001b-0421-5aea7a000000",
+ "x-ms-request-id": "9b331d37-4002-002c-1c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablemwd6i22a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-3c26ed9ac163bc4aabbf819a117ae23f-b2dcf025a1c8f54d-00",
+ "traceparent": "00-c69b753edcf49d4b8386c41e89310742-040e3200ca38044c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b61fe6528503074e5048e12dde3f96e2",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:00 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:09 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -130,8 +132,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:00 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A00.4526721Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:09 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A09.885536Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablemwd6i22a(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -140,19 +142,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "b61fe6528503074e5048e12dde3f96e2",
- "x-ms-request-id": "207531a0-b002-001b-1021-5aea7a000000",
+ "x-ms-request-id": "9b331d43-4002-002c-2786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablemwd6i22a/@Element",
"odata.type": "chrissscratch.testtablemwd6i22a",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablemwd6i22a(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A00.4526721Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A09.885536Z\u0027\u0022",
"odata.editLink": "testtablemwd6i22a(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:00.4526721Z",
+ "Timestamp": "2020-07-17T22:09:09.885536Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -198,17 +200,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablemwd6i22a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-dc951b4cd4d5ca4bb9b757a1f16db64a-ec13693bef52eb43-00",
+ "traceparent": "00-b7b6b73762840246822fac60ee2fc6d9-706623d4c3ecb54d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8013d5c58590ebad33ff543789f9595f",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:00 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:10 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -279,8 +282,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:00 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A00.4997115Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:09 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A09.930575Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablemwd6i22a(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -289,19 +292,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "8013d5c58590ebad33ff543789f9595f",
- "x-ms-request-id": "207531ac-b002-001b-1c21-5aea7a000000",
+ "x-ms-request-id": "9b331d4b-4002-002c-2f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablemwd6i22a/@Element",
"odata.type": "chrissscratch.testtablemwd6i22a",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablemwd6i22a(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A00.4997115Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A09.930575Z\u0027\u0022",
"odata.editLink": "testtablemwd6i22a(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:00.4997115Z",
+ "Timestamp": "2020-07-17T22:09:09.930575Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -347,17 +350,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablemwd6i22a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1795",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a1615d712cc65e44966a7821434a078a-b1fe23a0855d634b-00",
+ "traceparent": "00-35cf6e0444ecb04ab19781eca8b050c0-3bfaf2b155cae64c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4d31e777e4a6a98b343d2367b4411f14",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:00 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:10 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -428,8 +432,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:00 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A00.5507539Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:09 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A09.9756123Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablemwd6i22a(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -438,19 +442,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "4d31e777e4a6a98b343d2367b4411f14",
- "x-ms-request-id": "207531bf-b002-001b-2d21-5aea7a000000",
+ "x-ms-request-id": "9b331d55-4002-002c-3986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablemwd6i22a/@Element",
"odata.type": "chrissscratch.testtablemwd6i22a",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablemwd6i22a(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A00.5507539Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A09.9756123Z\u0027\u0022",
"odata.editLink": "testtablemwd6i22a(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:00.5507539Z",
+ "Timestamp": "2020-07-17T22:09:09.9756123Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -496,17 +500,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablemwd6i22a?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9b066932499e764c9ba2fe270da2338c-7a89d89ebf8e8e45-00",
+ "traceparent": "00-cb87e2a761ea314e8ab921098579b6f3-b5363dacebbc1e44-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "cadd624a84eacc303934830330167d57",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:00 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:10 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -577,8 +582,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:00 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A00.5917876Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:09 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A10.0216504Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablemwd6i22a(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -587,19 +592,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "cadd624a84eacc303934830330167d57",
- "x-ms-request-id": "207531cb-b002-001b-3921-5aea7a000000",
+ "x-ms-request-id": "9b331d5c-4002-002c-4086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablemwd6i22a/@Element",
"odata.type": "chrissscratch.testtablemwd6i22a",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablemwd6i22a(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A00.5917876Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A10.0216504Z\u0027\u0022",
"odata.editLink": "testtablemwd6i22a(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:00.5917876Z",
+ "Timestamp": "2020-07-17T22:09:10.0216504Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -645,14 +650,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablemwd6i22a()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28%28%28RowKey%20eq%20%270004%27%29%20and%20%28Int32%20eq%204%29%29%20or%20%28%28Int32%20eq%202%29%20and%20%28%28String%20eq%20%27wrong%20string%27%29%20or%20%28Bool%20eq%20true%29%29%29%29%20or%20%28LongPrimitiveN%20eq%202147483697L%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f6b681ee490ee03c49694b52614637f2",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:00 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:10 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -661,7 +667,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:00 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:09 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -669,7 +675,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f6b681ee490ee03c49694b52614637f2",
- "x-ms-request-id": "207531d8-b002-001b-4621-5aea7a000000",
+ "x-ms-request-id": "9b331d69-4002-002c-4b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -678,12 +684,12 @@
{
"odata.type": "chrissscratch.testtablemwd6i22a",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablemwd6i22a(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A00.4997115Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A09.930575Z\u0027\u0022",
"odata.editLink": "testtablemwd6i22a(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:00.4997115Z",
+ "Timestamp": "2020-07-17T22:09:09.930575Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -727,12 +733,12 @@
{
"odata.type": "chrissscratch.testtablemwd6i22a",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablemwd6i22a(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A00.5917876Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A10.0216504Z\u0027\u0022",
"odata.editLink": "testtablemwd6i22a(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:00.5917876Z",
+ "Timestamp": "2020-07-17T22:09:10.0216504Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -782,13 +788,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-1ae7a5bd97fdbc4d90317ec1fdfec556-034c2ac205919f46-00",
+ "traceparent": "00-839972843c682746b119ffa0bbcd4b37-69a44b89e30dd34a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "27ed40df8f1cf375b76414716188791d",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:01 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:10 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -797,14 +803,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:00 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:09 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "27ed40df8f1cf375b76414716188791d",
- "x-ms-request-id": "207531f8-b002-001b-6521-5aea7a000000",
+ "x-ms-request-id": "9b331d7f-4002-002c-5f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableComplexFilterWithCreateFilterAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableComplexFilterWithCreateFilterAsync.json
index d290e33379f2..0c1a3b363f9c 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableComplexFilterWithCreateFilterAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableComplexFilterWithCreateFilterAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8b70506d60a0d244ad5a5909087300db-e1b45214215d9644-00",
+ "traceparent": "00-7ad980d738ec664593638d961fb3b9cb-1cbcb6409d55034c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5a133e8c0f8029be039fc285b2930628",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:19 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:19 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:18 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableeyq89ygj\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "5a133e8c0f8029be039fc285b2930628",
- "x-ms-request-id": "207543aa-b002-001b-7021-5aea7a000000",
+ "x-ms-request-id": "9b332410-4002-002c-7586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableeyq89ygj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c6c6a761fc969343a7e24bee6812f1f6-c3620878444c0d48-00",
+ "traceparent": "00-0f6c6f05ecbe414c9f7c63e1884bafeb-d522974cc836c743-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8abdb92af4c2dc8ea275d9f768636d20",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:19 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -130,8 +132,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:19 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A19.626589Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:18 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A19.4625085Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableeyq89ygj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -140,19 +142,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "8abdb92af4c2dc8ea275d9f768636d20",
- "x-ms-request-id": "207543b2-b002-001b-7721-5aea7a000000",
+ "x-ms-request-id": "9b332417-4002-002c-7b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableeyq89ygj/@Element",
"odata.type": "chrissscratch.testtableeyq89ygj",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableeyq89ygj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A19.626589Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A19.4625085Z\u0027\u0022",
"odata.editLink": "testtableeyq89ygj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:19.626589Z",
+ "Timestamp": "2020-07-17T22:09:19.4625085Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -198,17 +200,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableeyq89ygj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-bc008716873e7f449101ae0da22014d8-74542dbbf1951743-00",
+ "traceparent": "00-635a6ee3c059c942a572f0c1c20c099c-c42a86f26f1d2042-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "004b7dbf3ef025cdb2eeeda6b04795ae",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:19 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:19 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -279,8 +282,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:19 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A19.6706259Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:18 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A19.5065447Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableeyq89ygj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -289,19 +292,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "004b7dbf3ef025cdb2eeeda6b04795ae",
- "x-ms-request-id": "207543be-b002-001b-0221-5aea7a000000",
+ "x-ms-request-id": "9b332420-4002-002c-0486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableeyq89ygj/@Element",
"odata.type": "chrissscratch.testtableeyq89ygj",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableeyq89ygj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A19.6706259Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A19.5065447Z\u0027\u0022",
"odata.editLink": "testtableeyq89ygj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:19.6706259Z",
+ "Timestamp": "2020-07-17T22:09:19.5065447Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -347,17 +350,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableeyq89ygj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1795",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6d913a7fc2144e4c9f8321361755fa32-5c647b1dbf660f4e-00",
+ "traceparent": "00-63cc5987762f8b4e95aaebaaf0e3b95e-3ec53fa469e2c146-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c540d3a282c698d3af37b70b36c7c09f",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:19 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -428,8 +432,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:19 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A19.7156629Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:18 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A19.5525825Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableeyq89ygj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -438,19 +442,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "c540d3a282c698d3af37b70b36c7c09f",
- "x-ms-request-id": "207543cc-b002-001b-0f21-5aea7a000000",
+ "x-ms-request-id": "9b33242c-4002-002c-1086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableeyq89ygj/@Element",
"odata.type": "chrissscratch.testtableeyq89ygj",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableeyq89ygj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A19.7156629Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A19.5525825Z\u0027\u0022",
"odata.editLink": "testtableeyq89ygj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:19.7156629Z",
+ "Timestamp": "2020-07-17T22:09:19.5525825Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -496,17 +500,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableeyq89ygj?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-bafa7da7c49f134eb9a06d2b2a7890ae-17766794080c1741-00",
+ "traceparent": "00-e1714fd81ea5514f9b58cdbdda3db721-cc96550866534342-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "34c5a1310548ec38ec97d7d307e82c5a",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:19 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -577,8 +582,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:19 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A19.7607003Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:18 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A19.59762Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableeyq89ygj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -587,19 +592,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "34c5a1310548ec38ec97d7d307e82c5a",
- "x-ms-request-id": "207543d9-b002-001b-1c21-5aea7a000000",
+ "x-ms-request-id": "9b332437-4002-002c-1b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableeyq89ygj/@Element",
"odata.type": "chrissscratch.testtableeyq89ygj",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableeyq89ygj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A19.7607003Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A19.59762Z\u0027\u0022",
"odata.editLink": "testtableeyq89ygj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:19.7607003Z",
+ "Timestamp": "2020-07-17T22:09:19.59762Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -645,14 +650,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableeyq89ygj()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28%28%28RowKey%20eq%20%270004%27%29%20and%20%28Int32%20eq%204%29%29%20or%20%28%28Int32%20eq%202%29%20and%20%28%28String%20eq%20%27wrong%20string%27%29%20or%20%28Bool%20eq%20true%29%29%29%29%20or%20%28LongPrimitiveN%20eq%202147483697L%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "95552adfa8233c5aaab351b986c2efeb",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:19 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -661,7 +667,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:19 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:18 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -669,7 +675,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "95552adfa8233c5aaab351b986c2efeb",
- "x-ms-request-id": "207543e4-b002-001b-2721-5aea7a000000",
+ "x-ms-request-id": "9b332445-4002-002c-2986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -678,12 +684,12 @@
{
"odata.type": "chrissscratch.testtableeyq89ygj",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableeyq89ygj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A19.6706259Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A19.5065447Z\u0027\u0022",
"odata.editLink": "testtableeyq89ygj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:19.6706259Z",
+ "Timestamp": "2020-07-17T22:09:19.5065447Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -727,12 +733,12 @@
{
"odata.type": "chrissscratch.testtableeyq89ygj",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableeyq89ygj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A19.7607003Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A19.59762Z\u0027\u0022",
"odata.editLink": "testtableeyq89ygj(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:19.7607003Z",
+ "Timestamp": "2020-07-17T22:09:19.59762Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -782,13 +788,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-c562cdd8d233f54484f44c5af01b8078-5e3881e324998b40-00",
+ "traceparent": "00-abb33bb3ebd683428d5da932cc1fc2c8-a990463d6d71b54b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0e744e2e60819c669b54d92faaff90c6",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:19 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -797,14 +803,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:19 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:18 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0e744e2e60819c669b54d92faaff90c6",
- "x-ms-request-id": "207543fa-b002-001b-3d21-5aea7a000000",
+ "x-ms-request-id": "9b332453-4002-002c-3786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableDynamicTableEntityQuery.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableDynamicTableEntityQuery.json
index 2539ee7c8249..25bcc75625dd 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableDynamicTableEntityQuery.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableDynamicTableEntityQuery.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-49f2648913e1464c9dc6903a14ada1df-f6a0e438965f114b-00",
+ "traceparent": "00-524f17bcff23ca4b95e14ef0dd6fe07f-46d692b03ea0d441-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c87dfa0dcdaa30cad7727333a6a7ce73",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:01 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:10 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:00 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:09 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableo4pf1bet\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "c87dfa0dcdaa30cad7727333a6a7ce73",
- "x-ms-request-id": "20753205-b002-001b-7121-5aea7a000000",
+ "x-ms-request-id": "9b331d8a-4002-002c-6a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableo4pf1bet?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9fc02401b3b81943bd7b166fc12a19ab-2688f1d8f450404b-00",
+ "traceparent": "00-d8588be27b141f40acf9034bbf168bd1-eea1f74fbf2cb44d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d016850273325b290b0fd6e238b721d6",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:01 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:10 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -130,8 +132,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:00 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A00.8690181Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:09 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A10.2938788Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableo4pf1bet(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -140,19 +142,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d016850273325b290b0fd6e238b721d6",
- "x-ms-request-id": "20753213-b002-001b-7d21-5aea7a000000",
+ "x-ms-request-id": "9b331d98-4002-002c-7586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableo4pf1bet/@Element",
"odata.type": "chrissscratch.testtableo4pf1bet",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableo4pf1bet(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A00.8690181Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A10.2938788Z\u0027\u0022",
"odata.editLink": "testtableo4pf1bet(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:00.8690181Z",
+ "Timestamp": "2020-07-17T22:09:10.2938788Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -198,17 +200,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableo4pf1bet?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e73faa14d7ef034eb79154daeed66e13-73b4b535e9d85b42-00",
+ "traceparent": "00-46ae8268ac0e8242aba4bd931730b54e-79c0668d5660ee4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "71586bfc8ec2d36cc3cf3b37b41dedb8",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:01 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:10 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -279,8 +282,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:00 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A00.9230647Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:09 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A10.3399169Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableo4pf1bet(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -289,19 +292,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "71586bfc8ec2d36cc3cf3b37b41dedb8",
- "x-ms-request-id": "2075321e-b002-001b-0821-5aea7a000000",
+ "x-ms-request-id": "9b331da1-4002-002c-7e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableo4pf1bet/@Element",
"odata.type": "chrissscratch.testtableo4pf1bet",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableo4pf1bet(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A00.9230647Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A10.3399169Z\u0027\u0022",
"odata.editLink": "testtableo4pf1bet(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:00.9230647Z",
+ "Timestamp": "2020-07-17T22:09:10.3399169Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -347,14 +350,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableo4pf1bet()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28RowKey%20eq%20%270002%27%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "295d103bde899a94d021bd9af7e7f81f",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:01 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:10 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -363,7 +367,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:00 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:09 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -371,7 +375,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "295d103bde899a94d021bd9af7e7f81f",
- "x-ms-request-id": "20753224-b002-001b-0e21-5aea7a000000",
+ "x-ms-request-id": "9b331dac-4002-002c-0986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -380,12 +384,12 @@
{
"odata.type": "chrissscratch.testtableo4pf1bet",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableo4pf1bet(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A00.9230647Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A10.3399169Z\u0027\u0022",
"odata.editLink": "testtableo4pf1bet(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:00.9230647Z",
+ "Timestamp": "2020-07-17T22:09:10.3399169Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -435,13 +439,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-75ae55bdf36e1840af398591bf5dd7f0-83d47200be322041-00",
+ "traceparent": "00-1f07d0285eb1d845a054e0f371df2d18-c77704977f45384a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3a379d515c4f74b019430c6238f2a7ed",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:01 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:10 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -450,14 +454,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:00 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:09 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "3a379d515c4f74b019430c6238f2a7ed",
- "x-ms-request-id": "20753230-b002-001b-1821-5aea7a000000",
+ "x-ms-request-id": "9b331db5-4002-002c-1286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableDynamicTableEntityQueryAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableDynamicTableEntityQueryAsync.json
index eeed9e058be5..799e0b956ec7 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableDynamicTableEntityQueryAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableDynamicTableEntityQueryAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-3e24c5d695fcf54f8ab42a3bda34f897-b8e7b81f061d5d44-00",
+ "traceparent": "00-3fbde2c88fd60c4596a930437ddde5cc-3386cbae44a7eb47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d60b6ab4ff108165c0befec495bcbd9b",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:19 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:19 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:18 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablega8aoaum\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d60b6ab4ff108165c0befec495bcbd9b",
- "x-ms-request-id": "20754402-b002-001b-4521-5aea7a000000",
+ "x-ms-request-id": "9b332459-4002-002c-3d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablega8aoaum?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1fc2cbcec28b9d4e821f3c2b27e248e6-2887dc3a9e286b4e-00",
+ "traceparent": "00-d9d14574719fd740984eb926ce63251d-a2a6d9441608e645-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "593a9fecac8f45829df8fd57c1986957",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:19 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -130,8 +132,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:19 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A20.042935Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:18 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A19.8468272Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablega8aoaum(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -140,19 +142,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "593a9fecac8f45829df8fd57c1986957",
- "x-ms-request-id": "20754408-b002-001b-4a21-5aea7a000000",
+ "x-ms-request-id": "9b332462-4002-002c-4586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablega8aoaum/@Element",
"odata.type": "chrissscratch.testtablega8aoaum",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablega8aoaum(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A20.042935Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A19.8468272Z\u0027\u0022",
"odata.editLink": "testtablega8aoaum(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:20.042935Z",
+ "Timestamp": "2020-07-17T22:09:19.8468272Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -198,17 +200,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablega8aoaum?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8291f04a0af10e42938c33e997e250f2-60ba59dc7f04514b-00",
+ "traceparent": "00-f3f723876c96814c9fdfd3d23ecf76c4-101b433427ef684b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "77676ab031c0bba7aa65a0ff7182a926",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:19 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -279,8 +282,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:19 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A20.0899745Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:19 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A19.8938663Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablega8aoaum(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -289,19 +292,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "77676ab031c0bba7aa65a0ff7182a926",
- "x-ms-request-id": "2075440f-b002-001b-5121-5aea7a000000",
+ "x-ms-request-id": "9b332469-4002-002c-4c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablega8aoaum/@Element",
"odata.type": "chrissscratch.testtablega8aoaum",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablega8aoaum(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A20.0899745Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A19.8938663Z\u0027\u0022",
"odata.editLink": "testtablega8aoaum(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:20.0899745Z",
+ "Timestamp": "2020-07-17T22:09:19.8938663Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -347,14 +350,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablega8aoaum()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28RowKey%20eq%20%270002%27%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "80b317fab167072fe8c53817010ebf28",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:20 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -363,7 +367,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:19 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:19 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -371,7 +375,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "80b317fab167072fe8c53817010ebf28",
- "x-ms-request-id": "2075441f-b002-001b-6021-5aea7a000000",
+ "x-ms-request-id": "9b33247d-4002-002c-6086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -380,12 +384,12 @@
{
"odata.type": "chrissscratch.testtablega8aoaum",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablega8aoaum(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A20.0899745Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A19.8938663Z\u0027\u0022",
"odata.editLink": "testtablega8aoaum(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:20.0899745Z",
+ "Timestamp": "2020-07-17T22:09:19.8938663Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -435,13 +439,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-cc19373fb0cc1940b6da1a75dad3dde5-ea0282b232c5e44c-00",
+ "traceparent": "00-76329edfa45bc84b9abd96636f15966a-ec93dc515fa3a349-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2a13a6554554bbdaf77eae290b82d41a",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:20 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -450,14 +454,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:19 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:19 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "2a13a6554554bbdaf77eae290b82d41a",
- "x-ms-request-id": "20754428-b002-001b-6621-5aea7a000000",
+ "x-ms-request-id": "9b33248b-4002-002c-6e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableEnumerateTwice.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableEnumerateTwice.json
index dabb092d196a..3e74b81c0338 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableEnumerateTwice.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableEnumerateTwice.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f5514316b2cd5a49b35b68c8c6fd513f-cb50b54fceca6c4c-00",
+ "traceparent": "00-18b45cc8841752498a873dfba4d5d327-2261ed105c07be44-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "59ced60f9e08991085ee4abbb7ee0c0e",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:01 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:10 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:00 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:09 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablej3v1s3en\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "59ced60f9e08991085ee4abbb7ee0c0e",
- "x-ms-request-id": "20753249-b002-001b-3121-5aea7a000000",
+ "x-ms-request-id": "9b331dc0-4002-002c-1d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablej3v1s3en?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-43cc79a41dfb054caf6b68a7de944819-07b55a0722660a45-00",
+ "traceparent": "00-e8c47df00eae7a49a334509c206ba5a7-b61a03da2b8bb646-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d72d29df379d5fcf7019bfb885e8d801",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:01 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:10 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -130,8 +132,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:00 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A01.1392424Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:09 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A10.5420873Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablej3v1s3en(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -140,19 +142,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d72d29df379d5fcf7019bfb885e8d801",
- "x-ms-request-id": "20753254-b002-001b-3b21-5aea7a000000",
+ "x-ms-request-id": "9b331dcc-4002-002c-2786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablej3v1s3en/@Element",
"odata.type": "chrissscratch.testtablej3v1s3en",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej3v1s3en(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A01.1392424Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A10.5420873Z\u0027\u0022",
"odata.editLink": "testtablej3v1s3en(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:01.1392424Z",
+ "Timestamp": "2020-07-17T22:09:10.5420873Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -198,17 +200,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablej3v1s3en?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-b1f7c82d4c0e1a4db2d5bb218e3e61fa-30a17d32f76ca242-00",
+ "traceparent": "00-4b5a43c4445c7a4f97022806608e05be-259601aab4aa054b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "889a37e93cd09a40178ac069556663d8",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:01 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:10 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -279,8 +282,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:00 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A01.1802765Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:09 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A10.586123Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablej3v1s3en(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -289,19 +292,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "889a37e93cd09a40178ac069556663d8",
- "x-ms-request-id": "2075325a-b002-001b-4021-5aea7a000000",
+ "x-ms-request-id": "9b331dd4-4002-002c-2f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablej3v1s3en/@Element",
"odata.type": "chrissscratch.testtablej3v1s3en",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej3v1s3en(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A01.1802765Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A10.586123Z\u0027\u0022",
"odata.editLink": "testtablej3v1s3en(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:01.1802765Z",
+ "Timestamp": "2020-07-17T22:09:10.586123Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -347,14 +350,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablej3v1s3en()?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3a3199d53b46d7b4066fe9eedf58139c",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:01 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:10 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -363,7 +367,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:00 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:09 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -371,7 +375,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "3a3199d53b46d7b4066fe9eedf58139c",
- "x-ms-request-id": "20753263-b002-001b-4921-5aea7a000000",
+ "x-ms-request-id": "9b331ddf-4002-002c-3986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -380,12 +384,12 @@
{
"odata.type": "chrissscratch.testtablej3v1s3en",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej3v1s3en(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A01.1392424Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A10.5420873Z\u0027\u0022",
"odata.editLink": "testtablej3v1s3en(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:01.1392424Z",
+ "Timestamp": "2020-07-17T22:09:10.5420873Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -429,12 +433,12 @@
{
"odata.type": "chrissscratch.testtablej3v1s3en",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablej3v1s3en(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A01.1802765Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A10.586123Z\u0027\u0022",
"odata.editLink": "testtablej3v1s3en(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:01.1802765Z",
+ "Timestamp": "2020-07-17T22:09:10.586123Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -484,13 +488,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-8a7c0d32d12c794db00f8a846aee6f03-21c69ceb548c5b4c-00",
+ "traceparent": "00-c3c2ed2861dbcb4e9b53d31b175dbf50-53912873d37f544b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "80d248158354a33ee893bf1377660a09",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:01 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:10 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -499,14 +503,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:01 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:09 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "80d248158354a33ee893bf1377660a09",
- "x-ms-request-id": "2075327e-b002-001b-6421-5aea7a000000",
+ "x-ms-request-id": "9b331dec-4002-002c-4686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableEnumerateTwiceAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableEnumerateTwiceAsync.json
index 24883546758d..b070128e5672 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableEnumerateTwiceAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableEnumerateTwiceAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-10e0ecca95b3364fb9bd3901c04bda4d-9f80f34ca11e284f-00",
+ "traceparent": "00-e7e3eeb4ee7f444fbc321adc81df2e42-1a8b5db09d5e0542-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0bda6dedb0a412482bc5c9ca9f206ddd",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:20 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:19 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:19 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablefs0u2grd\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0bda6dedb0a412482bc5c9ca9f206ddd",
- "x-ms-request-id": "2075442e-b002-001b-6a21-5aea7a000000",
+ "x-ms-request-id": "9b33249e-4002-002c-7f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablefs0u2grd?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d06c7c5fe5fddc46aa15bfd4124724c5-7d96dc11024f0947-00",
+ "traceparent": "00-1b9697833ba70c4e8f85de3466bcd870-d834fc9e059e7946-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b28da33e314990fc93b51e695648fb5f",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:20 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -130,8 +132,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:19 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A20.2691228Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:19 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A20.0790202Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablefs0u2grd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -140,19 +142,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "b28da33e314990fc93b51e695648fb5f",
- "x-ms-request-id": "2075443b-b002-001b-7421-5aea7a000000",
+ "x-ms-request-id": "9b3324ab-4002-002c-0b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablefs0u2grd/@Element",
"odata.type": "chrissscratch.testtablefs0u2grd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefs0u2grd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A20.2691228Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A20.0790202Z\u0027\u0022",
"odata.editLink": "testtablefs0u2grd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:20.2691228Z",
+ "Timestamp": "2020-07-17T22:09:20.0790202Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -198,17 +200,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablefs0u2grd?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e39ec1a6519ae94bab75e4b6a8f00218-497b894bd5ac7541-00",
+ "traceparent": "00-cb867784aa52eb4a9290701fed48efce-2c89d83acce2e747-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "907a08a8fc02bd66d9ed720be75ee029",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:20 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -279,8 +282,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:20 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A20.3111581Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:19 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A20.1270602Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablefs0u2grd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -289,19 +292,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "907a08a8fc02bd66d9ed720be75ee029",
- "x-ms-request-id": "2075443e-b002-001b-7721-5aea7a000000",
+ "x-ms-request-id": "9b3324c4-4002-002c-2386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablefs0u2grd/@Element",
"odata.type": "chrissscratch.testtablefs0u2grd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefs0u2grd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A20.3111581Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A20.1270602Z\u0027\u0022",
"odata.editLink": "testtablefs0u2grd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:20.3111581Z",
+ "Timestamp": "2020-07-17T22:09:20.1270602Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -347,14 +350,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablefs0u2grd()?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "56410074917cbbfb704a78ee91dfbce2",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:20 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -363,7 +367,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:20 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:19 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -371,7 +375,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "56410074917cbbfb704a78ee91dfbce2",
- "x-ms-request-id": "2075444a-b002-001b-7f21-5aea7a000000",
+ "x-ms-request-id": "9b3324da-4002-002c-3986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -380,12 +384,12 @@
{
"odata.type": "chrissscratch.testtablefs0u2grd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefs0u2grd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A20.2691228Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A20.0790202Z\u0027\u0022",
"odata.editLink": "testtablefs0u2grd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:20.2691228Z",
+ "Timestamp": "2020-07-17T22:09:20.0790202Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -429,12 +433,12 @@
{
"odata.type": "chrissscratch.testtablefs0u2grd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablefs0u2grd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A20.3111581Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A20.1270602Z\u0027\u0022",
"odata.editLink": "testtablefs0u2grd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:20.3111581Z",
+ "Timestamp": "2020-07-17T22:09:20.1270602Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -484,13 +488,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-06beec7a18e5f442a1522ad5a6f21ed9-5171ce517f6f2a49-00",
+ "traceparent": "00-e9e12f66c5da2145a1f84aa7a5e76f6c-c37bee2fc9edf648-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "962269c9dda541db3ccfd95cbef0a835",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:20 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -499,14 +503,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:20 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:19 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "962269c9dda541db3ccfd95cbef0a835",
- "x-ms-request-id": "2075445e-b002-001b-1021-5aea7a000000",
+ "x-ms-request-id": "9b3324fe-4002-002c-5c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableExecuteQueryDictionary.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableExecuteQueryDictionary.json
index 6e236f890b71..290b3e53f95e 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableExecuteQueryDictionary.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableExecuteQueryDictionary.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d3d2fb333ad5e0449037b633cb84c45b-33e7f1f80daa2746-00",
+ "traceparent": "00-b1e03be002d77c4bbb407dea1954a9b1-87f9038d11be594d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "15ffb0282939e1c56af08ba25f88218a",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:01 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:10 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:01 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:09 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable9gmkhjb7\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "15ffb0282939e1c56af08ba25f88218a",
- "x-ms-request-id": "20753285-b002-001b-6b21-5aea7a000000",
+ "x-ms-request-id": "9b331df3-4002-002c-4c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable9gmkhjb7?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-4145ffe338d8a14eb0095f12dd94f569-d15d3c5a3524234e-00",
+ "traceparent": "00-cd174ce009e7894fb6aac4da3664ca70-a7a6984b4630ca4c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "baeb8d3066f33709207c1c964072173c",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:01 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:10 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -85,8 +87,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:01 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A01.4404921Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:10 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A10.8523431Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable9gmkhjb7(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -95,19 +97,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "baeb8d3066f33709207c1c964072173c",
- "x-ms-request-id": "20753299-b002-001b-7c21-5aea7a000000",
+ "x-ms-request-id": "9b331dfd-4002-002c-5586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable9gmkhjb7/@Element",
"odata.type": "chrissscratch.testtable9gmkhjb7",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable9gmkhjb7(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A01.4404921Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A10.8523431Z\u0027\u0022",
"odata.editLink": "testtable9gmkhjb7(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:01.4404921Z",
+ "Timestamp": "2020-07-17T22:09:10.8523431Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:02:00Z",
@@ -126,17 +128,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable9gmkhjb7?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "615",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a16f91b70176d1418f2d567061a081c8-6cd2bc5ca498ed4b-00",
+ "traceparent": "00-93812680c6691e478fc6e05fbcdc9922-b55bc2137517544e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6989065ea2def50a261308456285ae30",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:01 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:10 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -162,8 +165,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:01 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A01.4845299Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:10 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A10.8983818Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable9gmkhjb7(PartitionKey=\u0027somPartition2\u0027,RowKey=\u002701\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -172,19 +175,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "6989065ea2def50a261308456285ae30",
- "x-ms-request-id": "207532a2-b002-001b-0521-5aea7a000000",
+ "x-ms-request-id": "9b331e01-4002-002c-5986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable9gmkhjb7/@Element",
"odata.type": "chrissscratch.testtable9gmkhjb7",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable9gmkhjb7(PartitionKey=\u0027somPartition2\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A01.4845299Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A10.8983818Z\u0027\u0022",
"odata.editLink": "testtable9gmkhjb7(PartitionKey=\u0027somPartition2\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition2",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:01.4845299Z",
+ "Timestamp": "2020-07-17T22:09:10.8983818Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:02:00Z",
@@ -203,14 +206,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable9gmkhjb7()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1818c39dd4eec254a7c8f4bc0d2ea0f8",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:01 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:11 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -219,7 +223,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:01 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:10 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -227,7 +231,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "1818c39dd4eec254a7c8f4bc0d2ea0f8",
- "x-ms-request-id": "207532b1-b002-001b-1321-5aea7a000000",
+ "x-ms-request-id": "9b331e09-4002-002c-6186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -236,12 +240,12 @@
{
"odata.type": "chrissscratch.testtable9gmkhjb7",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable9gmkhjb7(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A01.4404921Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A10.8523431Z\u0027\u0022",
"odata.editLink": "testtable9gmkhjb7(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:01.4404921Z",
+ "Timestamp": "2020-07-17T22:09:10.8523431Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:02:00Z",
@@ -264,13 +268,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-269f100b6791584c981251cf13d740e4-0314179abbd60945-00",
+ "traceparent": "00-afdc5095109411418cc76958534c2b53-da61a9440d52a544-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "59434ed9b8ff8dab83f594df5dc3d49b",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:01 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:11 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -279,14 +283,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:01 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:10 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "59434ed9b8ff8dab83f594df5dc3d49b",
- "x-ms-request-id": "207532c4-b002-001b-2521-5aea7a000000",
+ "x-ms-request-id": "9b331e0d-4002-002c-6586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableExecuteQueryDictionaryAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableExecuteQueryDictionaryAsync.json
index 3b18b79eb759..b6d24268cec4 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableExecuteQueryDictionaryAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableExecuteQueryDictionaryAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-02b5625faeef8643ae7d68d24110e190-b0734edbf888df41-00",
+ "traceparent": "00-ef6bcf496cccf04fb2dc3e0ea737eb41-39e02bc0a033484e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "aa3c50ce1e441003f96d97164735c4fe",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:20 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:20 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:19 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable3xpxt9c0\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "aa3c50ce1e441003f96d97164735c4fe",
- "x-ms-request-id": "2075446c-b002-001b-1c21-5aea7a000000",
+ "x-ms-request-id": "9b33250b-4002-002c-6786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable3xpxt9c0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "614",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e85d743c438f5d4aa54db42d4624a453-f83d81e922eae244-00",
+ "traceparent": "00-ed0369918d6ef14285d9f86a60da1d19-15b4e57ea16d784a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "73330f6ae9ab414cd53d792c0dd9ec06",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:20 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -85,8 +87,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:20 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A20.5823828Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:19 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A20.3962846Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable3xpxt9c0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -95,19 +97,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "73330f6ae9ab414cd53d792c0dd9ec06",
- "x-ms-request-id": "20754475-b002-001b-2421-5aea7a000000",
+ "x-ms-request-id": "9b332528-4002-002c-7f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3xpxt9c0/@Element",
"odata.type": "chrissscratch.testtable3xpxt9c0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3xpxt9c0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A20.5823828Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A20.3962846Z\u0027\u0022",
"odata.editLink": "testtable3xpxt9c0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:20.5823828Z",
+ "Timestamp": "2020-07-17T22:09:20.3962846Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:02:00Z",
@@ -126,17 +128,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable3xpxt9c0?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "615",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-98a04ca705a97c40ae8376aae9501075-68338aaedb16d146-00",
+ "traceparent": "00-bfb46465bdfdff4693e011d958c5321a-98cd5b1d4939c04d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "240a1951ea439abaa5ca4e9817b9b680",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:20 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -162,8 +165,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:20 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A20.6244173Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:19 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A20.4353164Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable3xpxt9c0(PartitionKey=\u0027somPartition2\u0027,RowKey=\u002701\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -172,19 +175,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "240a1951ea439abaa5ca4e9817b9b680",
- "x-ms-request-id": "20754482-b002-001b-3121-5aea7a000000",
+ "x-ms-request-id": "9b332539-4002-002c-0f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3xpxt9c0/@Element",
"odata.type": "chrissscratch.testtable3xpxt9c0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3xpxt9c0(PartitionKey=\u0027somPartition2\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A20.6244173Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A20.4353164Z\u0027\u0022",
"odata.editLink": "testtable3xpxt9c0(PartitionKey=\u0027somPartition2\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition2",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:20.6244173Z",
+ "Timestamp": "2020-07-17T22:09:20.4353164Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:02:00Z",
@@ -203,14 +206,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable3xpxt9c0()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "05536b25fb0fe58f04fbd406a5d60320",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:20 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:20 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -219,7 +223,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:20 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:19 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -227,7 +231,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "05536b25fb0fe58f04fbd406a5d60320",
- "x-ms-request-id": "2075448c-b002-001b-3921-5aea7a000000",
+ "x-ms-request-id": "9b33253e-4002-002c-1486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -236,12 +240,12 @@
{
"odata.type": "chrissscratch.testtable3xpxt9c0",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3xpxt9c0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A20.5823828Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A20.3962846Z\u0027\u0022",
"odata.editLink": "testtable3xpxt9c0(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:20.5823828Z",
+ "Timestamp": "2020-07-17T22:09:20.3962846Z",
"SomeStringProperty": "This is table entity number 01",
"SomeDateProperty@odata.type": "Edm.DateTime",
"SomeDateProperty": "2020-01-01T01:02:00Z",
@@ -264,13 +268,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-44c75d8076016b45b5aa2a003ac938a7-7e608b2b157a7b48-00",
+ "traceparent": "00-c3a6b538e3990148b1ea7457b13e9a30-bd3888fa0eade240-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2ec49180a02b7fba5598cde19ab3291c",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:20 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -279,14 +283,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:20 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:19 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "2ec49180a02b7fba5598cde19ab3291c",
- "x-ms-request-id": "20754491-b002-001b-3d21-5aea7a000000",
+ "x-ms-request-id": "9b332549-4002-002c-1f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableExecuteQueryGeneric.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableExecuteQueryGeneric.json
index 7334307801a2..45af0ce11945 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableExecuteQueryGeneric.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableExecuteQueryGeneric.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9dc30ed04978e04d96c2ab3741bbf689-0fcd33454023934f-00",
+ "traceparent": "00-bf1c6ebcf58a754d9041e799a487d342-44ccbd706b390f4d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1e259550f372c68249f366f2f47f4538",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:01 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:11 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:01 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:10 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable1oe6zcw8\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "1e259550f372c68249f366f2f47f4538",
- "x-ms-request-id": "207532d0-b002-001b-2f21-5aea7a000000",
+ "x-ms-request-id": "9b331e1a-4002-002c-6f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable1oe6zcw8?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-74670ccb395d1a429d6db886497d6714-1fdcaf76367a5445-00",
+ "traceparent": "00-3ecb18602eec144882e8475988b86c8d-f1f0c19702ba0c47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5efd94a4cdfccaacd89ff1bad0f3e7f6",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:01 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:11 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -130,8 +132,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:01 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A01.6736857Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:10 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A11.0935449Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable1oe6zcw8(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -140,19 +142,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "5efd94a4cdfccaacd89ff1bad0f3e7f6",
- "x-ms-request-id": "207532e5-b002-001b-4221-5aea7a000000",
+ "x-ms-request-id": "9b331e20-4002-002c-7486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable1oe6zcw8/@Element",
"odata.type": "chrissscratch.testtable1oe6zcw8",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable1oe6zcw8(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A01.6736857Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A11.0935449Z\u0027\u0022",
"odata.editLink": "testtable1oe6zcw8(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:01.6736857Z",
+ "Timestamp": "2020-07-17T22:09:11.0935449Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -198,17 +200,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable1oe6zcw8?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1740",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-02cf8f547b51c44fa5987f74694f950a-f9ea953d46738148-00",
+ "traceparent": "00-f4e6d000d6a4bd47a019d54408a4a1ff-d49925444d137a4f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "362d0afa428764efa48b3d847d94cfca",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:02 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:11 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -279,8 +282,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:01 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A01.7187235Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:10 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A11.136579Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable1oe6zcw8(PartitionKey=\u0027somPartition2\u0027,RowKey=\u00270001\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -289,19 +292,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "362d0afa428764efa48b3d847d94cfca",
- "x-ms-request-id": "207532ef-b002-001b-4b21-5aea7a000000",
+ "x-ms-request-id": "9b331e27-4002-002c-7b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable1oe6zcw8/@Element",
"odata.type": "chrissscratch.testtable1oe6zcw8",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable1oe6zcw8(PartitionKey=\u0027somPartition2\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A01.7187235Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A11.136579Z\u0027\u0022",
"odata.editLink": "testtable1oe6zcw8(PartitionKey=\u0027somPartition2\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition2",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:01.7187235Z",
+ "Timestamp": "2020-07-17T22:09:11.136579Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -347,14 +350,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable1oe6zcw8()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "af46c5f7a6f2829be95b46d202c7f555",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:02 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:11 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -363,7 +367,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:01 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:10 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -371,7 +375,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "af46c5f7a6f2829be95b46d202c7f555",
- "x-ms-request-id": "207532f7-b002-001b-5321-5aea7a000000",
+ "x-ms-request-id": "9b331e2f-4002-002c-0386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -380,12 +384,12 @@
{
"odata.type": "chrissscratch.testtable1oe6zcw8",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable1oe6zcw8(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A01.6736857Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A11.0935449Z\u0027\u0022",
"odata.editLink": "testtable1oe6zcw8(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:01.6736857Z",
+ "Timestamp": "2020-07-17T22:09:11.0935449Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -435,13 +439,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-3a9b5932e1099e40b963bd31864f2353-e806460ec6d90a42-00",
+ "traceparent": "00-b4aa87ded8df424a9697a33816814077-36ba221867c5da41-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "eaf76f0b0f5262b1a498ba7090274d44",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:02 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:11 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -450,14 +454,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:01 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:10 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "eaf76f0b0f5262b1a498ba7090274d44",
- "x-ms-request-id": "20753308-b002-001b-6321-5aea7a000000",
+ "x-ms-request-id": "9b331e33-4002-002c-0686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableExecuteQueryGenericAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableExecuteQueryGenericAsync.json
index dfdb15cd5e72..c59113b17e67 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableExecuteQueryGenericAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableExecuteQueryGenericAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-948377b51d0b98498ef24ae73389150e-484bd230d7e81f46-00",
+ "traceparent": "00-8abf41c010cb6747b04efbee975c1dda-e3bd5297e9fef542-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d8e322760a5c39bd983e658c2ff4699e",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:20 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:20 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:19 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable378f07ad\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d8e322760a5c39bd983e658c2ff4699e",
- "x-ms-request-id": "2075449e-b002-001b-4821-5aea7a000000",
+ "x-ms-request-id": "9b33255b-4002-002c-3186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable378f07ad?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-cd42a01d6dc291419187d39056636453-be58847a7e82fc41-00",
+ "traceparent": "00-0b92dfd27f6bb844b2660b68745dfe5b-be044be8a4fbf14b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7db294594780a86f34610ab933896293",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:20 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -130,8 +132,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:20 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A20.7965602Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:19 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A20.6424903Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable378f07ad(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -140,19 +142,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "7db294594780a86f34610ab933896293",
- "x-ms-request-id": "207544ad-b002-001b-5321-5aea7a000000",
+ "x-ms-request-id": "9b332579-4002-002c-4d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable378f07ad/@Element",
"odata.type": "chrissscratch.testtable378f07ad",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable378f07ad(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A20.7965602Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A20.6424903Z\u0027\u0022",
"odata.editLink": "testtable378f07ad(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:20.7965602Z",
+ "Timestamp": "2020-07-17T22:09:20.6424903Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -198,17 +200,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable378f07ad?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1740",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-842c31341bee0a4e94d6e90a9dac6061-f3f681eedb082842-00",
+ "traceparent": "00-c636d7c69330af468eb420a227a840ba-eff880545e29a040-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2bfb7d65876b58a01a626462079f3597",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:20 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -279,8 +282,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:20 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A20.8365943Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:19 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A20.7295637Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable378f07ad(PartitionKey=\u0027somPartition2\u0027,RowKey=\u00270001\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -289,19 +292,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "2bfb7d65876b58a01a626462079f3597",
- "x-ms-request-id": "207544b9-b002-001b-5e21-5aea7a000000",
+ "x-ms-request-id": "9b332590-4002-002c-6486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable378f07ad/@Element",
"odata.type": "chrissscratch.testtable378f07ad",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable378f07ad(PartitionKey=\u0027somPartition2\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A20.8365943Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A20.7295637Z\u0027\u0022",
"odata.editLink": "testtable378f07ad(PartitionKey=\u0027somPartition2\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition2",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:20.8365943Z",
+ "Timestamp": "2020-07-17T22:09:20.7295637Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -347,14 +350,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable378f07ad()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=PartitionKey%20eq%20%27somPartition%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0e3480b762322f10b23aa4fa0003060f",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:20 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -363,7 +367,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:20 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:19 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -371,7 +375,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0e3480b762322f10b23aa4fa0003060f",
- "x-ms-request-id": "207544bf-b002-001b-6421-5aea7a000000",
+ "x-ms-request-id": "9b3325a1-4002-002c-7586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -380,12 +384,12 @@
{
"odata.type": "chrissscratch.testtable378f07ad",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable378f07ad(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A20.7965602Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A20.6424903Z\u0027\u0022",
"odata.editLink": "testtable378f07ad(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:20.7965602Z",
+ "Timestamp": "2020-07-17T22:09:20.6424903Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -435,13 +439,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-1eba8849680a5942a24be665bf2a50da-2d0a4ef1d388e046-00",
+ "traceparent": "00-45b64c4977b05d48bdafb5e1bbbfa2a5-142b777abb6ae948-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b127d2dc3ef8d232f45a621de20da094",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:20 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -450,14 +454,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:20 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:19 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "b127d2dc3ef8d232f45a621de20da094",
- "x-ms-request-id": "207544c6-b002-001b-6a21-5aea7a000000",
+ "x-ms-request-id": "9b3325b5-4002-002c-0986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableFilterPredicate.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableFilterPredicate.json
index 53bfef6723f1..da8b9733d80b 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableFilterPredicate.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableFilterPredicate.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-b6f95e0f0f2c5c4caa35c4139ab68c92-96c07c2ab0a10c4f-00",
+ "traceparent": "00-73f15e13d0ba014093f81d467a3a1f48-a2b64a306bd07c4c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "bee6c7fcbc259c049a6ce32ac0f5c95d",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:02 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:11 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:01 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:10 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable5r27b5lz\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "bee6c7fcbc259c049a6ce32ac0f5c95d",
- "x-ms-request-id": "20753314-b002-001b-6f21-5aea7a000000",
+ "x-ms-request-id": "9b331e3a-4002-002c-0d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable5r27b5lz?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1a4ae58203daa749bb884bf92f42843a-6bc17c201099614a-00",
+ "traceparent": "00-3a404ec7396df4499685c3f8cc456777-4ff6212ff7524d43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "44c2ab933e14093019d72f984e318b9a",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:02 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:11 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -130,8 +132,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:01 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A01.9098822Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:10 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A11.3277383Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable5r27b5lz(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -140,19 +142,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "44c2ab933e14093019d72f984e318b9a",
- "x-ms-request-id": "20753322-b002-001b-7b21-5aea7a000000",
+ "x-ms-request-id": "9b331e44-4002-002c-1586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable5r27b5lz/@Element",
"odata.type": "chrissscratch.testtable5r27b5lz",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable5r27b5lz(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A01.9098822Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A11.3277383Z\u0027\u0022",
"odata.editLink": "testtable5r27b5lz(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:01.9098822Z",
+ "Timestamp": "2020-07-17T22:09:11.3277383Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -198,17 +200,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable5r27b5lz?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1541ce723cc2c24899cc48dfbe6315d2-bad98b3f1484e547-00",
+ "traceparent": "00-7849d47872984848ad60cae477ec4ab7-0d67ee4f9a540c42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7a5e2928433f8a768076e2245db4cf4e",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:02 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:11 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -279,8 +282,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:01 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A01.9559204Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:10 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A11.3717749Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable5r27b5lz(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -289,19 +292,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "7a5e2928433f8a768076e2245db4cf4e",
- "x-ms-request-id": "20753329-b002-001b-0221-5aea7a000000",
+ "x-ms-request-id": "9b331e48-4002-002c-1986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable5r27b5lz/@Element",
"odata.type": "chrissscratch.testtable5r27b5lz",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable5r27b5lz(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A01.9559204Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A11.3717749Z\u0027\u0022",
"odata.editLink": "testtable5r27b5lz(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:01.9559204Z",
+ "Timestamp": "2020-07-17T22:09:11.3717749Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -347,17 +350,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable5r27b5lz?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1795",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9aa5aaa0f7dfc94683d941b7c9b7213d-a3a93cfd1e95e243-00",
+ "traceparent": "00-c1273391e804e5409812d4e3fcf1de6b-5d5c2852b92ae54a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "46b4c263cbc0be5a97dda54e8c6b4d69",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:02 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:11 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -428,8 +432,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:01 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A02.0039598Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:10 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A11.4278224Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable5r27b5lz(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -438,19 +442,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "46b4c263cbc0be5a97dda54e8c6b4d69",
- "x-ms-request-id": "20753332-b002-001b-0b21-5aea7a000000",
+ "x-ms-request-id": "9b331e52-4002-002c-2386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable5r27b5lz/@Element",
"odata.type": "chrissscratch.testtable5r27b5lz",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable5r27b5lz(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A02.0039598Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A11.4278224Z\u0027\u0022",
"odata.editLink": "testtable5r27b5lz(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:02.0039598Z",
+ "Timestamp": "2020-07-17T22:09:11.4278224Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -496,17 +500,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable5r27b5lz?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a2a81ed6e6bf1242bbd6c45d921c6859-8f9d56e33a184141-00",
+ "traceparent": "00-6b880fbee841564992cbba1646647bb3-611a87df839cda4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "970149e14f964f1e3538c39e5c0cab65",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:02 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:11 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -577,8 +582,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:01 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A02.0499981Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:10 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A11.4748606Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable5r27b5lz(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -587,19 +592,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "970149e14f964f1e3538c39e5c0cab65",
- "x-ms-request-id": "2075333a-b002-001b-1321-5aea7a000000",
+ "x-ms-request-id": "9b331e5a-4002-002c-2986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable5r27b5lz/@Element",
"odata.type": "chrissscratch.testtable5r27b5lz",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable5r27b5lz(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A02.0499981Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A11.4748606Z\u0027\u0022",
"odata.editLink": "testtable5r27b5lz(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:02.0499981Z",
+ "Timestamp": "2020-07-17T22:09:11.4748606Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -645,14 +650,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable5r27b5lz()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28RowKey%20ne%20%270004%27%29%20and%20%28PartitionKey%20eq%20%27somPartition%27%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8b34e007447c5cdacea0e2619e27fd15",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:02 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:11 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -661,7 +667,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:01 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:10 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -669,7 +675,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "8b34e007447c5cdacea0e2619e27fd15",
- "x-ms-request-id": "2075334c-b002-001b-2321-5aea7a000000",
+ "x-ms-request-id": "9b331e66-4002-002c-3586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -678,12 +684,12 @@
{
"odata.type": "chrissscratch.testtable5r27b5lz",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable5r27b5lz(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A01.9098822Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A11.3277383Z\u0027\u0022",
"odata.editLink": "testtable5r27b5lz(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:01.9098822Z",
+ "Timestamp": "2020-07-17T22:09:11.3277383Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -727,12 +733,12 @@
{
"odata.type": "chrissscratch.testtable5r27b5lz",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable5r27b5lz(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A01.9559204Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A11.3717749Z\u0027\u0022",
"odata.editLink": "testtable5r27b5lz(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:01.9559204Z",
+ "Timestamp": "2020-07-17T22:09:11.3717749Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -776,12 +782,12 @@
{
"odata.type": "chrissscratch.testtable5r27b5lz",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable5r27b5lz(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A02.0039598Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A11.4278224Z\u0027\u0022",
"odata.editLink": "testtable5r27b5lz(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:02.0039598Z",
+ "Timestamp": "2020-07-17T22:09:11.4278224Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -829,14 +835,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable5r27b5lz()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28RowKey%20ne%20%270004%27%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1443782838b214b8a464118707bc628b",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:02 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:11 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -845,7 +852,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:01 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:10 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -853,7 +860,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "1443782838b214b8a464118707bc628b",
- "x-ms-request-id": "2075335e-b002-001b-3321-5aea7a000000",
+ "x-ms-request-id": "9b331e78-4002-002c-4686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -862,12 +869,12 @@
{
"odata.type": "chrissscratch.testtable5r27b5lz",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable5r27b5lz(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A01.9098822Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A11.3277383Z\u0027\u0022",
"odata.editLink": "testtable5r27b5lz(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:01.9098822Z",
+ "Timestamp": "2020-07-17T22:09:11.3277383Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -911,12 +918,12 @@
{
"odata.type": "chrissscratch.testtable5r27b5lz",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable5r27b5lz(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A01.9559204Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A11.3717749Z\u0027\u0022",
"odata.editLink": "testtable5r27b5lz(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:01.9559204Z",
+ "Timestamp": "2020-07-17T22:09:11.3717749Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -960,12 +967,12 @@
{
"odata.type": "chrissscratch.testtable5r27b5lz",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable5r27b5lz(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A02.0039598Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A11.4278224Z\u0027\u0022",
"odata.editLink": "testtable5r27b5lz(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:02.0039598Z",
+ "Timestamp": "2020-07-17T22:09:11.4278224Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1015,13 +1022,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-23c869951a6e4c41951e146cf691c799-0899cb4bfdf87242-00",
+ "traceparent": "00-bea0869a2e076f4d805e0de32bbcb84c-dfc011ad863b8349-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ac463f32c2369ced6fa5c8f56cbcb10d",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:02 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:11 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1030,14 +1037,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:02 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:10 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ac463f32c2369ced6fa5c8f56cbcb10d",
- "x-ms-request-id": "20753369-b002-001b-3e21-5aea7a000000",
+ "x-ms-request-id": "9b331e80-4002-002c-4e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableFilterPredicateAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableFilterPredicateAsync.json
index 25da93ee354a..e99229760535 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableFilterPredicateAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableFilterPredicateAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-5d63aa7ae17fe044a601efe540f46cc3-d7f3fd1cccb44845-00",
+ "traceparent": "00-988057f45dfb964fbae2d64f0a7f9bed-2896de4452804c44-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8cd6161de3026b9fe32d12757d165dd7",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:20 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:20 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:20 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableyry1hnt4\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "8cd6161de3026b9fe32d12757d165dd7",
- "x-ms-request-id": "207544d0-b002-001b-7421-5aea7a000000",
+ "x-ms-request-id": "9b3325c9-4002-002c-1d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableyry1hnt4?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ee119ab6cdabfb4da833b097a528d99c-684b7bc50abb7f45-00",
+ "traceparent": "00-6d65ccb959f6fa4b96d6fa190fc64548-394c3c281bc40245-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "eaf101a901e768ed4c34b45023fdd211",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:21 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -130,8 +132,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:20 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.0207463Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:20 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A20.9387384Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableyry1hnt4(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -140,19 +142,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "eaf101a901e768ed4c34b45023fdd211",
- "x-ms-request-id": "207544da-b002-001b-7c21-5aea7a000000",
+ "x-ms-request-id": "9b3325d7-4002-002c-2a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableyry1hnt4/@Element",
"odata.type": "chrissscratch.testtableyry1hnt4",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableyry1hnt4(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.0207463Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A20.9387384Z\u0027\u0022",
"odata.editLink": "testtableyry1hnt4(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:21.0207463Z",
+ "Timestamp": "2020-07-17T22:09:20.9387384Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -198,17 +200,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableyry1hnt4?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c90b451c0d39a640a4b27b525f961c40-61c36ef21dd17a44-00",
+ "traceparent": "00-48f468621f3d4148b234b31c6006e760-72e0802dc0d5064e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ea1da8d1b32151ad95b3814a1d8d03d0",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:21 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -279,8 +282,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:20 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.0647833Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:20 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.0047937Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableyry1hnt4(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -289,19 +292,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ea1da8d1b32151ad95b3814a1d8d03d0",
- "x-ms-request-id": "207544e4-b002-001b-0621-5aea7a000000",
+ "x-ms-request-id": "9b3325ef-4002-002c-3f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableyry1hnt4/@Element",
"odata.type": "chrissscratch.testtableyry1hnt4",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableyry1hnt4(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.0647833Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.0047937Z\u0027\u0022",
"odata.editLink": "testtableyry1hnt4(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:21.0647833Z",
+ "Timestamp": "2020-07-17T22:09:21.0047937Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -347,17 +350,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableyry1hnt4?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1795",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-84084136afb8704f9cda51826a0739a8-fad099e117f6c24d-00",
+ "traceparent": "00-e6671b7a564d81448c2310139580503b-f46538efef9c3d49-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4ec6ca6e5e171cf4296e3fcd2f4e47e5",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:21 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -428,8 +432,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:20 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.1108219Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:20 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.0558365Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableyry1hnt4(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -438,19 +442,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "4ec6ca6e5e171cf4296e3fcd2f4e47e5",
- "x-ms-request-id": "207544ed-b002-001b-0f21-5aea7a000000",
+ "x-ms-request-id": "9b3325fb-4002-002c-4b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableyry1hnt4/@Element",
"odata.type": "chrissscratch.testtableyry1hnt4",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableyry1hnt4(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.1108219Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.0558365Z\u0027\u0022",
"odata.editLink": "testtableyry1hnt4(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:21.1108219Z",
+ "Timestamp": "2020-07-17T22:09:21.0558365Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -496,17 +500,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableyry1hnt4?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-32bdc7ed7410ab45b97866f19ebbc4fa-72ad133c1cee9f41-00",
+ "traceparent": "00-d0993424b9764e47ba94ac9096bc534c-17c3d8d1d03abd41-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d5a4015a72f9f5b554a054347fa24abe",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:21 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -577,8 +582,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:20 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.1568606Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:20 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.103878Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableyry1hnt4(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -587,19 +592,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d5a4015a72f9f5b554a054347fa24abe",
- "x-ms-request-id": "207544f0-b002-001b-1221-5aea7a000000",
+ "x-ms-request-id": "9b332605-4002-002c-5586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableyry1hnt4/@Element",
"odata.type": "chrissscratch.testtableyry1hnt4",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableyry1hnt4(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.1568606Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.103878Z\u0027\u0022",
"odata.editLink": "testtableyry1hnt4(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:21.1568606Z",
+ "Timestamp": "2020-07-17T22:09:21.103878Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -645,14 +650,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableyry1hnt4()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28RowKey%20ne%20%270004%27%29%20and%20%28PartitionKey%20eq%20%27somPartition%27%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "59e2e431843773f9b300c0b373df2146",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:21 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -661,7 +667,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:20 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:20 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -669,7 +675,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "59e2e431843773f9b300c0b373df2146",
- "x-ms-request-id": "207544fa-b002-001b-1b21-5aea7a000000",
+ "x-ms-request-id": "9b33260e-4002-002c-5e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -678,12 +684,12 @@
{
"odata.type": "chrissscratch.testtableyry1hnt4",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableyry1hnt4(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.0207463Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A20.9387384Z\u0027\u0022",
"odata.editLink": "testtableyry1hnt4(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:21.0207463Z",
+ "Timestamp": "2020-07-17T22:09:20.9387384Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -727,12 +733,12 @@
{
"odata.type": "chrissscratch.testtableyry1hnt4",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableyry1hnt4(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.0647833Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.0047937Z\u0027\u0022",
"odata.editLink": "testtableyry1hnt4(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:21.0647833Z",
+ "Timestamp": "2020-07-17T22:09:21.0047937Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -776,12 +782,12 @@
{
"odata.type": "chrissscratch.testtableyry1hnt4",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableyry1hnt4(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.1108219Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.0558365Z\u0027\u0022",
"odata.editLink": "testtableyry1hnt4(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:21.1108219Z",
+ "Timestamp": "2020-07-17T22:09:21.0558365Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -829,14 +835,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableyry1hnt4()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28RowKey%20ne%20%270004%27%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1cef9b6b2ee9fbd714d0f97609c09c86",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:21 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -845,7 +852,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:21 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:20 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -853,7 +860,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "1cef9b6b2ee9fbd714d0f97609c09c86",
- "x-ms-request-id": "20754517-b002-001b-3621-5aea7a000000",
+ "x-ms-request-id": "9b332613-4002-002c-6386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -862,12 +869,12 @@
{
"odata.type": "chrissscratch.testtableyry1hnt4",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableyry1hnt4(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.0207463Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A20.9387384Z\u0027\u0022",
"odata.editLink": "testtableyry1hnt4(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:21.0207463Z",
+ "Timestamp": "2020-07-17T22:09:20.9387384Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -911,12 +918,12 @@
{
"odata.type": "chrissscratch.testtableyry1hnt4",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableyry1hnt4(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.0647833Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.0047937Z\u0027\u0022",
"odata.editLink": "testtableyry1hnt4(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:21.0647833Z",
+ "Timestamp": "2020-07-17T22:09:21.0047937Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -960,12 +967,12 @@
{
"odata.type": "chrissscratch.testtableyry1hnt4",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableyry1hnt4(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.1108219Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.0558365Z\u0027\u0022",
"odata.editLink": "testtableyry1hnt4(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:21.1108219Z",
+ "Timestamp": "2020-07-17T22:09:21.0558365Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1015,13 +1022,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-47d4cde7edafc34b80f47ddcee3ef7c5-f407ef8c0e37fd4f-00",
+ "traceparent": "00-15df9488b418a44a803545e2fc06c716-abe1ded1a5f3ef41-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4a9c8124ee6cd6ae073022f8b1028274",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:21 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1030,14 +1037,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:21 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:20 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "4a9c8124ee6cd6ae073022f8b1028274",
- "x-ms-request-id": "20754520-b002-001b-3f21-5aea7a000000",
+ "x-ms-request-id": "9b332623-4002-002c-7286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableMultipleTake.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableMultipleTake.json
index 36ed02e29f21..519966cfa54e 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableMultipleTake.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableMultipleTake.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-07c45d79f1468a47acf809a99c57b1cc-302b5e153d0ece42-00",
+ "traceparent": "00-c60e8473236b5940b0f23e04f171705a-7dd1d3000b5d1b44-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "28995b7ea61f7e9eaa00f7d194fa1450",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:02 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:11 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:02 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:10 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablel9gk0qxs\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "28995b7ea61f7e9eaa00f7d194fa1450",
- "x-ms-request-id": "20753380-b002-001b-5221-5aea7a000000",
+ "x-ms-request-id": "9b331e88-4002-002c-5686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-3b276f4ea4f7f94197e20ab276677b98-2a88e77d04c45e43-00",
+ "traceparent": "00-de738b0d90cade4baffc445f73421ed9-34f9ece751ee7549-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9fcb0993985e61ac35cf877629d8626f",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:02 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:11 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -88,8 +90,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:02 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A02.3912814Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:10 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A11.797129Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -98,19 +100,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "9fcb0993985e61ac35cf877629d8626f",
- "x-ms-request-id": "20753396-b002-001b-6421-5aea7a000000",
+ "x-ms-request-id": "9b331e97-4002-002c-6486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablel9gk0qxs/@Element",
"odata.type": "chrissscratch.testtablel9gk0qxs",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A02.3912814Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A11.797129Z\u0027\u0022",
"odata.editLink": "testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:02.3912814Z",
+ "Timestamp": "2020-07-17T22:09:11.797129Z",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:02:00Z",
@@ -130,17 +132,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c115e043171cf745a99233779fab30f0-1b96cc5039584047-00",
+ "traceparent": "00-b98da9e2c495b747ad8dcaaf8af48b3b-78965f8a1d5a0b49-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f2a60f6f82bd65fcb42e47a80d0c3581",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:02 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:11 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -169,8 +172,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:02 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A02.4353201Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:11 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A11.8421665Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -179,19 +182,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f2a60f6f82bd65fcb42e47a80d0c3581",
- "x-ms-request-id": "207533a5-b002-001b-7321-5aea7a000000",
+ "x-ms-request-id": "9b331e9d-4002-002c-6a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablel9gk0qxs/@Element",
"odata.type": "chrissscratch.testtablel9gk0qxs",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A02.4353201Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A11.8421665Z\u0027\u0022",
"odata.editLink": "testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"PartitionKey": "somPartition",
"RowKey": "02",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:02.4353201Z",
+ "Timestamp": "2020-07-17T22:09:11.8421665Z",
"StringTypeProperty": "This is table entity number 02",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:03:00Z",
@@ -211,17 +214,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-4b5fc14195e36d4db6fd7690c93a81c0-96f1e272229ed14d-00",
+ "traceparent": "00-66939410b724ca45bba5f8241a2de094-29a93da966b65743-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "773408f9db05e69daf38f34f1f2754d2",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:02 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:11 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -250,8 +254,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:02 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A02.4763524Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:11 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A11.8902064Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -260,19 +264,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "773408f9db05e69daf38f34f1f2754d2",
- "x-ms-request-id": "207533ac-b002-001b-7a21-5aea7a000000",
+ "x-ms-request-id": "9b331ea7-4002-002c-7486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablel9gk0qxs/@Element",
"odata.type": "chrissscratch.testtablel9gk0qxs",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A02.4763524Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A11.8902064Z\u0027\u0022",
"odata.editLink": "testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"PartitionKey": "somPartition",
"RowKey": "03",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:02.4763524Z",
+ "Timestamp": "2020-07-17T22:09:11.8902064Z",
"StringTypeProperty": "This is table entity number 03",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:04:00Z",
@@ -292,17 +296,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-abfe4c50b4a5f843ab7b3c2331578ed5-8a1b050c85e57c43-00",
+ "traceparent": "00-4cba6e194a2fd14898f7720b935f38be-0f1a62aef9349044-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8462879d215410930c65eb2f50045328",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:02 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:12 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -331,8 +336,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:02 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A02.5233919Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:11 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A11.9342426Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -341,19 +346,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "8462879d215410930c65eb2f50045328",
- "x-ms-request-id": "207533b2-b002-001b-8021-5aea7a000000",
+ "x-ms-request-id": "9b331eb1-4002-002c-7d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablel9gk0qxs/@Element",
"odata.type": "chrissscratch.testtablel9gk0qxs",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A02.5233919Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A11.9342426Z\u0027\u0022",
"odata.editLink": "testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"PartitionKey": "somPartition",
"RowKey": "04",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:02.5233919Z",
+ "Timestamp": "2020-07-17T22:09:11.9342426Z",
"StringTypeProperty": "This is table entity number 04",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:05:00Z",
@@ -373,17 +378,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-36411733825bdf4fb9befc342e6046d1-3b569b82d4241645-00",
+ "traceparent": "00-2447d873f3f2384c87e8847306970fa4-fe23cf42c400c44e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "207d059aeba3946972c043858fad468c",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:02 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:12 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -412,8 +418,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:02 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A02.5684289Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:11 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A11.9782792Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -422,19 +428,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "207d059aeba3946972c043858fad468c",
- "x-ms-request-id": "207533b8-b002-001b-0621-5aea7a000000",
+ "x-ms-request-id": "9b331eb7-4002-002c-0386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablel9gk0qxs/@Element",
"odata.type": "chrissscratch.testtablel9gk0qxs",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A02.5684289Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A11.9782792Z\u0027\u0022",
"odata.editLink": "testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"PartitionKey": "somPartition",
"RowKey": "05",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:02.5684289Z",
+ "Timestamp": "2020-07-17T22:09:11.9782792Z",
"StringTypeProperty": "This is table entity number 05",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:06:00Z",
@@ -454,17 +460,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9ecdf7ddd3f40b4d87e33241f14ba2ac-a9fc19e3b66eab45-00",
+ "traceparent": "00-b62678e7d611f244a5f94b364461322a-65c246d8b284ea44-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "860a74d9b0a9d72d75246ba0ef6e95aa",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:02 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:12 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -493,8 +500,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:02 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A02.6154679Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:11 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A12.0223167Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -503,19 +510,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "860a74d9b0a9d72d75246ba0ef6e95aa",
- "x-ms-request-id": "207533c2-b002-001b-1021-5aea7a000000",
+ "x-ms-request-id": "9b331ebf-4002-002c-0b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablel9gk0qxs/@Element",
"odata.type": "chrissscratch.testtablel9gk0qxs",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A02.6154679Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A12.0223167Z\u0027\u0022",
"odata.editLink": "testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"PartitionKey": "somPartition",
"RowKey": "06",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:02.6154679Z",
+ "Timestamp": "2020-07-17T22:09:12.0223167Z",
"StringTypeProperty": "This is table entity number 06",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:07:00Z",
@@ -535,17 +542,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-707e873655fc3246b7bccd0247450c2a-05b436d26d828148-00",
+ "traceparent": "00-a5ff29d34e631a448694e315bbaef3ac-55573d5d184f4349-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "19b5cae434aab22e1dce1294de0e815f",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:02 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:12 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -574,8 +582,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:02 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A02.6625065Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:11 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A12.0753608Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -584,19 +592,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "19b5cae434aab22e1dce1294de0e815f",
- "x-ms-request-id": "207533d2-b002-001b-2021-5aea7a000000",
+ "x-ms-request-id": "9b331ec6-4002-002c-1286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablel9gk0qxs/@Element",
"odata.type": "chrissscratch.testtablel9gk0qxs",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A02.6625065Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A12.0753608Z\u0027\u0022",
"odata.editLink": "testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"PartitionKey": "somPartition",
"RowKey": "07",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:02.6625065Z",
+ "Timestamp": "2020-07-17T22:09:12.0753608Z",
"StringTypeProperty": "This is table entity number 07",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:08:00Z",
@@ -616,17 +624,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9bcd5f9b4be4434db072f0bbaca5b3e1-9275af2ba15c174e-00",
+ "traceparent": "00-a8ea7bc49d155c45bf9e9c04565d8d6f-dbaaffea75ba3f45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "db565e1ecdfae97fd8a5ab7f7fc9a403",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:12 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -655,8 +664,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:02 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A02.7095456Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:11 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A12.1213986Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -665,19 +674,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "db565e1ecdfae97fd8a5ab7f7fc9a403",
- "x-ms-request-id": "207533dc-b002-001b-2a21-5aea7a000000",
+ "x-ms-request-id": "9b331ec9-4002-002c-1586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablel9gk0qxs/@Element",
"odata.type": "chrissscratch.testtablel9gk0qxs",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A02.7095456Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A12.1213986Z\u0027\u0022",
"odata.editLink": "testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"PartitionKey": "somPartition",
"RowKey": "08",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:02.7095456Z",
+ "Timestamp": "2020-07-17T22:09:12.1213986Z",
"StringTypeProperty": "This is table entity number 08",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:09:00Z",
@@ -697,17 +706,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-be7d7f0bf21057498c534962a9764c8f-1af076374ab2de42-00",
+ "traceparent": "00-6b42b70ccde0f84b9d7632c07be029e5-b5b38e579de62c43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c4a0982a2cf7a5e2455768da9d98f967",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:12 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -736,8 +746,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:02 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A02.7565846Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:11 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A12.1664361Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -746,19 +756,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "c4a0982a2cf7a5e2455768da9d98f967",
- "x-ms-request-id": "207533ea-b002-001b-3821-5aea7a000000",
+ "x-ms-request-id": "9b331ecd-4002-002c-1986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablel9gk0qxs/@Element",
"odata.type": "chrissscratch.testtablel9gk0qxs",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A02.7565846Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A12.1664361Z\u0027\u0022",
"odata.editLink": "testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"PartitionKey": "somPartition",
"RowKey": "09",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:02.7565846Z",
+ "Timestamp": "2020-07-17T22:09:12.1664361Z",
"StringTypeProperty": "This is table entity number 09",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:10:00Z",
@@ -778,17 +788,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-430db31f9c892d4c9d7e2dd2052176e6-abb40d420f909941-00",
+ "traceparent": "00-67e11cfdfd1f5548a4118cf3c8e7a770-fdd0e3f5cf914d4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "90810ba3b91816b04bcc410488af3254",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:12 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -817,8 +828,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:02 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A02.7976187Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:11 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A12.2064689Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -827,19 +838,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "90810ba3b91816b04bcc410488af3254",
- "x-ms-request-id": "207533f1-b002-001b-3f21-5aea7a000000",
+ "x-ms-request-id": "9b331ed3-4002-002c-1e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablel9gk0qxs/@Element",
"odata.type": "chrissscratch.testtablel9gk0qxs",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A02.7976187Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A12.2064689Z\u0027\u0022",
"odata.editLink": "testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"PartitionKey": "somPartition",
"RowKey": "10",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:02.7976187Z",
+ "Timestamp": "2020-07-17T22:09:12.2064689Z",
"StringTypeProperty": "This is table entity number 10",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:11:00Z",
@@ -859,14 +870,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026$filter=PartitionKey%20eq%20%27somPartition%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "45690f2abc6df1677cb096a265a44b3f",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:12 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -875,7 +887,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:02 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:11 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -885,7 +897,7 @@
"x-ms-client-request-id": "45690f2abc6df1677cb096a265a44b3f",
"x-ms-continuation-NextPartitionKey": "1!16!c29tUGFydGl0aW9u",
"x-ms-continuation-NextRowKey": "1!4!MDY-",
- "x-ms-request-id": "207533fe-b002-001b-4c21-5aea7a000000",
+ "x-ms-request-id": "9b331eda-4002-002c-2586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -894,12 +906,12 @@
{
"odata.type": "chrissscratch.testtablel9gk0qxs",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A02.3912814Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A11.797129Z\u0027\u0022",
"odata.editLink": "testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:02.3912814Z",
+ "Timestamp": "2020-07-17T22:09:11.797129Z",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:02:00Z",
@@ -917,12 +929,12 @@
{
"odata.type": "chrissscratch.testtablel9gk0qxs",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A02.4353201Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A11.8421665Z\u0027\u0022",
"odata.editLink": "testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"PartitionKey": "somPartition",
"RowKey": "02",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:02.4353201Z",
+ "Timestamp": "2020-07-17T22:09:11.8421665Z",
"StringTypeProperty": "This is table entity number 02",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:03:00Z",
@@ -940,12 +952,12 @@
{
"odata.type": "chrissscratch.testtablel9gk0qxs",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A02.4763524Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A11.8902064Z\u0027\u0022",
"odata.editLink": "testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"PartitionKey": "somPartition",
"RowKey": "03",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:02.4763524Z",
+ "Timestamp": "2020-07-17T22:09:11.8902064Z",
"StringTypeProperty": "This is table entity number 03",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:04:00Z",
@@ -963,12 +975,12 @@
{
"odata.type": "chrissscratch.testtablel9gk0qxs",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A02.5233919Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A11.9342426Z\u0027\u0022",
"odata.editLink": "testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"PartitionKey": "somPartition",
"RowKey": "04",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:02.5233919Z",
+ "Timestamp": "2020-07-17T22:09:11.9342426Z",
"StringTypeProperty": "This is table entity number 04",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:05:00Z",
@@ -986,12 +998,12 @@
{
"odata.type": "chrissscratch.testtablel9gk0qxs",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A02.5684289Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A11.9782792Z\u0027\u0022",
"odata.editLink": "testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"PartitionKey": "somPartition",
"RowKey": "05",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:02.5684289Z",
+ "Timestamp": "2020-07-17T22:09:11.9782792Z",
"StringTypeProperty": "This is table entity number 05",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:06:00Z",
@@ -1013,14 +1025,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026$filter=PartitionKey%20eq%20%27somPartition%27\u0026NextPartitionKey=1%2116%21c29tUGFydGl0aW9u\u0026NextRowKey=1%214%21MDY-",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "74db44ac134771ebe889792bebdd1d95",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:12 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1029,7 +1042,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:02 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:11 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1037,7 +1050,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "74db44ac134771ebe889792bebdd1d95",
- "x-ms-request-id": "20753417-b002-001b-6521-5aea7a000000",
+ "x-ms-request-id": "9b331ee5-4002-002c-3086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1046,12 +1059,12 @@
{
"odata.type": "chrissscratch.testtablel9gk0qxs",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A02.6154679Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A12.0223167Z\u0027\u0022",
"odata.editLink": "testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"PartitionKey": "somPartition",
"RowKey": "06",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:02.6154679Z",
+ "Timestamp": "2020-07-17T22:09:12.0223167Z",
"StringTypeProperty": "This is table entity number 06",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:07:00Z",
@@ -1069,12 +1082,12 @@
{
"odata.type": "chrissscratch.testtablel9gk0qxs",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A02.6625065Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A12.0753608Z\u0027\u0022",
"odata.editLink": "testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"PartitionKey": "somPartition",
"RowKey": "07",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:02.6625065Z",
+ "Timestamp": "2020-07-17T22:09:12.0753608Z",
"StringTypeProperty": "This is table entity number 07",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:08:00Z",
@@ -1092,12 +1105,12 @@
{
"odata.type": "chrissscratch.testtablel9gk0qxs",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A02.7095456Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A12.1213986Z\u0027\u0022",
"odata.editLink": "testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"PartitionKey": "somPartition",
"RowKey": "08",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:02.7095456Z",
+ "Timestamp": "2020-07-17T22:09:12.1213986Z",
"StringTypeProperty": "This is table entity number 08",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:09:00Z",
@@ -1115,12 +1128,12 @@
{
"odata.type": "chrissscratch.testtablel9gk0qxs",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A02.7565846Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A12.1664361Z\u0027\u0022",
"odata.editLink": "testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"PartitionKey": "somPartition",
"RowKey": "09",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:02.7565846Z",
+ "Timestamp": "2020-07-17T22:09:12.1664361Z",
"StringTypeProperty": "This is table entity number 09",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:10:00Z",
@@ -1138,12 +1151,12 @@
{
"odata.type": "chrissscratch.testtablel9gk0qxs",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A02.7976187Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A12.2064689Z\u0027\u0022",
"odata.editLink": "testtablel9gk0qxs(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"PartitionKey": "somPartition",
"RowKey": "10",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:02.7976187Z",
+ "Timestamp": "2020-07-17T22:09:12.2064689Z",
"StringTypeProperty": "This is table entity number 10",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:11:00Z",
@@ -1167,13 +1180,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-2ea7a75cb79cdf4ab56c4afa4b36b910-56741b295b148b46-00",
+ "traceparent": "00-581c44cd9f455542bcaf08e3fa92e6fd-28f5d4e43b28c34c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8eb01325b32fe6f9a4901467230eb1a6",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:12 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1182,14 +1195,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:02 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:11 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "8eb01325b32fe6f9a4901467230eb1a6",
- "x-ms-request-id": "2075342e-b002-001b-7b21-5aea7a000000",
+ "x-ms-request-id": "9b331ef0-4002-002c-3b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableMultipleTakeAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableMultipleTakeAsync.json
index c7006ec64684..4c17872c520d 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableMultipleTakeAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableMultipleTakeAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-bd8849383b805e4da5f019d68fc1a1e1-22877b314c50bb46-00",
+ "traceparent": "00-a347c813c455d74098b1df77dc9b0065-a7cacf11a3a8ee4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0413cece6a15f87ba6f45394066666fb",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:21 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:21 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:20 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableea1xh39p\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0413cece6a15f87ba6f45394066666fb",
- "x-ms-request-id": "20754530-b002-001b-4e21-5aea7a000000",
+ "x-ms-request-id": "9b33262f-4002-002c-7e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableea1xh39p?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f929f2b9b5c28741ba4f7d665dc12fe7-7a59bf649f1b9f44-00",
+ "traceparent": "00-28dcbb974752154c92ae95a165edca28-a78a8fc78ea43447-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4f9de780beeebe86078d3d7fd4f88cac",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:21 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -88,8 +90,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:21 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.4621127Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:20 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.439157Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -98,19 +100,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "4f9de780beeebe86078d3d7fd4f88cac",
- "x-ms-request-id": "20754543-b002-001b-5e21-5aea7a000000",
+ "x-ms-request-id": "9b332642-4002-002c-1086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableea1xh39p/@Element",
"odata.type": "chrissscratch.testtableea1xh39p",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.4621127Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.439157Z\u0027\u0022",
"odata.editLink": "testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:21.4621127Z",
+ "Timestamp": "2020-07-17T22:09:21.439157Z",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:02:00Z",
@@ -130,17 +132,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableea1xh39p?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-dcc4c77f96b5204eb40c0bb2d3d1bd4c-a846eca25cebf843-00",
+ "traceparent": "00-92b727c9818ce94198ededa756a1f933-9b86c51986958848-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4969911fe714d4152c90e82cde5a3cac",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:21 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -169,8 +172,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:21 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.503148Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:20 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.5872802Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -179,19 +182,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "4969911fe714d4152c90e82cde5a3cac",
- "x-ms-request-id": "20754549-b002-001b-6421-5aea7a000000",
+ "x-ms-request-id": "9b33266d-4002-002c-3886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableea1xh39p/@Element",
"odata.type": "chrissscratch.testtableea1xh39p",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.503148Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.5872802Z\u0027\u0022",
"odata.editLink": "testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"PartitionKey": "somPartition",
"RowKey": "02",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:21.503148Z",
+ "Timestamp": "2020-07-17T22:09:21.5872802Z",
"StringTypeProperty": "This is table entity number 02",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:03:00Z",
@@ -211,17 +214,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableea1xh39p?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-0ae962d98d68a64586e5239e30b2c287-56f2c30d10200748-00",
+ "traceparent": "00-1c0a97786dc54e439998dc8d13f19385-4f4f5acb9750114d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1fef691657b110004855fc872dfc24ad",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:21 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -250,8 +254,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:21 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.5481846Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:20 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.6493318Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -260,19 +264,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "1fef691657b110004855fc872dfc24ad",
- "x-ms-request-id": "20754555-b002-001b-6f21-5aea7a000000",
+ "x-ms-request-id": "9b332684-4002-002c-4f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableea1xh39p/@Element",
"odata.type": "chrissscratch.testtableea1xh39p",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.5481846Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.6493318Z\u0027\u0022",
"odata.editLink": "testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"PartitionKey": "somPartition",
"RowKey": "03",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:21.5481846Z",
+ "Timestamp": "2020-07-17T22:09:21.6493318Z",
"StringTypeProperty": "This is table entity number 03",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:04:00Z",
@@ -292,17 +296,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableea1xh39p?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-64b6334212cceb4c9e9c835c24c02f96-10aa17b0195d3842-00",
+ "traceparent": "00-7a6c007781151247b1d50e1c0f174b3d-5d5b36273eef6648-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7474a7671dfd98e7d1c9235ed559dfad",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:21 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -331,8 +336,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:21 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.5932215Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:20 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.693368Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -341,19 +346,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "7474a7671dfd98e7d1c9235ed559dfad",
- "x-ms-request-id": "2075455b-b002-001b-7521-5aea7a000000",
+ "x-ms-request-id": "9b332689-4002-002c-5486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableea1xh39p/@Element",
"odata.type": "chrissscratch.testtableea1xh39p",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.5932215Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.693368Z\u0027\u0022",
"odata.editLink": "testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"PartitionKey": "somPartition",
"RowKey": "04",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:21.5932215Z",
+ "Timestamp": "2020-07-17T22:09:21.693368Z",
"StringTypeProperty": "This is table entity number 04",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:05:00Z",
@@ -373,17 +378,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableea1xh39p?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1a1575c0a8720546a6ff26e50311c05b-2524b6d0c1efde4d-00",
+ "traceparent": "00-2a64e21eb04f414290ba4cb9c803a342-3136bea6f5f4a04f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6a6891516d09c8fa915800beeb8da72f",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:21 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -412,8 +418,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:21 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.6382589Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:20 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.7374054Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -422,19 +428,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "6a6891516d09c8fa915800beeb8da72f",
- "x-ms-request-id": "20754562-b002-001b-7c21-5aea7a000000",
+ "x-ms-request-id": "9b332690-4002-002c-5b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableea1xh39p/@Element",
"odata.type": "chrissscratch.testtableea1xh39p",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.6382589Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.7374054Z\u0027\u0022",
"odata.editLink": "testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"PartitionKey": "somPartition",
"RowKey": "05",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:21.6382589Z",
+ "Timestamp": "2020-07-17T22:09:21.7374054Z",
"StringTypeProperty": "This is table entity number 05",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:06:00Z",
@@ -454,17 +460,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableea1xh39p?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-04496ea8df2bcd419724989a9a5f66d3-d2db3c7ba984f34d-00",
+ "traceparent": "00-41a8ce13f6949847af2bb62cc6d1e7c5-769e6618fbd97b4f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "36c43a6cc7e5f8ae82564de833a23aee",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:21 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:21 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -493,8 +500,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:21 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.6862992Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:20 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.7854454Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -503,19 +510,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "36c43a6cc7e5f8ae82564de833a23aee",
- "x-ms-request-id": "2075456c-b002-001b-0621-5aea7a000000",
+ "x-ms-request-id": "9b332698-4002-002c-6386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableea1xh39p/@Element",
"odata.type": "chrissscratch.testtableea1xh39p",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.6862992Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.7854454Z\u0027\u0022",
"odata.editLink": "testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"PartitionKey": "somPartition",
"RowKey": "06",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:21.6862992Z",
+ "Timestamp": "2020-07-17T22:09:21.7854454Z",
"StringTypeProperty": "This is table entity number 06",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:07:00Z",
@@ -535,17 +542,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableea1xh39p?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-b27b0a804e3c7a418cf07486935edc72-41924f5164fc0844-00",
+ "traceparent": "00-9937d65e9fc83c458f7ed578c56f660e-a125abbfbcb34a4b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9b364f76ba93faa4adace3a51c28ad43",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:21 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -574,8 +582,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:21 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.7373416Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:20 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.8314841Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -584,19 +592,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "9b364f76ba93faa4adace3a51c28ad43",
- "x-ms-request-id": "2075456d-b002-001b-0721-5aea7a000000",
+ "x-ms-request-id": "9b3326a0-4002-002c-6b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableea1xh39p/@Element",
"odata.type": "chrissscratch.testtableea1xh39p",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.7373416Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.8314841Z\u0027\u0022",
"odata.editLink": "testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"PartitionKey": "somPartition",
"RowKey": "07",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:21.7373416Z",
+ "Timestamp": "2020-07-17T22:09:21.8314841Z",
"StringTypeProperty": "This is table entity number 07",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:08:00Z",
@@ -616,17 +624,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableea1xh39p?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-3370d75d77bba0468380a48cf677d048-3d225bd933fe1445-00",
+ "traceparent": "00-ae4b36f806da7c4bb691810db8c9703b-5ff23fdbc418a844-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9bf1f321a9948ac7e370e7b21f1194ee",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:21 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -655,8 +664,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:21 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.7813777Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:21 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.8765211Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -665,19 +674,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "9bf1f321a9948ac7e370e7b21f1194ee",
- "x-ms-request-id": "2075456f-b002-001b-0921-5aea7a000000",
+ "x-ms-request-id": "9b3326ac-4002-002c-7686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableea1xh39p/@Element",
"odata.type": "chrissscratch.testtableea1xh39p",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.7813777Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.8765211Z\u0027\u0022",
"odata.editLink": "testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"PartitionKey": "somPartition",
"RowKey": "08",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:21.7813777Z",
+ "Timestamp": "2020-07-17T22:09:21.8765211Z",
"StringTypeProperty": "This is table entity number 08",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:09:00Z",
@@ -697,17 +706,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableea1xh39p?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-35cd5478b9cca74c9f7e9529e5890f32-40307ea225466b41-00",
+ "traceparent": "00-20ad55a10ebf8849bf5d93c714fd512d-ae1e6f8c07894140-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9b48121e0c57b29c95ca8939e308db59",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:21 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -736,8 +746,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:21 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.8264155Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:21 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.9305656Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -746,19 +756,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "9b48121e0c57b29c95ca8939e308db59",
- "x-ms-request-id": "20754579-b002-001b-1221-5aea7a000000",
+ "x-ms-request-id": "9b3326bf-4002-002c-0986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableea1xh39p/@Element",
"odata.type": "chrissscratch.testtableea1xh39p",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.8264155Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.9305656Z\u0027\u0022",
"odata.editLink": "testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"PartitionKey": "somPartition",
"RowKey": "09",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:21.8264155Z",
+ "Timestamp": "2020-07-17T22:09:21.9305656Z",
"StringTypeProperty": "This is table entity number 09",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:10:00Z",
@@ -778,17 +788,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableea1xh39p?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8afe7410b3ef2b4cbf6e5fcb40ae9abb-95b089e6a8258540-00",
+ "traceparent": "00-e60770ee5d0afa448b1159a224853586-6d9d0148138e684d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3fc709a99fb0cc5987abb823d2f2da9b",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:22 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -817,8 +828,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:21 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.8694508Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:21 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.9766039Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -827,19 +838,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "3fc709a99fb0cc5987abb823d2f2da9b",
- "x-ms-request-id": "20754584-b002-001b-1b21-5aea7a000000",
+ "x-ms-request-id": "9b3326c7-4002-002c-1186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableea1xh39p/@Element",
"odata.type": "chrissscratch.testtableea1xh39p",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.8694508Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.9766039Z\u0027\u0022",
"odata.editLink": "testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"PartitionKey": "somPartition",
"RowKey": "10",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:21.8694508Z",
+ "Timestamp": "2020-07-17T22:09:21.9766039Z",
"StringTypeProperty": "This is table entity number 10",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:11:00Z",
@@ -859,14 +870,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableea1xh39p()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026$filter=PartitionKey%20eq%20%27somPartition%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0a86f41711df15eb573f05c91f8da6da",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:22 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -875,7 +887,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:21 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:21 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -885,7 +897,7 @@
"x-ms-client-request-id": "0a86f41711df15eb573f05c91f8da6da",
"x-ms-continuation-NextPartitionKey": "1!16!c29tUGFydGl0aW9u",
"x-ms-continuation-NextRowKey": "1!4!MDY-",
- "x-ms-request-id": "2075458f-b002-001b-2421-5aea7a000000",
+ "x-ms-request-id": "9b3326cc-4002-002c-1686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -894,12 +906,12 @@
{
"odata.type": "chrissscratch.testtableea1xh39p",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.4621127Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.439157Z\u0027\u0022",
"odata.editLink": "testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:21.4621127Z",
+ "Timestamp": "2020-07-17T22:09:21.439157Z",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:02:00Z",
@@ -917,12 +929,12 @@
{
"odata.type": "chrissscratch.testtableea1xh39p",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.503148Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.5872802Z\u0027\u0022",
"odata.editLink": "testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"PartitionKey": "somPartition",
"RowKey": "02",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:21.503148Z",
+ "Timestamp": "2020-07-17T22:09:21.5872802Z",
"StringTypeProperty": "This is table entity number 02",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:03:00Z",
@@ -940,12 +952,12 @@
{
"odata.type": "chrissscratch.testtableea1xh39p",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.5481846Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.6493318Z\u0027\u0022",
"odata.editLink": "testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"PartitionKey": "somPartition",
"RowKey": "03",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:21.5481846Z",
+ "Timestamp": "2020-07-17T22:09:21.6493318Z",
"StringTypeProperty": "This is table entity number 03",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:04:00Z",
@@ -963,12 +975,12 @@
{
"odata.type": "chrissscratch.testtableea1xh39p",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.5932215Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.693368Z\u0027\u0022",
"odata.editLink": "testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"PartitionKey": "somPartition",
"RowKey": "04",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:21.5932215Z",
+ "Timestamp": "2020-07-17T22:09:21.693368Z",
"StringTypeProperty": "This is table entity number 04",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:05:00Z",
@@ -986,12 +998,12 @@
{
"odata.type": "chrissscratch.testtableea1xh39p",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.6382589Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.7374054Z\u0027\u0022",
"odata.editLink": "testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"PartitionKey": "somPartition",
"RowKey": "05",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:21.6382589Z",
+ "Timestamp": "2020-07-17T22:09:21.7374054Z",
"StringTypeProperty": "This is table entity number 05",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:06:00Z",
@@ -1013,14 +1025,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableea1xh39p()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026$filter=PartitionKey%20eq%20%27somPartition%27\u0026NextPartitionKey=1%2116%21c29tUGFydGl0aW9u\u0026NextRowKey=1%214%21MDY-",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "15088e94554a7f3eb87b13ac5378dfa2",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:22 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1029,7 +1042,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:21 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:21 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1037,7 +1050,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "15088e94554a7f3eb87b13ac5378dfa2",
- "x-ms-request-id": "2075459e-b002-001b-3121-5aea7a000000",
+ "x-ms-request-id": "9b3326e6-4002-002c-2e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1046,12 +1059,12 @@
{
"odata.type": "chrissscratch.testtableea1xh39p",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.6862992Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.7854454Z\u0027\u0022",
"odata.editLink": "testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"PartitionKey": "somPartition",
"RowKey": "06",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:21.6862992Z",
+ "Timestamp": "2020-07-17T22:09:21.7854454Z",
"StringTypeProperty": "This is table entity number 06",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:07:00Z",
@@ -1069,12 +1082,12 @@
{
"odata.type": "chrissscratch.testtableea1xh39p",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.7373416Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.8314841Z\u0027\u0022",
"odata.editLink": "testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"PartitionKey": "somPartition",
"RowKey": "07",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:21.7373416Z",
+ "Timestamp": "2020-07-17T22:09:21.8314841Z",
"StringTypeProperty": "This is table entity number 07",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:08:00Z",
@@ -1092,12 +1105,12 @@
{
"odata.type": "chrissscratch.testtableea1xh39p",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.7813777Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.8765211Z\u0027\u0022",
"odata.editLink": "testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"PartitionKey": "somPartition",
"RowKey": "08",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:21.7813777Z",
+ "Timestamp": "2020-07-17T22:09:21.8765211Z",
"StringTypeProperty": "This is table entity number 08",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:09:00Z",
@@ -1115,12 +1128,12 @@
{
"odata.type": "chrissscratch.testtableea1xh39p",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.8264155Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.9305656Z\u0027\u0022",
"odata.editLink": "testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"PartitionKey": "somPartition",
"RowKey": "09",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:21.8264155Z",
+ "Timestamp": "2020-07-17T22:09:21.9305656Z",
"StringTypeProperty": "This is table entity number 09",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:10:00Z",
@@ -1138,12 +1151,12 @@
{
"odata.type": "chrissscratch.testtableea1xh39p",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A21.8694508Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A21.9766039Z\u0027\u0022",
"odata.editLink": "testtableea1xh39p(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"PartitionKey": "somPartition",
"RowKey": "10",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:21.8694508Z",
+ "Timestamp": "2020-07-17T22:09:21.9766039Z",
"StringTypeProperty": "This is table entity number 10",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:11:00Z",
@@ -1167,13 +1180,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-4df7786f5e937e43bf58796ff5db6430-36fca975b9e9a24c-00",
+ "traceparent": "00-2fccfdbdffc6db40b5ee19f0b44cde63-d79ae423ed25074b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ef21eef0d18297791db1e8709990adfa",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:22 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1182,14 +1195,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:21 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:21 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ef21eef0d18297791db1e8709990adfa",
- "x-ms-request-id": "207545a7-b002-001b-3a21-5aea7a000000",
+ "x-ms-request-id": "9b3326f5-4002-002c-3d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableMultipleWhere.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableMultipleWhere.json
index f1212d135451..b5bc3ad6aef9 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableMultipleWhere.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableMultipleWhere.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-861ad6cc2171734a871ce7a270631c7c-0ca9f7032a283d49-00",
+ "traceparent": "00-a707a6db5dddfb4293e7cdef740bd39f-67d4bd28ecea5845-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "191f9ab216d89e8122792048952cb0b3",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:12 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:02 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:11 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablecv2f4485\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "191f9ab216d89e8122792048952cb0b3",
- "x-ms-request-id": "20753440-b002-001b-0d21-5aea7a000000",
+ "x-ms-request-id": "9b331ef6-4002-002c-4186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablecv2f4485?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f7ba815c96a34a4198a26c34392a15d3-7c586f8b81f01a49-00",
+ "traceparent": "00-369e305d14c11d4b898aa5d2f8868d2c-c6ba0ebb26c4cc46-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0259d18267b3097b0bfee1304004a82e",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:12 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -130,8 +132,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:02 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.1088771Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:11 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A12.5207302Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablecv2f4485(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -140,19 +142,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0259d18267b3097b0bfee1304004a82e",
- "x-ms-request-id": "2075344d-b002-001b-1521-5aea7a000000",
+ "x-ms-request-id": "9b331f01-4002-002c-4a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablecv2f4485/@Element",
"odata.type": "chrissscratch.testtablecv2f4485",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablecv2f4485(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.1088771Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A12.5207302Z\u0027\u0022",
"odata.editLink": "testtablecv2f4485(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.1088771Z",
+ "Timestamp": "2020-07-17T22:09:12.5207302Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -198,17 +200,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablecv2f4485?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-5b9cae32e5ea214c8ad2829842edc376-b26a463383f30442-00",
+ "traceparent": "00-8289cd871d6bae4f8c1688b91a7b3680-4071e0eded9a7344-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f76606b5f962ad534338410953c8e652",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:12 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -279,8 +282,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:02 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.1529141Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:11 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A12.562766Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablecv2f4485(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -289,19 +292,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f76606b5f962ad534338410953c8e652",
- "x-ms-request-id": "20753452-b002-001b-1a21-5aea7a000000",
+ "x-ms-request-id": "9b331f0c-4002-002c-5486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablecv2f4485/@Element",
"odata.type": "chrissscratch.testtablecv2f4485",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablecv2f4485(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.1529141Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A12.562766Z\u0027\u0022",
"odata.editLink": "testtablecv2f4485(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.1529141Z",
+ "Timestamp": "2020-07-17T22:09:12.562766Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -347,14 +350,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablecv2f4485()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28RowKey%20eq%20%270002%27%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9090e01aa5104bc71e150dda35505d1d",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:12 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -363,7 +367,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:02 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:11 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -371,7 +375,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "9090e01aa5104bc71e150dda35505d1d",
- "x-ms-request-id": "20753460-b002-001b-2621-5aea7a000000",
+ "x-ms-request-id": "9b331f12-4002-002c-5a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -380,12 +384,12 @@
{
"odata.type": "chrissscratch.testtablecv2f4485",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablecv2f4485(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.1529141Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A12.562766Z\u0027\u0022",
"odata.editLink": "testtablecv2f4485(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.1529141Z",
+ "Timestamp": "2020-07-17T22:09:12.562766Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -435,13 +439,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-a7c23649876ddd49b8c61bb8eec1036c-5d8832172779d34e-00",
+ "traceparent": "00-aec18a4841319f4586cefe6b5809500c-d81b5d0eb4636642-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8e92f2d0b9c688507dacbe7b2572b643",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:12 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -450,14 +454,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:02 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:11 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "8e92f2d0b9c688507dacbe7b2572b643",
- "x-ms-request-id": "2075346d-b002-001b-3121-5aea7a000000",
+ "x-ms-request-id": "9b331f19-4002-002c-6186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableMultipleWhereAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableMultipleWhereAsync.json
index 17751529da43..ff5e9d6b5066 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableMultipleWhereAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableMultipleWhereAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-18ffab6f09a7984f8d6225f9ee083b6e-de096f7419b7f447-00",
+ "traceparent": "00-7d118a61bc4cf4489a6d2c416808668d-81275a587f42d745-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "710cc55e6c1a09cc63d0658e4430d5db",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:22 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:21 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:21 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableydtygz76\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "710cc55e6c1a09cc63d0658e4430d5db",
- "x-ms-request-id": "207545a9-b002-001b-3c21-5aea7a000000",
+ "x-ms-request-id": "9b332701-4002-002c-4986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableydtygz76?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-217b31d0b312fe419a15a5319677b6d2-a53038514fbf804e-00",
+ "traceparent": "00-8efb6ad34dc6dd4eb6c749c52357cd7d-1009f9970735794b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c6ef5e79a3f54ff106bf795396256c54",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:22 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -130,8 +132,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:21 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.2137375Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:21 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A22.2948685Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableydtygz76(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -140,19 +142,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "c6ef5e79a3f54ff106bf795396256c54",
- "x-ms-request-id": "207545b3-b002-001b-4521-5aea7a000000",
+ "x-ms-request-id": "9b33270d-4002-002c-5486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableydtygz76/@Element",
"odata.type": "chrissscratch.testtableydtygz76",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableydtygz76(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.2137375Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A22.2948685Z\u0027\u0022",
"odata.editLink": "testtableydtygz76(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.2137375Z",
+ "Timestamp": "2020-07-17T22:09:22.2948685Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -198,17 +200,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableydtygz76?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a891186077476942bd9330b5a963ff36-65133e4753531a49-00",
+ "traceparent": "00-5d59065855d39f48acb1ededef14befb-5631a0de037cd749-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1fe634ff71511ccdabb2c92a1a88aa91",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:22 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -279,8 +282,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:21 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.258774Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:21 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A22.3399064Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableydtygz76(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -289,19 +292,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "1fe634ff71511ccdabb2c92a1a88aa91",
- "x-ms-request-id": "207545b9-b002-001b-4b21-5aea7a000000",
+ "x-ms-request-id": "9b332714-4002-002c-5b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableydtygz76/@Element",
"odata.type": "chrissscratch.testtableydtygz76",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableydtygz76(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.258774Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A22.3399064Z\u0027\u0022",
"odata.editLink": "testtableydtygz76(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.258774Z",
+ "Timestamp": "2020-07-17T22:09:22.3399064Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -347,14 +350,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableydtygz76()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28RowKey%20eq%20%270002%27%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1d8bf2c9b234bb9dd4bd6b5af378733e",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:22 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -363,7 +367,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:22 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:21 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -371,7 +375,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "1d8bf2c9b234bb9dd4bd6b5af378733e",
- "x-ms-request-id": "207545c0-b002-001b-5121-5aea7a000000",
+ "x-ms-request-id": "9b33271c-4002-002c-6186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -380,12 +384,12 @@
{
"odata.type": "chrissscratch.testtableydtygz76",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableydtygz76(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.258774Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A22.3399064Z\u0027\u0022",
"odata.editLink": "testtableydtygz76(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.258774Z",
+ "Timestamp": "2020-07-17T22:09:22.3399064Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -435,13 +439,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-d998497016f5184f9776e965d2d49003-b2de25e1b4512e43-00",
+ "traceparent": "00-004c093253f4ca4b8a85eae08e7e8de2-a12b2a5233f01d48-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0f8e1064b64a088a90d31a42d9c6347d",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:22 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -450,14 +454,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:22 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:21 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0f8e1064b64a088a90d31a42d9c6347d",
- "x-ms-request-id": "207545cc-b002-001b-5c21-5aea7a000000",
+ "x-ms-request-id": "9b332725-4002-002c-6a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableNestedParanthesis.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableNestedParanthesis.json
index afb8dcd92fb7..027fb21bd562 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableNestedParanthesis.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableNestedParanthesis.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a5493b99ee3b23429d51bc59475fcd03-8558b7452a343043-00",
+ "traceparent": "00-a1e9a7089fbb9046aa325aaf763c3a78-1b8b21355f7caa48-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2de39f0c456b089a1b319d75f7f8853b",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:12 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:03 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:11 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableq4r0x044\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "2de39f0c456b089a1b319d75f7f8853b",
- "x-ms-request-id": "2075347c-b002-001b-4021-5aea7a000000",
+ "x-ms-request-id": "9b331f1e-4002-002c-6686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableq4r0x044?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-50b022bafaa54f449ff445a0f8cac115-82fa18cc22109841-00",
+ "traceparent": "00-168a77fd03f05f44b05f7cf597ba4855-6a0b42120325504c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "913c351b214a02fb214013df44fc518e",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:12 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -130,8 +132,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:03 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.3250574Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:12 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A12.7539241Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableq4r0x044(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -140,19 +142,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "913c351b214a02fb214013df44fc518e",
- "x-ms-request-id": "20753486-b002-001b-4921-5aea7a000000",
+ "x-ms-request-id": "9b331f22-4002-002c-6986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableq4r0x044/@Element",
"odata.type": "chrissscratch.testtableq4r0x044",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableq4r0x044(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.3250574Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A12.7539241Z\u0027\u0022",
"odata.editLink": "testtableq4r0x044(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.3250574Z",
+ "Timestamp": "2020-07-17T22:09:12.7539241Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -198,17 +200,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableq4r0x044?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c764bec68fe8564e83574471ec1cbe90-84198a2dfa3ba749-00",
+ "traceparent": "00-f96df7faa48faf42ae6704065350a5f8-c3bf4367b60c9a48-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "41b9005d70eb47aa555fa45c14011e0d",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -279,8 +282,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:03 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.3680935Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:12 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A12.9310714Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableq4r0x044(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -289,19 +292,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "41b9005d70eb47aa555fa45c14011e0d",
- "x-ms-request-id": "20753493-b002-001b-5621-5aea7a000000",
+ "x-ms-request-id": "9b331f41-4002-002c-0886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableq4r0x044/@Element",
"odata.type": "chrissscratch.testtableq4r0x044",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableq4r0x044(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.3680935Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A12.9310714Z\u0027\u0022",
"odata.editLink": "testtableq4r0x044(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.3680935Z",
+ "Timestamp": "2020-07-17T22:09:12.9310714Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -347,17 +350,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableq4r0x044?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1795",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-11a08c84db069f4ca01effe3e58fbb4a-56f8ab27809a3d47-00",
+ "traceparent": "00-cb6c904bc97dfc42b1785d337836c4c0-217937ce7a169a4d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a118b5c03f89eab8a3e00c2b32bac31f",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -428,8 +432,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:03 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.4121288Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:12 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A12.9861167Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableq4r0x044(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -438,19 +442,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "a118b5c03f89eab8a3e00c2b32bac31f",
- "x-ms-request-id": "207534a5-b002-001b-6821-5aea7a000000",
+ "x-ms-request-id": "9b331f49-4002-002c-1086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableq4r0x044/@Element",
"odata.type": "chrissscratch.testtableq4r0x044",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableq4r0x044(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.4121288Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A12.9861167Z\u0027\u0022",
"odata.editLink": "testtableq4r0x044(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.4121288Z",
+ "Timestamp": "2020-07-17T22:09:12.9861167Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -496,17 +500,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableq4r0x044?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-474ba7c8c384a1459e9c3ccaf69a2bec-96bf96b5447ddd48-00",
+ "traceparent": "00-42b62a65d0b84e4db545fdd66af1d28e-0be44ac90cd0d742-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f7170ee0433faa508bf43ceb7d9fed20",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -577,8 +582,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:03 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.4561658Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:12 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.0311546Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableq4r0x044(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -587,19 +592,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f7170ee0433faa508bf43ceb7d9fed20",
- "x-ms-request-id": "207534af-b002-001b-7221-5aea7a000000",
+ "x-ms-request-id": "9b331f53-4002-002c-1a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableq4r0x044/@Element",
"odata.type": "chrissscratch.testtableq4r0x044",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableq4r0x044(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.4561658Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.0311546Z\u0027\u0022",
"odata.editLink": "testtableq4r0x044(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.4561658Z",
+ "Timestamp": "2020-07-17T22:09:13.0311546Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -645,14 +650,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableq4r0x044()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28%28%28RowKey%20eq%20%270004%27%29%20and%20%28Int32%20eq%204%29%29%20or%20%28%28%28Int32%20eq%202%29%20and%20%28%28String%20eq%20%27wrong%20string%27%29%20or%20%28Bool%20eq%20true%29%29%29%20and%20%28not%20%28%28IntegerPrimitive%20eq%201%29%20and%20%28LongPrimitive%20eq%202147483648L%29%29%29%29%29%20or%20%28LongPrimitiveN%20eq%202147483697L%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8f1f0622afe31d0547ce9e0a647f159b",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -661,7 +667,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:03 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:12 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -669,7 +675,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "8f1f0622afe31d0547ce9e0a647f159b",
- "x-ms-request-id": "207534c3-b002-001b-0521-5aea7a000000",
+ "x-ms-request-id": "9b331f5b-4002-002c-2186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -678,12 +684,12 @@
{
"odata.type": "chrissscratch.testtableq4r0x044",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableq4r0x044(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.3680935Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A12.9310714Z\u0027\u0022",
"odata.editLink": "testtableq4r0x044(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.3680935Z",
+ "Timestamp": "2020-07-17T22:09:12.9310714Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -727,12 +733,12 @@
{
"odata.type": "chrissscratch.testtableq4r0x044",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableq4r0x044(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.4561658Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.0311546Z\u0027\u0022",
"odata.editLink": "testtableq4r0x044(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.4561658Z",
+ "Timestamp": "2020-07-17T22:09:13.0311546Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -782,13 +788,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-89605615615a4143b65aca864dc0fd76-2715d52b8b3a3f46-00",
+ "traceparent": "00-ed3e3ef9357abb4dabe0253cb3dde352-9753842fac37674b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "057c849b26ea7ccd656e169403cd6d04",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -797,14 +803,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:03 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:12 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "057c849b26ea7ccd656e169403cd6d04",
- "x-ms-request-id": "207534dd-b002-001b-1f21-5aea7a000000",
+ "x-ms-request-id": "9b331f76-4002-002c-3c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableNestedParanthesisAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableNestedParanthesisAsync.json
index 925ac7582872..17199c23da27 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableNestedParanthesisAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableNestedParanthesisAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a7d51cf35119d047aced822e18dbb406-c3ff7ad6f171134a-00",
+ "traceparent": "00-6c5e5ae219a66b47b945fc8d5a47c8af-ac0a60efefee9e42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "29b7c759ce726b0d9004fe794827c5d1",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:22 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:22 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:21 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablectfjxpiv\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "29b7c759ce726b0d9004fe794827c5d1",
- "x-ms-request-id": "207545d4-b002-001b-6421-5aea7a000000",
+ "x-ms-request-id": "9b332731-4002-002c-7586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablectfjxpiv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-b1406ad9464d7847878fe2f568ca0eb1-17d3a09e6cfa5f48-00",
+ "traceparent": "00-13fb96f456e3454fa52a3eb0b2400cd7-47823666657ef246-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "afe9fcb12c55e119f08c19bd64170319",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:22 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -130,8 +132,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:22 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.4439281Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:21 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A22.5550861Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablectfjxpiv(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -140,19 +142,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "afe9fcb12c55e119f08c19bd64170319",
- "x-ms-request-id": "207545dd-b002-001b-6a21-5aea7a000000",
+ "x-ms-request-id": "9b332737-4002-002c-7a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablectfjxpiv/@Element",
"odata.type": "chrissscratch.testtablectfjxpiv",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablectfjxpiv(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.4439281Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A22.5550861Z\u0027\u0022",
"odata.editLink": "testtablectfjxpiv(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.4439281Z",
+ "Timestamp": "2020-07-17T22:09:22.5550861Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -198,17 +200,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablectfjxpiv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-2a548e64aacbf34aa51b4231edf5077d-8249aaf599f82147-00",
+ "traceparent": "00-2e9d3b95bea9f048ae0dd5618394ffcf-a1508d16cb9cab45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "19641871c2032e5f7ead8e321c414bf1",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:22 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -279,8 +282,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:22 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.4929689Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:21 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A22.6081294Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablectfjxpiv(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -289,19 +292,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "19641871c2032e5f7ead8e321c414bf1",
- "x-ms-request-id": "207545ea-b002-001b-7621-5aea7a000000",
+ "x-ms-request-id": "9b332741-4002-002c-0486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablectfjxpiv/@Element",
"odata.type": "chrissscratch.testtablectfjxpiv",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablectfjxpiv(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.4929689Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A22.6081294Z\u0027\u0022",
"odata.editLink": "testtablectfjxpiv(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.4929689Z",
+ "Timestamp": "2020-07-17T22:09:22.6081294Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -347,17 +350,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablectfjxpiv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1795",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e1124c37024ad64f8d5040b5e6f68ae1-2ad9689fbd331043-00",
+ "traceparent": "00-ff617d831688e944a45a30975e546ae1-ee56860ca3a6b54a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b7d1f782d86b2dcaaed638e5b44f0679",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:22 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -428,8 +432,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:22 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.5390066Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:21 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A22.6531668Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablectfjxpiv(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -438,19 +442,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "b7d1f782d86b2dcaaed638e5b44f0679",
- "x-ms-request-id": "207545f6-b002-001b-0221-5aea7a000000",
+ "x-ms-request-id": "9b33274f-4002-002c-1286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablectfjxpiv/@Element",
"odata.type": "chrissscratch.testtablectfjxpiv",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablectfjxpiv(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.5390066Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A22.6531668Z\u0027\u0022",
"odata.editLink": "testtablectfjxpiv(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.5390066Z",
+ "Timestamp": "2020-07-17T22:09:22.6531668Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -496,17 +500,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablectfjxpiv?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-df465a3093e8d04081e843173da69ba2-9b831173f4ce4e48-00",
+ "traceparent": "00-1c97dec247469f49a4794decb4daf25f-c1bd0a990cc04542-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3008e501abc3eecd9dbb31a79de7c5af",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:22 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -577,8 +582,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:22 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.5850453Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:21 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A22.6932001Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablectfjxpiv(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -587,19 +592,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "3008e501abc3eecd9dbb31a79de7c5af",
- "x-ms-request-id": "20754600-b002-001b-0c21-5aea7a000000",
+ "x-ms-request-id": "9b33275c-4002-002c-1f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablectfjxpiv/@Element",
"odata.type": "chrissscratch.testtablectfjxpiv",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablectfjxpiv(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.5850453Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A22.6932001Z\u0027\u0022",
"odata.editLink": "testtablectfjxpiv(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.5850453Z",
+ "Timestamp": "2020-07-17T22:09:22.6932001Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -645,14 +650,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablectfjxpiv()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28%28%28RowKey%20eq%20%270004%27%29%20and%20%28Int32%20eq%204%29%29%20or%20%28%28%28Int32%20eq%202%29%20and%20%28%28String%20eq%20%27wrong%20string%27%29%20or%20%28Bool%20eq%20true%29%29%29%20and%20%28not%20%28%28IntegerPrimitive%20eq%201%29%20and%20%28LongPrimitive%20eq%202147483648L%29%29%29%29%29%20or%20%28LongPrimitiveN%20eq%202147483697L%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6c3b28404b4698ad4d376b2c8a79792e",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:22 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:22 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -661,7 +667,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:22 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:21 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -669,7 +675,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "6c3b28404b4698ad4d376b2c8a79792e",
- "x-ms-request-id": "2075460a-b002-001b-1621-5aea7a000000",
+ "x-ms-request-id": "9b33276b-4002-002c-2e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -678,12 +684,12 @@
{
"odata.type": "chrissscratch.testtablectfjxpiv",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablectfjxpiv(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.4929689Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A22.6081294Z\u0027\u0022",
"odata.editLink": "testtablectfjxpiv(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.4929689Z",
+ "Timestamp": "2020-07-17T22:09:22.6081294Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -727,12 +733,12 @@
{
"odata.type": "chrissscratch.testtablectfjxpiv",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablectfjxpiv(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.5850453Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A22.6932001Z\u0027\u0022",
"odata.editLink": "testtablectfjxpiv(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.5850453Z",
+ "Timestamp": "2020-07-17T22:09:22.6932001Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -782,13 +788,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-8755258af1f77649823dbaf7b618c59c-295e2b75dbd3fc44-00",
+ "traceparent": "00-a9bd80bff2e51942816747dbfd49ba56-e1d5e25de6f38e4d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "363015a61b39d62d2ae21ab0a62390c6",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:23 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:22 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -797,14 +803,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:22 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:22 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "363015a61b39d62d2ae21ab0a62390c6",
- "x-ms-request-id": "20754618-b002-001b-2321-5aea7a000000",
+ "x-ms-request-id": "9b332793-4002-002c-5286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableOnSupportedTypes.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableOnSupportedTypes.json
index 4053056380c6..fa81669e0018 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableOnSupportedTypes.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableOnSupportedTypes.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-50000bb6c9aae54099ede4fda6bf0ce6-4d837fd44df1e74a-00",
+ "traceparent": "00-bd0b8e415a11c34a8f0a3db8031db53b-32ade009db4c3c45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7736c26e527f58a7201fba10f6bb57ba",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:03 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:12 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablecsygdrme\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "7736c26e527f58a7201fba10f6bb57ba",
- "x-ms-request-id": "207534e8-b002-001b-2921-5aea7a000000",
+ "x-ms-request-id": "9b331f82-4002-002c-4786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablecsygdrme?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-3f2497b3b5ce384a9997562cca05ef32-3638642f55e2214f-00",
+ "traceparent": "00-da448d0ec4cd9c408dc774c2398e858a-2c9c0c91ed280845-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e615ee7aa1a9d5bfb5e41df5fd4a5659",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -130,8 +132,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:03 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.7193852Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:12 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.3564254Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -140,19 +142,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "e615ee7aa1a9d5bfb5e41df5fd4a5659",
- "x-ms-request-id": "207534f9-b002-001b-3921-5aea7a000000",
+ "x-ms-request-id": "9b331f94-4002-002c-5686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablecsygdrme/@Element",
"odata.type": "chrissscratch.testtablecsygdrme",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.7193852Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.3564254Z\u0027\u0022",
"odata.editLink": "testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.7193852Z",
+ "Timestamp": "2020-07-17T22:09:13.3564254Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -198,17 +200,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablecsygdrme?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-32ca270c26ef074c921a2cc89b01e756-49331b4369085a42-00",
+ "traceparent": "00-a148aded4cddd44ba2b6cc52263aef62-bc8988258915a843-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2965f3321a73c9075cf7c3c0686f4b59",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -279,8 +282,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:03 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.7654229Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:12 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.4034637Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -289,19 +292,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "2965f3321a73c9075cf7c3c0686f4b59",
- "x-ms-request-id": "20753505-b002-001b-4521-5aea7a000000",
+ "x-ms-request-id": "9b331f9e-4002-002c-6086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablecsygdrme/@Element",
"odata.type": "chrissscratch.testtablecsygdrme",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.7654229Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.4034637Z\u0027\u0022",
"odata.editLink": "testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.7654229Z",
+ "Timestamp": "2020-07-17T22:09:13.4034637Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -347,17 +350,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablecsygdrme?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1795",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9931406a8e4fb441b9bffcec09b0a3eb-b12657b04c1f8e48-00",
+ "traceparent": "00-45c3d6fdb230234ba72f493c725c8493-47518b224f6d264d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3bd2e2b3f0a2ccf90360c29a35b25bd6",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -428,8 +432,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:03 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.8104608Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:12 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.4515041Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -438,19 +442,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "3bd2e2b3f0a2ccf90360c29a35b25bd6",
- "x-ms-request-id": "2075350b-b002-001b-4b21-5aea7a000000",
+ "x-ms-request-id": "9b331fa5-4002-002c-6786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablecsygdrme/@Element",
"odata.type": "chrissscratch.testtablecsygdrme",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.8104608Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.4515041Z\u0027\u0022",
"odata.editLink": "testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.8104608Z",
+ "Timestamp": "2020-07-17T22:09:13.4515041Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -496,17 +500,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablecsygdrme?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-3f80f628b7d2c64bb5aab133624fb227-0f549b9283446443-00",
+ "traceparent": "00-f7ff3459b0ba5d46bcd03adedf17d6e3-29c223558901e040-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "03de61c82e556047e74c89b1defe6d46",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -577,8 +582,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:03 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.8584994Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:12 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.4975428Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -587,19 +592,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "03de61c82e556047e74c89b1defe6d46",
- "x-ms-request-id": "20753519-b002-001b-5921-5aea7a000000",
+ "x-ms-request-id": "9b331fad-4002-002c-6f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablecsygdrme/@Element",
"odata.type": "chrissscratch.testtablecsygdrme",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.8584994Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.4975428Z\u0027\u0022",
"odata.editLink": "testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.8584994Z",
+ "Timestamp": "2020-07-17T22:09:13.4975428Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -645,14 +650,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablecsygdrme()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=String%20ge%20%270003%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1a41c3991b7741b6fa992612586d94a9",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -661,7 +667,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:03 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:12 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -669,7 +675,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "1a41c3991b7741b6fa992612586d94a9",
- "x-ms-request-id": "20753529-b002-001b-6921-5aea7a000000",
+ "x-ms-request-id": "9b331fba-4002-002c-7c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -678,12 +684,12 @@
{
"odata.type": "chrissscratch.testtablecsygdrme",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.8104608Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.4515041Z\u0027\u0022",
"odata.editLink": "testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.8104608Z",
+ "Timestamp": "2020-07-17T22:09:13.4515041Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -727,12 +733,12 @@
{
"odata.type": "chrissscratch.testtablecsygdrme",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.8584994Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.4975428Z\u0027\u0022",
"odata.editLink": "testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.8584994Z",
+ "Timestamp": "2020-07-17T22:09:13.4975428Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -780,14 +786,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablecsygdrme()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Guid%20eq%20guid%270d391d16-97f1-4b9a-be68-4cc871f90003%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "07f7ed9c479085039b7254566747ed05",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -796,7 +803,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:03 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:12 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -804,7 +811,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "07f7ed9c479085039b7254566747ed05",
- "x-ms-request-id": "20753539-b002-001b-7921-5aea7a000000",
+ "x-ms-request-id": "9b331fd0-4002-002c-1086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -813,12 +820,12 @@
{
"odata.type": "chrissscratch.testtablecsygdrme",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.8104608Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.4515041Z\u0027\u0022",
"odata.editLink": "testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.8104608Z",
+ "Timestamp": "2020-07-17T22:09:13.4515041Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -866,14 +873,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablecsygdrme()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Int64%20ge%202147483650L",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "71007bf34071ad5eaa9c08bc08340779",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -882,7 +890,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:03 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:12 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -890,7 +898,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "71007bf34071ad5eaa9c08bc08340779",
- "x-ms-request-id": "20753545-b002-001b-0521-5aea7a000000",
+ "x-ms-request-id": "9b331fe0-4002-002c-2086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -899,12 +907,12 @@
{
"odata.type": "chrissscratch.testtablecsygdrme",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.8104608Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.4515041Z\u0027\u0022",
"odata.editLink": "testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.8104608Z",
+ "Timestamp": "2020-07-17T22:09:13.4515041Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -948,12 +956,12 @@
{
"odata.type": "chrissscratch.testtablecsygdrme",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.8584994Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.4975428Z\u0027\u0022",
"odata.editLink": "testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.8584994Z",
+ "Timestamp": "2020-07-17T22:09:13.4975428Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1001,14 +1009,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablecsygdrme()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=LongPrimitive%20ge%202147483650L",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f115dfb7660652b5c0bb7f05c660dab3",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1017,7 +1026,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:03 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:12 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1025,7 +1034,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f115dfb7660652b5c0bb7f05c660dab3",
- "x-ms-request-id": "20753560-b002-001b-1f21-5aea7a000000",
+ "x-ms-request-id": "9b331ff0-4002-002c-2f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1034,12 +1043,12 @@
{
"odata.type": "chrissscratch.testtablecsygdrme",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.8104608Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.4515041Z\u0027\u0022",
"odata.editLink": "testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.8104608Z",
+ "Timestamp": "2020-07-17T22:09:13.4515041Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1083,12 +1092,12 @@
{
"odata.type": "chrissscratch.testtablecsygdrme",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.8584994Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.4975428Z\u0027\u0022",
"odata.editLink": "testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.8584994Z",
+ "Timestamp": "2020-07-17T22:09:13.4975428Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1136,14 +1145,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablecsygdrme()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=LongPrimitiveN%20ge%202147483650L",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "dc1f20ab226d5b388e495cf43e467d66",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1152,7 +1162,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:03 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:13 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1160,7 +1170,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "dc1f20ab226d5b388e495cf43e467d66",
- "x-ms-request-id": "2075357b-b002-001b-3a21-5aea7a000000",
+ "x-ms-request-id": "9b332000-4002-002c-3f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1169,12 +1179,12 @@
{
"odata.type": "chrissscratch.testtablecsygdrme",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.8104608Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.4515041Z\u0027\u0022",
"odata.editLink": "testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.8104608Z",
+ "Timestamp": "2020-07-17T22:09:13.4515041Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1218,12 +1228,12 @@
{
"odata.type": "chrissscratch.testtablecsygdrme",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.8584994Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.4975428Z\u0027\u0022",
"odata.editLink": "testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.8584994Z",
+ "Timestamp": "2020-07-17T22:09:13.4975428Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1271,14 +1281,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablecsygdrme()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Double%20ge%203.03",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "879eda6afc318dfec5aeb1b5c059e649",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1287,7 +1298,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:04 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:13 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1295,7 +1306,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "879eda6afc318dfec5aeb1b5c059e649",
- "x-ms-request-id": "207535a5-b002-001b-5f21-5aea7a000000",
+ "x-ms-request-id": "9b33200a-4002-002c-4986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1304,12 +1315,12 @@
{
"odata.type": "chrissscratch.testtablecsygdrme",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.8104608Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.4515041Z\u0027\u0022",
"odata.editLink": "testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.8104608Z",
+ "Timestamp": "2020-07-17T22:09:13.4515041Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1353,12 +1364,12 @@
{
"odata.type": "chrissscratch.testtablecsygdrme",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.8584994Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.4975428Z\u0027\u0022",
"odata.editLink": "testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.8584994Z",
+ "Timestamp": "2020-07-17T22:09:13.4975428Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1406,14 +1417,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablecsygdrme()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=DoublePrimitive%20ge%203.03",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e71155c22b15950ca7b962bc09c11379",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1422,7 +1434,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:04 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:13 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1430,7 +1442,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "e71155c22b15950ca7b962bc09c11379",
- "x-ms-request-id": "207535c5-b002-001b-7f21-5aea7a000000",
+ "x-ms-request-id": "9b332018-4002-002c-5786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1439,12 +1451,12 @@
{
"odata.type": "chrissscratch.testtablecsygdrme",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.8104608Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.4515041Z\u0027\u0022",
"odata.editLink": "testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.8104608Z",
+ "Timestamp": "2020-07-17T22:09:13.4515041Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1488,12 +1500,12 @@
{
"odata.type": "chrissscratch.testtablecsygdrme",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.8584994Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.4975428Z\u0027\u0022",
"odata.editLink": "testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.8584994Z",
+ "Timestamp": "2020-07-17T22:09:13.4975428Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1541,14 +1553,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablecsygdrme()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Int32%20ge%203",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ec9a193e53c2af81229216be71839b35",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1557,7 +1570,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:04 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:13 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1565,7 +1578,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ec9a193e53c2af81229216be71839b35",
- "x-ms-request-id": "207535e9-b002-001b-2221-5aea7a000000",
+ "x-ms-request-id": "9b332035-4002-002c-7186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1574,12 +1587,12 @@
{
"odata.type": "chrissscratch.testtablecsygdrme",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.8104608Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.4515041Z\u0027\u0022",
"odata.editLink": "testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.8104608Z",
+ "Timestamp": "2020-07-17T22:09:13.4515041Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1623,12 +1636,12 @@
{
"odata.type": "chrissscratch.testtablecsygdrme",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.8584994Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.4975428Z\u0027\u0022",
"odata.editLink": "testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.8584994Z",
+ "Timestamp": "2020-07-17T22:09:13.4975428Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1676,14 +1689,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablecsygdrme()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Int32N%20ge%203",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e931136396353f51cd09df7799418404",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1692,7 +1706,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:04 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:13 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1700,7 +1714,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "e931136396353f51cd09df7799418404",
- "x-ms-request-id": "2075360c-b002-001b-4421-5aea7a000000",
+ "x-ms-request-id": "9b332048-4002-002c-0186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1709,12 +1723,12 @@
{
"odata.type": "chrissscratch.testtablecsygdrme",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.8104608Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.4515041Z\u0027\u0022",
"odata.editLink": "testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.8104608Z",
+ "Timestamp": "2020-07-17T22:09:13.4515041Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1758,12 +1772,12 @@
{
"odata.type": "chrissscratch.testtablecsygdrme",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.8584994Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.4975428Z\u0027\u0022",
"odata.editLink": "testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.8584994Z",
+ "Timestamp": "2020-07-17T22:09:13.4975428Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1811,14 +1825,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablecsygdrme()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=DateTimeOffset%20ge%20datetime%272020-01-01T01%3A04%3A00Z%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a776389bfabe6f87d462c483144d2323",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1827,7 +1842,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:04 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:13 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1835,7 +1850,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "a776389bfabe6f87d462c483144d2323",
- "x-ms-request-id": "20753622-b002-001b-5921-5aea7a000000",
+ "x-ms-request-id": "9b33205e-4002-002c-1786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1844,12 +1859,12 @@
{
"odata.type": "chrissscratch.testtablecsygdrme",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.8104608Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.4515041Z\u0027\u0022",
"odata.editLink": "testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.8104608Z",
+ "Timestamp": "2020-07-17T22:09:13.4515041Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1893,12 +1908,12 @@
{
"odata.type": "chrissscratch.testtablecsygdrme",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.8584994Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.4975428Z\u0027\u0022",
"odata.editLink": "testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.8584994Z",
+ "Timestamp": "2020-07-17T22:09:13.4975428Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1946,14 +1961,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablecsygdrme()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=DateTimeOffset%20lt%20datetime%272020-01-01T01%3A04%3A00Z%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f6592c1e298fa843c85b1fb9730915e1",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1962,7 +1978,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:04 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:13 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1970,7 +1986,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f6592c1e298fa843c85b1fb9730915e1",
- "x-ms-request-id": "20753636-b002-001b-6b21-5aea7a000000",
+ "x-ms-request-id": "9b33206b-4002-002c-2386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1979,12 +1995,12 @@
{
"odata.type": "chrissscratch.testtablecsygdrme",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.7193852Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.3564254Z\u0027\u0022",
"odata.editLink": "testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.7193852Z",
+ "Timestamp": "2020-07-17T22:09:13.3564254Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2028,12 +2044,12 @@
{
"odata.type": "chrissscratch.testtablecsygdrme",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.7654229Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.4034637Z\u0027\u0022",
"odata.editLink": "testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.7654229Z",
+ "Timestamp": "2020-07-17T22:09:13.4034637Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2081,14 +2097,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablecsygdrme()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Bool%20eq%20false",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3923120ef40c68778cc215d3d2cd2a7f",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2097,7 +2114,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:04 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:13 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -2105,7 +2122,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "3923120ef40c68778cc215d3d2cd2a7f",
- "x-ms-request-id": "20753657-b002-001b-0921-5aea7a000000",
+ "x-ms-request-id": "9b33208a-4002-002c-4086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -2114,12 +2131,12 @@
{
"odata.type": "chrissscratch.testtablecsygdrme",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.7193852Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.3564254Z\u0027\u0022",
"odata.editLink": "testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.7193852Z",
+ "Timestamp": "2020-07-17T22:09:13.3564254Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2163,12 +2180,12 @@
{
"odata.type": "chrissscratch.testtablecsygdrme",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.8104608Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.4515041Z\u0027\u0022",
"odata.editLink": "testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.8104608Z",
+ "Timestamp": "2020-07-17T22:09:13.4515041Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2216,14 +2233,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablecsygdrme()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=BoolPrimitive%20eq%20false",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6c59bce58de77175f4cede63dbcdfbca",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2232,7 +2250,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:04 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:13 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -2240,7 +2258,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "6c59bce58de77175f4cede63dbcdfbca",
- "x-ms-request-id": "2075367a-b002-001b-2921-5aea7a000000",
+ "x-ms-request-id": "9b33209a-4002-002c-4e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -2249,12 +2267,12 @@
{
"odata.type": "chrissscratch.testtablecsygdrme",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.7193852Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.3564254Z\u0027\u0022",
"odata.editLink": "testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.7193852Z",
+ "Timestamp": "2020-07-17T22:09:13.3564254Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2298,12 +2316,12 @@
{
"odata.type": "chrissscratch.testtablecsygdrme",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.8104608Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.4515041Z\u0027\u0022",
"odata.editLink": "testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.8104608Z",
+ "Timestamp": "2020-07-17T22:09:13.4515041Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2351,14 +2369,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablecsygdrme()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Binary%20eq%20X%27010203%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0275e24ce92a2a16b5f06acc1470d5fa",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2367,7 +2386,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:05 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:14 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -2375,7 +2394,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0275e24ce92a2a16b5f06acc1470d5fa",
- "x-ms-request-id": "207536b0-b002-001b-5a21-5aea7a000000",
+ "x-ms-request-id": "9b3320b0-4002-002c-5d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -2384,12 +2403,12 @@
{
"odata.type": "chrissscratch.testtablecsygdrme",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.8104608Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.4515041Z\u0027\u0022",
"odata.editLink": "testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.8104608Z",
+ "Timestamp": "2020-07-17T22:09:13.4515041Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2437,14 +2456,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablecsygdrme()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=BinaryPrimitive%20eq%20X%27010203%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b6d39f30a8b080fa9db2443e15148dbe",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2453,7 +2473,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:05 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:14 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -2461,7 +2481,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "b6d39f30a8b080fa9db2443e15148dbe",
- "x-ms-request-id": "207536bd-b002-001b-6321-5aea7a000000",
+ "x-ms-request-id": "9b3320bd-4002-002c-6886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -2470,12 +2490,12 @@
{
"odata.type": "chrissscratch.testtablecsygdrme",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.8104608Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.4515041Z\u0027\u0022",
"odata.editLink": "testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.8104608Z",
+ "Timestamp": "2020-07-17T22:09:13.4515041Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2523,14 +2543,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablecsygdrme()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28%28%28%28%28%28%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28String%20ge%20%270003%27%29%29%20and%20%28Int64%20ge%202147483650L%29%29%20and%20%28LongPrimitive%20ge%202147483650L%29%29%20and%20%28LongPrimitiveN%20ge%202147483650L%29%29%20and%20%28Int32%20ge%203%29%29%20and%20%28Int32N%20ge%203%29%29%20and%20%28DateTimeOffset%20ge%20datetime%272020-01-01T01%3A04%3A00Z%27%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ef864ac72858fb55a52eb7f623a85c84",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2539,7 +2560,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:05 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:14 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -2547,7 +2568,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ef864ac72858fb55a52eb7f623a85c84",
- "x-ms-request-id": "207536cc-b002-001b-6f21-5aea7a000000",
+ "x-ms-request-id": "9b3320c2-4002-002c-6d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -2556,12 +2577,12 @@
{
"odata.type": "chrissscratch.testtablecsygdrme",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.8104608Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.4515041Z\u0027\u0022",
"odata.editLink": "testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.8104608Z",
+ "Timestamp": "2020-07-17T22:09:13.4515041Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2605,12 +2626,12 @@
{
"odata.type": "chrissscratch.testtablecsygdrme",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A03.8584994Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A13.4975428Z\u0027\u0022",
"odata.editLink": "testtablecsygdrme(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:03.8584994Z",
+ "Timestamp": "2020-07-17T22:09:13.4975428Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2660,13 +2681,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-730af244873952408b03d5c459ebac13-0175342795031b4c-00",
+ "traceparent": "00-51bd23d5e6623f44b01325e5855c5f7c-bc55f5c772114d44-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3b32e4f844f9a319e8f46577a5d815a1",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2675,14 +2696,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:05 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:14 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "3b32e4f844f9a319e8f46577a5d815a1",
- "x-ms-request-id": "207536ec-b002-001b-0721-5aea7a000000",
+ "x-ms-request-id": "9b3320da-4002-002c-0186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableOnSupportedTypesAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableOnSupportedTypesAsync.json
index 57d6b7c16e14..3d34179355b6 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableOnSupportedTypesAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableOnSupportedTypesAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-0d6c6df394bb9845b7f364b9367ab22a-6b1f9e8851475242-00",
+ "traceparent": "00-574771159cf50a43b81795fee9190bf2-e33c51ed9fbe0d47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "fd04840a65030a0c4bf2d67b733830ce",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:23 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:22 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:22 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:22 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableko8yd3jy\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "fd04840a65030a0c4bf2d67b733830ce",
- "x-ms-request-id": "2075461f-b002-001b-2921-5aea7a000000",
+ "x-ms-request-id": "9b3327a7-4002-002c-6686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c89fd3433ae9e4439d0212e85479cc14-694663054fa12e4a-00",
+ "traceparent": "00-4a3f8ac9c0119f428cd771dc8b52d0c6-d80fde0913ae9045-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d8b655f62a5fafd2076144e75e692f38",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:23 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:23 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -130,8 +132,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:22 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.8132351Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:22 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A22.9864439Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -140,19 +142,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d8b655f62a5fafd2076144e75e692f38",
- "x-ms-request-id": "20754626-b002-001b-2f21-5aea7a000000",
+ "x-ms-request-id": "9b3327c0-4002-002c-7e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableko8yd3jy/@Element",
"odata.type": "chrissscratch.testtableko8yd3jy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.8132351Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A22.9864439Z\u0027\u0022",
"odata.editLink": "testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.8132351Z",
+ "Timestamp": "2020-07-17T22:09:22.9864439Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -198,17 +200,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9eed64e9167ab7459b2d6d99dc34fdbf-2f201e6e7e32b84f-00",
+ "traceparent": "00-b6ab94532418ea41a5354da2bea953f8-34fd85c8ebc7674d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "720b5497ad61429292944ab6fa9053d8",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:23 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:23 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -279,8 +282,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:22 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.861275Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:22 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A23.0404888Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -289,19 +292,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "720b5497ad61429292944ab6fa9053d8",
- "x-ms-request-id": "2075462b-b002-001b-3421-5aea7a000000",
+ "x-ms-request-id": "9b3327cd-4002-002c-0a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableko8yd3jy/@Element",
"odata.type": "chrissscratch.testtableko8yd3jy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.861275Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A23.0404888Z\u0027\u0022",
"odata.editLink": "testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.861275Z",
+ "Timestamp": "2020-07-17T22:09:23.0404888Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -347,17 +350,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1795",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-756cbedcbad4e449b30ec481fc83a780-1f2c2334a861a648-00",
+ "traceparent": "00-153dedb86e506e40836b749e4c4d95a5-b8f9a0db4af61d45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "05abe594d1bbdf7bb255f5a22024ace1",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:23 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:23 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -428,8 +432,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:22 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.9073128Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:22 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A23.0955338Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -438,19 +442,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "05abe594d1bbdf7bb255f5a22024ace1",
- "x-ms-request-id": "2075463a-b002-001b-4321-5aea7a000000",
+ "x-ms-request-id": "9b3327df-4002-002c-1c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableko8yd3jy/@Element",
"odata.type": "chrissscratch.testtableko8yd3jy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.9073128Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A23.0955338Z\u0027\u0022",
"odata.editLink": "testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.9073128Z",
+ "Timestamp": "2020-07-17T22:09:23.0955338Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -496,17 +500,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-fad2bb8a80ebbf4d93e4654f0c98c6bd-8a7fa612c90ecc40-00",
+ "traceparent": "00-d48201f8a8b1874290da4c481122cb64-20d584bed4a1da42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1ee39dc2be2d496dc27446cbe01bb477",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:23 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:23 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -577,8 +582,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:22 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.9523506Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:22 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A23.1455758Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -587,19 +592,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "1ee39dc2be2d496dc27446cbe01bb477",
- "x-ms-request-id": "2075464b-b002-001b-5421-5aea7a000000",
+ "x-ms-request-id": "9b3327e8-4002-002c-2586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtableko8yd3jy/@Element",
"odata.type": "chrissscratch.testtableko8yd3jy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.9523506Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A23.1455758Z\u0027\u0022",
"odata.editLink": "testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.9523506Z",
+ "Timestamp": "2020-07-17T22:09:23.1455758Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -645,14 +650,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=String%20ge%20%270003%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "79536c0d29bec67cd82bbf0bb7f0216e",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:23 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:23 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -661,7 +667,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:22 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:22 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -669,7 +675,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "79536c0d29bec67cd82bbf0bb7f0216e",
- "x-ms-request-id": "20754654-b002-001b-5c21-5aea7a000000",
+ "x-ms-request-id": "9b332803-4002-002c-3e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -678,12 +684,12 @@
{
"odata.type": "chrissscratch.testtableko8yd3jy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.9073128Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A23.0955338Z\u0027\u0022",
"odata.editLink": "testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.9073128Z",
+ "Timestamp": "2020-07-17T22:09:23.0955338Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -727,12 +733,12 @@
{
"odata.type": "chrissscratch.testtableko8yd3jy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.9523506Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A23.1455758Z\u0027\u0022",
"odata.editLink": "testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.9523506Z",
+ "Timestamp": "2020-07-17T22:09:23.1455758Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -780,14 +786,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Guid%20eq%20guid%270d391d16-97f1-4b9a-be68-4cc871f90003%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5cf368e835acd6ab776143478ab0ff96",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:23 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:23 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -796,7 +803,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:22 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:22 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -804,7 +811,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "5cf368e835acd6ab776143478ab0ff96",
- "x-ms-request-id": "20754671-b002-001b-7821-5aea7a000000",
+ "x-ms-request-id": "9b33281c-4002-002c-5686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -813,12 +820,12 @@
{
"odata.type": "chrissscratch.testtableko8yd3jy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.9073128Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A23.0955338Z\u0027\u0022",
"odata.editLink": "testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.9073128Z",
+ "Timestamp": "2020-07-17T22:09:23.0955338Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -866,14 +873,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Int64%20ge%202147483650L",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b4947ea032d09923201d4501fe6191d1",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:23 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:23 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -882,7 +890,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:22 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:22 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -890,7 +898,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "b4947ea032d09923201d4501fe6191d1",
- "x-ms-request-id": "20754683-b002-001b-0a21-5aea7a000000",
+ "x-ms-request-id": "9b332830-4002-002c-6a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -899,12 +907,12 @@
{
"odata.type": "chrissscratch.testtableko8yd3jy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.9073128Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A23.0955338Z\u0027\u0022",
"odata.editLink": "testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.9073128Z",
+ "Timestamp": "2020-07-17T22:09:23.0955338Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -948,12 +956,12 @@
{
"odata.type": "chrissscratch.testtableko8yd3jy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.9523506Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A23.1455758Z\u0027\u0022",
"odata.editLink": "testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.9523506Z",
+ "Timestamp": "2020-07-17T22:09:23.1455758Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1001,14 +1009,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=LongPrimitive%20ge%202147483650L",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "78e3d8525828d7cac07d015ce6353b28",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:23 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:23 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1017,7 +1026,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:22 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:22 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1025,7 +1034,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "78e3d8525828d7cac07d015ce6353b28",
- "x-ms-request-id": "207546a2-b002-001b-2821-5aea7a000000",
+ "x-ms-request-id": "9b332852-4002-002c-0c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1034,12 +1043,12 @@
{
"odata.type": "chrissscratch.testtableko8yd3jy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.9073128Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A23.0955338Z\u0027\u0022",
"odata.editLink": "testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.9073128Z",
+ "Timestamp": "2020-07-17T22:09:23.0955338Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1083,12 +1092,12 @@
{
"odata.type": "chrissscratch.testtableko8yd3jy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.9523506Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A23.1455758Z\u0027\u0022",
"odata.editLink": "testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.9523506Z",
+ "Timestamp": "2020-07-17T22:09:23.1455758Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1136,14 +1145,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=LongPrimitiveN%20ge%202147483650L",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "386b292c6d5bb59d445a3b8fefaad716",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:23 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:23 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1152,7 +1162,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:23 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:22 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1160,7 +1170,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "386b292c6d5bb59d445a3b8fefaad716",
- "x-ms-request-id": "207546b8-b002-001b-3d21-5aea7a000000",
+ "x-ms-request-id": "9b33287a-4002-002c-3486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1169,12 +1179,12 @@
{
"odata.type": "chrissscratch.testtableko8yd3jy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.9073128Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A23.0955338Z\u0027\u0022",
"odata.editLink": "testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.9073128Z",
+ "Timestamp": "2020-07-17T22:09:23.0955338Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1218,12 +1228,12 @@
{
"odata.type": "chrissscratch.testtableko8yd3jy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.9523506Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A23.1455758Z\u0027\u0022",
"odata.editLink": "testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.9523506Z",
+ "Timestamp": "2020-07-17T22:09:23.1455758Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1271,14 +1281,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Double%20ge%203.03",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b2f471d086cc486eb4bdf35231c6b2eb",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:23 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:23 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1287,7 +1298,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:23 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:22 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1295,7 +1306,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "b2f471d086cc486eb4bdf35231c6b2eb",
- "x-ms-request-id": "207546cd-b002-001b-5021-5aea7a000000",
+ "x-ms-request-id": "9b332899-4002-002c-5286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1304,12 +1315,12 @@
{
"odata.type": "chrissscratch.testtableko8yd3jy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.9073128Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A23.0955338Z\u0027\u0022",
"odata.editLink": "testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.9073128Z",
+ "Timestamp": "2020-07-17T22:09:23.0955338Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1353,12 +1364,12 @@
{
"odata.type": "chrissscratch.testtableko8yd3jy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.9523506Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A23.1455758Z\u0027\u0022",
"odata.editLink": "testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.9523506Z",
+ "Timestamp": "2020-07-17T22:09:23.1455758Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1406,14 +1417,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=DoublePrimitive%20ge%203.03",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d5d41de158f6e5753a2e33cd1c3ae816",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:23 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:23 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1422,7 +1434,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:23 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:23 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1430,7 +1442,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d5d41de158f6e5753a2e33cd1c3ae816",
- "x-ms-request-id": "207546e2-b002-001b-6521-5aea7a000000",
+ "x-ms-request-id": "9b3328af-4002-002c-6786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1439,12 +1451,12 @@
{
"odata.type": "chrissscratch.testtableko8yd3jy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.9073128Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A23.0955338Z\u0027\u0022",
"odata.editLink": "testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.9073128Z",
+ "Timestamp": "2020-07-17T22:09:23.0955338Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1488,12 +1500,12 @@
{
"odata.type": "chrissscratch.testtableko8yd3jy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.9523506Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A23.1455758Z\u0027\u0022",
"odata.editLink": "testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.9523506Z",
+ "Timestamp": "2020-07-17T22:09:23.1455758Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1541,14 +1553,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Int32%20ge%203",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "758ceba68941a65bba22849e794a847d",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:23 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:24 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1557,7 +1570,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:23 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:23 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1565,7 +1578,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "758ceba68941a65bba22849e794a847d",
- "x-ms-request-id": "207546f7-b002-001b-7921-5aea7a000000",
+ "x-ms-request-id": "9b3328d4-4002-002c-0c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1574,12 +1587,12 @@
{
"odata.type": "chrissscratch.testtableko8yd3jy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.9073128Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A23.0955338Z\u0027\u0022",
"odata.editLink": "testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.9073128Z",
+ "Timestamp": "2020-07-17T22:09:23.0955338Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1623,12 +1636,12 @@
{
"odata.type": "chrissscratch.testtableko8yd3jy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.9523506Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A23.1455758Z\u0027\u0022",
"odata.editLink": "testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.9523506Z",
+ "Timestamp": "2020-07-17T22:09:23.1455758Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1676,14 +1689,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Int32N%20ge%203",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d2ae50a802d6771ffb0e779e53a12b79",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:24 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:24 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1692,7 +1706,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:23 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:23 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1700,7 +1714,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d2ae50a802d6771ffb0e779e53a12b79",
- "x-ms-request-id": "2075470a-b002-001b-0a21-5aea7a000000",
+ "x-ms-request-id": "9b3328fd-4002-002c-3286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1709,12 +1723,12 @@
{
"odata.type": "chrissscratch.testtableko8yd3jy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.9073128Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A23.0955338Z\u0027\u0022",
"odata.editLink": "testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.9073128Z",
+ "Timestamp": "2020-07-17T22:09:23.0955338Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1758,12 +1772,12 @@
{
"odata.type": "chrissscratch.testtableko8yd3jy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.9523506Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A23.1455758Z\u0027\u0022",
"odata.editLink": "testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.9523506Z",
+ "Timestamp": "2020-07-17T22:09:23.1455758Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1811,14 +1825,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=DateTimeOffset%20ge%20datetime%272020-01-01T01%3A04%3A00Z%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "45acddd53c3a57aac12d1bd3d4d76cf0",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:24 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:24 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1827,7 +1842,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:23 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:23 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1835,7 +1850,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "45acddd53c3a57aac12d1bd3d4d76cf0",
- "x-ms-request-id": "2075471e-b002-001b-1e21-5aea7a000000",
+ "x-ms-request-id": "9b332923-4002-002c-5686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1844,12 +1859,12 @@
{
"odata.type": "chrissscratch.testtableko8yd3jy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.9073128Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A23.0955338Z\u0027\u0022",
"odata.editLink": "testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.9073128Z",
+ "Timestamp": "2020-07-17T22:09:23.0955338Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1893,12 +1908,12 @@
{
"odata.type": "chrissscratch.testtableko8yd3jy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.9523506Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A23.1455758Z\u0027\u0022",
"odata.editLink": "testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.9523506Z",
+ "Timestamp": "2020-07-17T22:09:23.1455758Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1946,14 +1961,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=DateTimeOffset%20lt%20datetime%272020-01-01T01%3A04%3A00Z%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "cc24b5aa158ca33fcb147a3212bd5219",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:24 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:24 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1962,7 +1978,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:23 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:23 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1970,7 +1986,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "cc24b5aa158ca33fcb147a3212bd5219",
- "x-ms-request-id": "2075472d-b002-001b-2d21-5aea7a000000",
+ "x-ms-request-id": "9b332937-4002-002c-6a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1979,12 +1995,12 @@
{
"odata.type": "chrissscratch.testtableko8yd3jy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.8132351Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A22.9864439Z\u0027\u0022",
"odata.editLink": "testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.8132351Z",
+ "Timestamp": "2020-07-17T22:09:22.9864439Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2028,12 +2044,12 @@
{
"odata.type": "chrissscratch.testtableko8yd3jy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.861275Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A23.0404888Z\u0027\u0022",
"odata.editLink": "testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.861275Z",
+ "Timestamp": "2020-07-17T22:09:23.0404888Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2081,14 +2097,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Bool%20eq%20false",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9bc90bf73e9d6b43a55611a8e74ca324",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:24 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:24 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2097,7 +2114,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:23 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:23 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -2105,7 +2122,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "9bc90bf73e9d6b43a55611a8e74ca324",
- "x-ms-request-id": "2075474c-b002-001b-4b21-5aea7a000000",
+ "x-ms-request-id": "9b332954-4002-002c-0786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -2114,12 +2131,12 @@
{
"odata.type": "chrissscratch.testtableko8yd3jy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.8132351Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A22.9864439Z\u0027\u0022",
"odata.editLink": "testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.8132351Z",
+ "Timestamp": "2020-07-17T22:09:22.9864439Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2163,12 +2180,12 @@
{
"odata.type": "chrissscratch.testtableko8yd3jy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.9073128Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A23.0955338Z\u0027\u0022",
"odata.editLink": "testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.9073128Z",
+ "Timestamp": "2020-07-17T22:09:23.0955338Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2216,14 +2233,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=BoolPrimitive%20eq%20false",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9df486a25f7cbfec9d087925c2784503",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:24 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:24 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2232,7 +2250,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:24 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:23 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -2240,7 +2258,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "9df486a25f7cbfec9d087925c2784503",
- "x-ms-request-id": "20754760-b002-001b-5e21-5aea7a000000",
+ "x-ms-request-id": "9b332968-4002-002c-1a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -2249,12 +2267,12 @@
{
"odata.type": "chrissscratch.testtableko8yd3jy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.8132351Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A22.9864439Z\u0027\u0022",
"odata.editLink": "testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.8132351Z",
+ "Timestamp": "2020-07-17T22:09:22.9864439Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2298,12 +2316,12 @@
{
"odata.type": "chrissscratch.testtableko8yd3jy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.9073128Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A23.0955338Z\u0027\u0022",
"odata.editLink": "testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.9073128Z",
+ "Timestamp": "2020-07-17T22:09:23.0955338Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2351,14 +2369,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Binary%20eq%20X%27010203%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c8dc01dbd00e6b5272b926360397bc7f",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:24 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:24 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2367,7 +2386,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:24 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:23 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -2375,7 +2394,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "c8dc01dbd00e6b5272b926360397bc7f",
- "x-ms-request-id": "2075477c-b002-001b-7a21-5aea7a000000",
+ "x-ms-request-id": "9b332980-4002-002c-3086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -2384,12 +2403,12 @@
{
"odata.type": "chrissscratch.testtableko8yd3jy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.9073128Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A23.0955338Z\u0027\u0022",
"odata.editLink": "testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.9073128Z",
+ "Timestamp": "2020-07-17T22:09:23.0955338Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2437,14 +2456,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=BinaryPrimitive%20eq%20X%27010203%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8b8f5571b4c9979c1f09fe95c51da92d",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:24 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:24 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2453,7 +2473,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:24 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:23 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -2461,7 +2481,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "8b8f5571b4c9979c1f09fe95c51da92d",
- "x-ms-request-id": "20754787-b002-001b-0521-5aea7a000000",
+ "x-ms-request-id": "9b332989-4002-002c-3986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -2470,12 +2490,12 @@
{
"odata.type": "chrissscratch.testtableko8yd3jy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.9073128Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A23.0955338Z\u0027\u0022",
"odata.editLink": "testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.9073128Z",
+ "Timestamp": "2020-07-17T22:09:23.0955338Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2523,14 +2543,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28%28%28%28%28%28%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28String%20ge%20%270003%27%29%29%20and%20%28Int64%20ge%202147483650L%29%29%20and%20%28LongPrimitive%20ge%202147483650L%29%29%20and%20%28LongPrimitiveN%20ge%202147483650L%29%29%20and%20%28Int32%20ge%203%29%29%20and%20%28Int32N%20ge%203%29%29%20and%20%28DateTimeOffset%20ge%20datetime%272020-01-01T01%3A04%3A00Z%27%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e5cd0e10da6fd21634892bc338b6bb06",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:24 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:24 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2539,7 +2560,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:24 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:23 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -2547,7 +2568,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "e5cd0e10da6fd21634892bc338b6bb06",
- "x-ms-request-id": "20754795-b002-001b-1221-5aea7a000000",
+ "x-ms-request-id": "9b332995-4002-002c-4586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -2556,12 +2577,12 @@
{
"odata.type": "chrissscratch.testtableko8yd3jy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.9073128Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A23.0955338Z\u0027\u0022",
"odata.editLink": "testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.9073128Z",
+ "Timestamp": "2020-07-17T22:09:23.0955338Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2605,12 +2626,12 @@
{
"odata.type": "chrissscratch.testtableko8yd3jy",
"odata.id": "https://chrissscratch.table.core.windows.net/testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A22.9523506Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A23.1455758Z\u0027\u0022",
"odata.editLink": "testtableko8yd3jy(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:22.9523506Z",
+ "Timestamp": "2020-07-17T22:09:23.1455758Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2660,13 +2681,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-3bd1e328c59d0f48b9fd9ebfbbbb9afa-0a626465bbe5264c-00",
+ "traceparent": "00-b992be131971404f9085ec4b61c719bd-bbf978745e39dd4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6cb3f94bbae826396444a904d2bda554",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:24 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:24 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2675,14 +2696,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:24 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:24 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "6cb3f94bbae826396444a904d2bda554",
- "x-ms-request-id": "207547c4-b002-001b-3e21-5aea7a000000",
+ "x-ms-request-id": "9b33299e-4002-002c-4e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableUnary.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableUnary.json
index 580686db541b..40592adf057b 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableUnary.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableUnary.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1ab17854cb841541a6b00cf970fd8802-720c0d83d0169f4e-00",
+ "traceparent": "00-eb24cea0ee0ae04f87bae18d1baf6d2a-49f369caef381240-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ef06d3e454aa6991963cf917057944df",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:05 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:14 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable3rgiegyq\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ef06d3e454aa6991963cf917057944df",
- "x-ms-request-id": "207536fb-b002-001b-1421-5aea7a000000",
+ "x-ms-request-id": "9b3320ea-4002-002c-0e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable3rgiegyq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1eb1079fcb55844fbd72e703b990d4be-83d02cc3cf821f45-00",
+ "traceparent": "00-9e4f39ec1ddfe844ac7cc67c3d98e99a-41f52e3f62bc6942-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "599e0fc7bcd3d3564484dabc55aae15d",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -130,8 +132,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:05 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A05.636977Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:14 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.1769386Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable3rgiegyq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -140,19 +142,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "599e0fc7bcd3d3564484dabc55aae15d",
- "x-ms-request-id": "20753706-b002-001b-1c21-5aea7a000000",
+ "x-ms-request-id": "9b3320fd-4002-002c-1e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3rgiegyq/@Element",
"odata.type": "chrissscratch.testtable3rgiegyq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3rgiegyq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A05.636977Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.1769386Z\u0027\u0022",
"odata.editLink": "testtable3rgiegyq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:05.636977Z",
+ "Timestamp": "2020-07-17T22:09:15.1769386Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -198,17 +200,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable3rgiegyq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6fd769a82db8754380db0da016fb0e60-a029ab341657d943-00",
+ "traceparent": "00-745163d5fe7a3d4d99f3904d959d0e89-1aba327f12126844-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e519c65c4bcda06095526fe08bff510a",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -279,8 +282,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:05 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A05.6840152Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:14 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.2219765Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable3rgiegyq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -289,19 +292,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "e519c65c4bcda06095526fe08bff510a",
- "x-ms-request-id": "20753719-b002-001b-2e21-5aea7a000000",
+ "x-ms-request-id": "9b332106-4002-002c-2686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3rgiegyq/@Element",
"odata.type": "chrissscratch.testtable3rgiegyq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3rgiegyq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A05.6840152Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.2219765Z\u0027\u0022",
"odata.editLink": "testtable3rgiegyq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:05.6840152Z",
+ "Timestamp": "2020-07-17T22:09:15.2219765Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -347,17 +350,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable3rgiegyq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1795",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-bc14eddf439146499d20c84f2aae6aa3-cb77824a8f92bb41-00",
+ "traceparent": "00-836f5e264d13bd4c9e5f85d7a06d31a2-1173f3989a129b42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "005b96c550fd27517c33aa257ad514eb",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:06 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -428,8 +432,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:05 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A05.7290526Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:14 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.2690147Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable3rgiegyq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -438,19 +442,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "005b96c550fd27517c33aa257ad514eb",
- "x-ms-request-id": "20753726-b002-001b-3a21-5aea7a000000",
+ "x-ms-request-id": "9b33210c-4002-002c-2c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3rgiegyq/@Element",
"odata.type": "chrissscratch.testtable3rgiegyq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3rgiegyq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A05.7290526Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.2690147Z\u0027\u0022",
"odata.editLink": "testtable3rgiegyq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:05.7290526Z",
+ "Timestamp": "2020-07-17T22:09:15.2690147Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -496,17 +500,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable3rgiegyq?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-7861f59095c5c7449e7c2625bf4940ac-e005cf163396b74e-00",
+ "traceparent": "00-8329f0827641b0499ae089702005dea4-7a26c35d5ab2a34b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3eba9b5a5e5f7c11affec3804c764745",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:06 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -577,8 +582,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:05 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A05.7730887Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:14 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.3160547Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable3rgiegyq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -587,19 +592,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "3eba9b5a5e5f7c11affec3804c764745",
- "x-ms-request-id": "2075372c-b002-001b-4021-5aea7a000000",
+ "x-ms-request-id": "9b33211c-4002-002c-3c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable3rgiegyq/@Element",
"odata.type": "chrissscratch.testtable3rgiegyq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3rgiegyq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A05.7730887Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.3160547Z\u0027\u0022",
"odata.editLink": "testtable3rgiegyq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:05.7730887Z",
+ "Timestamp": "2020-07-17T22:09:15.3160547Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -645,14 +650,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable3rgiegyq()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28not%20%28RowKey%20eq%20%270001%27%29%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "bef6d033e14f0b6075f2699aa03a26c0",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:06 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -661,7 +667,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:05 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:14 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -669,7 +675,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "bef6d033e14f0b6075f2699aa03a26c0",
- "x-ms-request-id": "20753732-b002-001b-4621-5aea7a000000",
+ "x-ms-request-id": "9b332125-4002-002c-4586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -678,12 +684,12 @@
{
"odata.type": "chrissscratch.testtable3rgiegyq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3rgiegyq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A05.6840152Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.2219765Z\u0027\u0022",
"odata.editLink": "testtable3rgiegyq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:05.6840152Z",
+ "Timestamp": "2020-07-17T22:09:15.2219765Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -727,12 +733,12 @@
{
"odata.type": "chrissscratch.testtable3rgiegyq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3rgiegyq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A05.7290526Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.2690147Z\u0027\u0022",
"odata.editLink": "testtable3rgiegyq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:05.7290526Z",
+ "Timestamp": "2020-07-17T22:09:15.2690147Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -776,12 +782,12 @@
{
"odata.type": "chrissscratch.testtable3rgiegyq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3rgiegyq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A05.7730887Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.3160547Z\u0027\u0022",
"odata.editLink": "testtable3rgiegyq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:05.7730887Z",
+ "Timestamp": "2020-07-17T22:09:15.3160547Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -829,14 +835,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable3rgiegyq()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28Int32%20lt%205%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ef85843e134467aa85df51fe8dd0da05",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:06 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -845,7 +852,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:05 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:14 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -853,7 +860,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ef85843e134467aa85df51fe8dd0da05",
- "x-ms-request-id": "2075374b-b002-001b-5a21-5aea7a000000",
+ "x-ms-request-id": "9b332139-4002-002c-5886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -862,12 +869,12 @@
{
"odata.type": "chrissscratch.testtable3rgiegyq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3rgiegyq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A05.636977Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.1769386Z\u0027\u0022",
"odata.editLink": "testtable3rgiegyq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:05.636977Z",
+ "Timestamp": "2020-07-17T22:09:15.1769386Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -911,12 +918,12 @@
{
"odata.type": "chrissscratch.testtable3rgiegyq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3rgiegyq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A05.6840152Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.2219765Z\u0027\u0022",
"odata.editLink": "testtable3rgiegyq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:05.6840152Z",
+ "Timestamp": "2020-07-17T22:09:15.2219765Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -960,12 +967,12 @@
{
"odata.type": "chrissscratch.testtable3rgiegyq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3rgiegyq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A05.7290526Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.2690147Z\u0027\u0022",
"odata.editLink": "testtable3rgiegyq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:05.7290526Z",
+ "Timestamp": "2020-07-17T22:09:15.2690147Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1009,12 +1016,12 @@
{
"odata.type": "chrissscratch.testtable3rgiegyq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3rgiegyq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A05.7730887Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.3160547Z\u0027\u0022",
"odata.editLink": "testtable3rgiegyq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:05.7730887Z",
+ "Timestamp": "2020-07-17T22:09:15.3160547Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1062,14 +1069,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable3rgiegyq()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28Int32%20gt%20-1%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a9f265eb56de799c3aafc86cf577db75",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:06 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1078,7 +1086,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:05 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:14 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1086,7 +1094,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "a9f265eb56de799c3aafc86cf577db75",
- "x-ms-request-id": "20753768-b002-001b-7721-5aea7a000000",
+ "x-ms-request-id": "9b332156-4002-002c-7386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1095,12 +1103,12 @@
{
"odata.type": "chrissscratch.testtable3rgiegyq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3rgiegyq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A05.636977Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.1769386Z\u0027\u0022",
"odata.editLink": "testtable3rgiegyq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:05.636977Z",
+ "Timestamp": "2020-07-17T22:09:15.1769386Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1144,12 +1152,12 @@
{
"odata.type": "chrissscratch.testtable3rgiegyq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3rgiegyq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A05.6840152Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.2219765Z\u0027\u0022",
"odata.editLink": "testtable3rgiegyq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:05.6840152Z",
+ "Timestamp": "2020-07-17T22:09:15.2219765Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1193,12 +1201,12 @@
{
"odata.type": "chrissscratch.testtable3rgiegyq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3rgiegyq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A05.7290526Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.2690147Z\u0027\u0022",
"odata.editLink": "testtable3rgiegyq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:05.7290526Z",
+ "Timestamp": "2020-07-17T22:09:15.2690147Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1242,12 +1250,12 @@
{
"odata.type": "chrissscratch.testtable3rgiegyq",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable3rgiegyq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A05.7730887Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.3160547Z\u0027\u0022",
"odata.editLink": "testtable3rgiegyq(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:05.7730887Z",
+ "Timestamp": "2020-07-17T22:09:15.3160547Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1297,13 +1305,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-db10ad82d986b841ad44a9740c6f871d-87409895ca1f1d47-00",
+ "traceparent": "00-c3b36b99c8ac6e4596aee822af58ad87-874ea095a802744d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c84202d758f11f00268f38708f617ea5",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:06 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1312,14 +1320,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:05 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:14 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "c84202d758f11f00268f38708f617ea5",
- "x-ms-request-id": "2075378f-b002-001b-1b21-5aea7a000000",
+ "x-ms-request-id": "9b332164-4002-002c-8086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableUnaryAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableUnaryAsync.json
index 00b9cac8d644..41b412df708e 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableUnaryAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableUnaryAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-481632fb2c1bb34d8e64be655d9008d3-97384577df4ab94d-00",
+ "traceparent": "00-09616a9d10fa9643bf5ef918115c0c4f-d8e864ea2eab9640-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "37e86fe5f6bbfb1c75907dc66f4c078a",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:24 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:24 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:24 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablebi58l553\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "37e86fe5f6bbfb1c75907dc66f4c078a",
- "x-ms-request-id": "207547d4-b002-001b-4e21-5aea7a000000",
+ "x-ms-request-id": "9b3329b1-4002-002c-6186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablebi58l553?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-641c20e78bd96648bc49a1e599671cff-39b18e8bfd904042-00",
+ "traceparent": "00-280e225205889b49bd479018600d97b8-d87dc1e8c3f8b74a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "50652caef6f33fe592fb6c9912c43a86",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:24 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -130,8 +132,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:24 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A24.6967988Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.0031197Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablebi58l553(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -140,19 +142,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "50652caef6f33fe592fb6c9912c43a86",
- "x-ms-request-id": "207547e0-b002-001b-5921-5aea7a000000",
+ "x-ms-request-id": "9b3329cc-4002-002c-7a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablebi58l553/@Element",
"odata.type": "chrissscratch.testtablebi58l553",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablebi58l553(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A24.6967988Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.0031197Z\u0027\u0022",
"odata.editLink": "testtablebi58l553(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:24.6967988Z",
+ "Timestamp": "2020-07-17T22:09:25.0031197Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -198,17 +200,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablebi58l553?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6c002dc127d4a747bdeb04a198b0b01b-c95c31460592e546-00",
+ "traceparent": "00-6cc2226c4ec61347afb57a0160038d0f-41c6fc228470f447-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a923b794097745c9074ebf9fee96882e",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:25 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -279,8 +282,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:24 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A24.7418357Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.045156Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablebi58l553(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -289,19 +292,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "a923b794097745c9074ebf9fee96882e",
- "x-ms-request-id": "207547e4-b002-001b-5d21-5aea7a000000",
+ "x-ms-request-id": "9b3329e0-4002-002c-0d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablebi58l553/@Element",
"odata.type": "chrissscratch.testtablebi58l553",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablebi58l553(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A24.7418357Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.045156Z\u0027\u0022",
"odata.editLink": "testtablebi58l553(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:24.7418357Z",
+ "Timestamp": "2020-07-17T22:09:25.045156Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -347,17 +350,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablebi58l553?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1795",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-2284f3dae111dc49b6190c8652c28b8e-6a4d59952bfe6740-00",
+ "traceparent": "00-7efee0ae8ea913449b1b8bba6e702945-4ad4caf084d1e549-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "de1e9526c221ef5e8aa9a5c08a83e9b1",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:25 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -428,8 +432,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:24 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A24.7808685Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.0921942Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablebi58l553(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -438,19 +442,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "de1e9526c221ef5e8aa9a5c08a83e9b1",
- "x-ms-request-id": "207547ed-b002-001b-6621-5aea7a000000",
+ "x-ms-request-id": "9b3329ee-4002-002c-1b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablebi58l553/@Element",
"odata.type": "chrissscratch.testtablebi58l553",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablebi58l553(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A24.7808685Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.0921942Z\u0027\u0022",
"odata.editLink": "testtablebi58l553(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:24.7808685Z",
+ "Timestamp": "2020-07-17T22:09:25.0921942Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -496,17 +500,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablebi58l553?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-5f593d69165c594e9111d053ab7e1445-af731cea74055e4b-00",
+ "traceparent": "00-89b9bd5d75127946bac7217bfd441d69-f95aa562a22e2c47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b832f6555d28a513631f49a5374650fc",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:25 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -577,8 +582,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:24 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A24.8259059Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.1362317Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablebi58l553(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -587,19 +592,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "b832f6555d28a513631f49a5374650fc",
- "x-ms-request-id": "207547fa-b002-001b-7321-5aea7a000000",
+ "x-ms-request-id": "9b332a06-4002-002c-3186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablebi58l553/@Element",
"odata.type": "chrissscratch.testtablebi58l553",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablebi58l553(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A24.8259059Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.1362317Z\u0027\u0022",
"odata.editLink": "testtablebi58l553(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:24.8259059Z",
+ "Timestamp": "2020-07-17T22:09:25.1362317Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -645,14 +650,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablebi58l553()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28not%20%28RowKey%20eq%20%270001%27%29%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7c723d735ca6d26458341fcd6409bb83",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:25 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -661,7 +667,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:24 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:24 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -669,7 +675,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "7c723d735ca6d26458341fcd6409bb83",
- "x-ms-request-id": "207547ff-b002-001b-7721-5aea7a000000",
+ "x-ms-request-id": "9b332a0c-4002-002c-3786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -678,12 +684,12 @@
{
"odata.type": "chrissscratch.testtablebi58l553",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablebi58l553(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A24.7418357Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.045156Z\u0027\u0022",
"odata.editLink": "testtablebi58l553(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:24.7418357Z",
+ "Timestamp": "2020-07-17T22:09:25.045156Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -727,12 +733,12 @@
{
"odata.type": "chrissscratch.testtablebi58l553",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablebi58l553(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A24.7808685Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.0921942Z\u0027\u0022",
"odata.editLink": "testtablebi58l553(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:24.7808685Z",
+ "Timestamp": "2020-07-17T22:09:25.0921942Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -776,12 +782,12 @@
{
"odata.type": "chrissscratch.testtablebi58l553",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablebi58l553(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A24.8259059Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.1362317Z\u0027\u0022",
"odata.editLink": "testtablebi58l553(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:24.8259059Z",
+ "Timestamp": "2020-07-17T22:09:25.1362317Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -829,14 +835,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablebi58l553()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28Int32%20lt%205%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f7490d64cf64c90582787b0278b9b744",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:25 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -845,7 +852,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:24 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:24 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -853,7 +860,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f7490d64cf64c90582787b0278b9b744",
- "x-ms-request-id": "20754813-b002-001b-0921-5aea7a000000",
+ "x-ms-request-id": "9b332a1b-4002-002c-4686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -862,12 +869,12 @@
{
"odata.type": "chrissscratch.testtablebi58l553",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablebi58l553(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A24.6967988Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.0031197Z\u0027\u0022",
"odata.editLink": "testtablebi58l553(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:24.6967988Z",
+ "Timestamp": "2020-07-17T22:09:25.0031197Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -911,12 +918,12 @@
{
"odata.type": "chrissscratch.testtablebi58l553",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablebi58l553(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A24.7418357Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.045156Z\u0027\u0022",
"odata.editLink": "testtablebi58l553(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:24.7418357Z",
+ "Timestamp": "2020-07-17T22:09:25.045156Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -960,12 +967,12 @@
{
"odata.type": "chrissscratch.testtablebi58l553",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablebi58l553(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A24.7808685Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.0921942Z\u0027\u0022",
"odata.editLink": "testtablebi58l553(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:24.7808685Z",
+ "Timestamp": "2020-07-17T22:09:25.0921942Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1009,12 +1016,12 @@
{
"odata.type": "chrissscratch.testtablebi58l553",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablebi58l553(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A24.8259059Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.1362317Z\u0027\u0022",
"odata.editLink": "testtablebi58l553(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:24.8259059Z",
+ "Timestamp": "2020-07-17T22:09:25.1362317Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1062,14 +1069,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablebi58l553()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28Int32%20gt%20-1%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4c4da8586d10f90a925f5ff43d454059",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:25 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1078,7 +1086,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:24 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:24 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1086,7 +1094,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "4c4da8586d10f90a925f5ff43d454059",
- "x-ms-request-id": "2075482b-b002-001b-2121-5aea7a000000",
+ "x-ms-request-id": "9b332a2d-4002-002c-5886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1095,12 +1103,12 @@
{
"odata.type": "chrissscratch.testtablebi58l553",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablebi58l553(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A24.6967988Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.0031197Z\u0027\u0022",
"odata.editLink": "testtablebi58l553(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:24.6967988Z",
+ "Timestamp": "2020-07-17T22:09:25.0031197Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1144,12 +1152,12 @@
{
"odata.type": "chrissscratch.testtablebi58l553",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablebi58l553(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A24.7418357Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.045156Z\u0027\u0022",
"odata.editLink": "testtablebi58l553(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:24.7418357Z",
+ "Timestamp": "2020-07-17T22:09:25.045156Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1193,12 +1201,12 @@
{
"odata.type": "chrissscratch.testtablebi58l553",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablebi58l553(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A24.7808685Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.0921942Z\u0027\u0022",
"odata.editLink": "testtablebi58l553(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:24.7808685Z",
+ "Timestamp": "2020-07-17T22:09:25.0921942Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1242,12 +1250,12 @@
{
"odata.type": "chrissscratch.testtablebi58l553",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablebi58l553(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A24.8259059Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.1362317Z\u0027\u0022",
"odata.editLink": "testtablebi58l553(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:24.8259059Z",
+ "Timestamp": "2020-07-17T22:09:25.1362317Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1297,13 +1305,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-3500edeafb0fd540a2443eba48a06d17-1a1576f20a368a43-00",
+ "traceparent": "00-2360d27f5d952d498d268847087924ab-ec2b30c5d976a549-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2940c56359fca39838a9fa2de162599f",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:25 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1312,14 +1320,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:24 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:24 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "2940c56359fca39838a9fa2de162599f",
- "x-ms-request-id": "2075483f-b002-001b-3321-5aea7a000000",
+ "x-ms-request-id": "9b332a36-4002-002c-6186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableWithDictionaryTypeOnSupportedTypes.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableWithDictionaryTypeOnSupportedTypes.json
index 1e00d678ad51..785788c8a233 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableWithDictionaryTypeOnSupportedTypes.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableWithDictionaryTypeOnSupportedTypes.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-154f5e953dc08d42aa0d668c6f2c41d8-fda03974b0b23248-00",
+ "traceparent": "00-d02ec18678332d43b683a4a66822f38d-409267b1b1e0124b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2906245e0662fade5f17e17a67286998",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:06 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:05 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:14 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablex9qv5ahd\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "2906245e0662fade5f17e17a67286998",
- "x-ms-request-id": "207537a2-b002-001b-2d21-5aea7a000000",
+ "x-ms-request-id": "9b332170-4002-002c-0a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-3a8d0699f1c6034f811af8c99ca1d968-13b458771d4bfd47-00",
+ "traceparent": "00-7841945a29c5ac478913b2d55b00f59d-83396726ca4c6f45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "cf8e9eb4bb6d0a225609bc0c2dfdd44c",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:06 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -130,8 +132,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:05 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.2564904Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:14 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.7694345Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -140,19 +142,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "cf8e9eb4bb6d0a225609bc0c2dfdd44c",
- "x-ms-request-id": "207537b3-b002-001b-3c21-5aea7a000000",
+ "x-ms-request-id": "9b332180-4002-002c-1686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablex9qv5ahd/@Element",
"odata.type": "chrissscratch.testtablex9qv5ahd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.2564904Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.7694345Z\u0027\u0022",
"odata.editLink": "testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:06.2564904Z",
+ "Timestamp": "2020-07-17T22:09:15.7694345Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -198,17 +200,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8432c3b4dbbcd04daa31460a7d072e79-8941375dcf09e54e-00",
+ "traceparent": "00-eaaf7a68063bdd4c8e11c38ebccdc4d1-c4c2a428d899cc4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e04d3f0f0a8e4a2e0cc5c194c15f2d65",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:06 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -279,8 +282,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:06 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.3075328Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:14 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.8194755Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -289,19 +292,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "e04d3f0f0a8e4a2e0cc5c194c15f2d65",
- "x-ms-request-id": "207537c6-b002-001b-4a21-5aea7a000000",
+ "x-ms-request-id": "9b332184-4002-002c-1a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablex9qv5ahd/@Element",
"odata.type": "chrissscratch.testtablex9qv5ahd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.3075328Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.8194755Z\u0027\u0022",
"odata.editLink": "testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:06.3075328Z",
+ "Timestamp": "2020-07-17T22:09:15.8194755Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -347,17 +350,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1795",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-53048027f312e34a8df02471ccf80389-edb6f287704e7148-00",
+ "traceparent": "00-285f91aaca742a4794ac50530a1b3c17-411c286dbd598b43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "fece74b34cbca27002fbd3584ad2cc61",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:06 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -428,8 +432,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:06 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.353571Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:15 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.8675153Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -438,19 +442,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "fece74b34cbca27002fbd3584ad2cc61",
- "x-ms-request-id": "207537d2-b002-001b-5621-5aea7a000000",
+ "x-ms-request-id": "9b332186-4002-002c-1c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablex9qv5ahd/@Element",
"odata.type": "chrissscratch.testtablex9qv5ahd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.353571Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.8675153Z\u0027\u0022",
"odata.editLink": "testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:06.353571Z",
+ "Timestamp": "2020-07-17T22:09:15.8675153Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -496,17 +500,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-0a8ba5e8bf0ad0469c1d6761890e9199-3b367e15d563a642-00",
+ "traceparent": "00-c71faa730c5b9b4098e4d547fe5aa923-81e867d59b5e9643-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "286b944389daa90a7043c3a8fa8d49f6",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:06 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -577,8 +582,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:06 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.4076159Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:15 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.9115526Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -587,19 +592,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "286b944389daa90a7043c3a8fa8d49f6",
- "x-ms-request-id": "207537db-b002-001b-5f21-5aea7a000000",
+ "x-ms-request-id": "9b332188-4002-002c-1e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablex9qv5ahd/@Element",
"odata.type": "chrissscratch.testtablex9qv5ahd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.4076159Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.9115526Z\u0027\u0022",
"odata.editLink": "testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:06.4076159Z",
+ "Timestamp": "2020-07-17T22:09:15.9115526Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -645,14 +650,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=String%20ge%20%270003%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b95956dbd62fc390ceaade9237d50039",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:06 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -661,7 +667,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:06 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:15 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -669,7 +675,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "b95956dbd62fc390ceaade9237d50039",
- "x-ms-request-id": "207537e6-b002-001b-6721-5aea7a000000",
+ "x-ms-request-id": "9b33218b-4002-002c-2186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -678,12 +684,12 @@
{
"odata.type": "chrissscratch.testtablex9qv5ahd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.353571Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.8675153Z\u0027\u0022",
"odata.editLink": "testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:06.353571Z",
+ "Timestamp": "2020-07-17T22:09:15.8675153Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -727,12 +733,12 @@
{
"odata.type": "chrissscratch.testtablex9qv5ahd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.4076159Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.9115526Z\u0027\u0022",
"odata.editLink": "testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:06.4076159Z",
+ "Timestamp": "2020-07-17T22:09:15.9115526Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -780,14 +786,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Guid%20eq%20guid%270d391d16-97f1-4b9a-be68-4cc871f90003%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2d5160f805f4298a6a248e7888c8a874",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:06 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -796,7 +803,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:06 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:15 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -804,7 +811,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "2d5160f805f4298a6a248e7888c8a874",
- "x-ms-request-id": "20753815-b002-001b-1021-5aea7a000000",
+ "x-ms-request-id": "9b332190-4002-002c-2686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -813,12 +820,12 @@
{
"odata.type": "chrissscratch.testtablex9qv5ahd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.353571Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.8675153Z\u0027\u0022",
"odata.editLink": "testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:06.353571Z",
+ "Timestamp": "2020-07-17T22:09:15.8675153Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -866,14 +873,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Int64%20ge%202147483650L",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f37cddb113796d3203a8592faa77729a",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:06 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -882,7 +890,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:06 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:15 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -890,7 +898,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f37cddb113796d3203a8592faa77729a",
- "x-ms-request-id": "20753823-b002-001b-1c21-5aea7a000000",
+ "x-ms-request-id": "9b332196-4002-002c-2a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -899,12 +907,12 @@
{
"odata.type": "chrissscratch.testtablex9qv5ahd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.353571Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.8675153Z\u0027\u0022",
"odata.editLink": "testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:06.353571Z",
+ "Timestamp": "2020-07-17T22:09:15.8675153Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -948,12 +956,12 @@
{
"odata.type": "chrissscratch.testtablex9qv5ahd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.4076159Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.9115526Z\u0027\u0022",
"odata.editLink": "testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:06.4076159Z",
+ "Timestamp": "2020-07-17T22:09:15.9115526Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1001,14 +1009,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=LongPrimitive%20ge%202147483650L",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "99af8a431b3cd602cb2f4f0a47183a06",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:07 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1017,7 +1026,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:06 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:15 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1025,7 +1034,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "99af8a431b3cd602cb2f4f0a47183a06",
- "x-ms-request-id": "20753836-b002-001b-2d21-5aea7a000000",
+ "x-ms-request-id": "9b3321aa-4002-002c-3b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1034,12 +1043,12 @@
{
"odata.type": "chrissscratch.testtablex9qv5ahd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.353571Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.8675153Z\u0027\u0022",
"odata.editLink": "testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:06.353571Z",
+ "Timestamp": "2020-07-17T22:09:15.8675153Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1083,12 +1092,12 @@
{
"odata.type": "chrissscratch.testtablex9qv5ahd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.4076159Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.9115526Z\u0027\u0022",
"odata.editLink": "testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:06.4076159Z",
+ "Timestamp": "2020-07-17T22:09:15.9115526Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1136,14 +1145,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=LongPrimitiveN%20ge%202147483650L",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5ae069020c58e5c02de4294bac5a7ff2",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:07 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1152,7 +1162,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:06 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:15 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1160,7 +1170,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "5ae069020c58e5c02de4294bac5a7ff2",
- "x-ms-request-id": "20753847-b002-001b-3c21-5aea7a000000",
+ "x-ms-request-id": "9b3321bc-4002-002c-4886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1169,12 +1179,12 @@
{
"odata.type": "chrissscratch.testtablex9qv5ahd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.353571Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.8675153Z\u0027\u0022",
"odata.editLink": "testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:06.353571Z",
+ "Timestamp": "2020-07-17T22:09:15.8675153Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1218,12 +1228,12 @@
{
"odata.type": "chrissscratch.testtablex9qv5ahd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.4076159Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.9115526Z\u0027\u0022",
"odata.editLink": "testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:06.4076159Z",
+ "Timestamp": "2020-07-17T22:09:15.9115526Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1271,14 +1281,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Double%20ge%203.03",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "fe34f3b20e199638daa6274ac42825eb",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:07 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1287,7 +1298,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:06 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:15 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1295,7 +1306,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "fe34f3b20e199638daa6274ac42825eb",
- "x-ms-request-id": "2075385e-b002-001b-5121-5aea7a000000",
+ "x-ms-request-id": "9b3321dd-4002-002c-6386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1304,12 +1315,12 @@
{
"odata.type": "chrissscratch.testtablex9qv5ahd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.353571Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.8675153Z\u0027\u0022",
"odata.editLink": "testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:06.353571Z",
+ "Timestamp": "2020-07-17T22:09:15.8675153Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1353,12 +1364,12 @@
{
"odata.type": "chrissscratch.testtablex9qv5ahd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.4076159Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.9115526Z\u0027\u0022",
"odata.editLink": "testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:06.4076159Z",
+ "Timestamp": "2020-07-17T22:09:15.9115526Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1406,14 +1417,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=DoublePrimitive%20ge%203.03",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "402d526d18963642cac96c57f2b62a71",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:07 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1422,7 +1434,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:06 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:15 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1430,7 +1442,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "402d526d18963642cac96c57f2b62a71",
- "x-ms-request-id": "20753874-b002-001b-6521-5aea7a000000",
+ "x-ms-request-id": "9b3321fe-4002-002c-8086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1439,12 +1451,12 @@
{
"odata.type": "chrissscratch.testtablex9qv5ahd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.353571Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.8675153Z\u0027\u0022",
"odata.editLink": "testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:06.353571Z",
+ "Timestamp": "2020-07-17T22:09:15.8675153Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1488,12 +1500,12 @@
{
"odata.type": "chrissscratch.testtablex9qv5ahd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.4076159Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.9115526Z\u0027\u0022",
"odata.editLink": "testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:06.4076159Z",
+ "Timestamp": "2020-07-17T22:09:15.9115526Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1541,14 +1553,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Int32%20ge%203",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "54575cb03ce3f3ed314a7fb2e4762105",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:07 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1557,7 +1570,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:06 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:15 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1565,7 +1578,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "54575cb03ce3f3ed314a7fb2e4762105",
- "x-ms-request-id": "20753888-b002-001b-7921-5aea7a000000",
+ "x-ms-request-id": "9b33221e-4002-002c-1f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1574,12 +1587,12 @@
{
"odata.type": "chrissscratch.testtablex9qv5ahd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.353571Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.8675153Z\u0027\u0022",
"odata.editLink": "testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:06.353571Z",
+ "Timestamp": "2020-07-17T22:09:15.8675153Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1623,12 +1636,12 @@
{
"odata.type": "chrissscratch.testtablex9qv5ahd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.4076159Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.9115526Z\u0027\u0022",
"odata.editLink": "testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:06.4076159Z",
+ "Timestamp": "2020-07-17T22:09:15.9115526Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1676,14 +1689,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Int32N%20ge%203",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "59de3ebf3e2c9a5cb1fe344fa2e1a324",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:07 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1692,7 +1706,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:07 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:15 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1700,7 +1714,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "59de3ebf3e2c9a5cb1fe344fa2e1a324",
- "x-ms-request-id": "2075389c-b002-001b-0c21-5aea7a000000",
+ "x-ms-request-id": "9b332235-4002-002c-3386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1709,12 +1723,12 @@
{
"odata.type": "chrissscratch.testtablex9qv5ahd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.353571Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.8675153Z\u0027\u0022",
"odata.editLink": "testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:06.353571Z",
+ "Timestamp": "2020-07-17T22:09:15.8675153Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1758,12 +1772,12 @@
{
"odata.type": "chrissscratch.testtablex9qv5ahd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.4076159Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.9115526Z\u0027\u0022",
"odata.editLink": "testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:06.4076159Z",
+ "Timestamp": "2020-07-17T22:09:15.9115526Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1811,14 +1825,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=DateTimeOffset%20ge%20datetime%272020-01-01T01%3A04%3A00Z%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6799b67cd1d03108653a0f4b98905254",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:07 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1827,7 +1842,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:07 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:16 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1835,7 +1850,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "6799b67cd1d03108653a0f4b98905254",
- "x-ms-request-id": "207538bd-b002-001b-2b21-5aea7a000000",
+ "x-ms-request-id": "9b332242-4002-002c-4086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1844,12 +1859,12 @@
{
"odata.type": "chrissscratch.testtablex9qv5ahd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.353571Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.8675153Z\u0027\u0022",
"odata.editLink": "testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:06.353571Z",
+ "Timestamp": "2020-07-17T22:09:15.8675153Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1893,12 +1908,12 @@
{
"odata.type": "chrissscratch.testtablex9qv5ahd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.4076159Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.9115526Z\u0027\u0022",
"odata.editLink": "testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:06.4076159Z",
+ "Timestamp": "2020-07-17T22:09:15.9115526Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1946,14 +1961,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=DateTimeOffset%20lt%20datetime%272020-01-01T01%3A04%3A00Z%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b39866a8d1d87244ffbca3e5089e5050",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:07 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1962,7 +1978,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:07 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:16 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1970,7 +1986,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "b39866a8d1d87244ffbca3e5089e5050",
- "x-ms-request-id": "207538e0-b002-001b-4b21-5aea7a000000",
+ "x-ms-request-id": "9b33225d-4002-002c-5786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1979,12 +1995,12 @@
{
"odata.type": "chrissscratch.testtablex9qv5ahd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.2564904Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.7694345Z\u0027\u0022",
"odata.editLink": "testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:06.2564904Z",
+ "Timestamp": "2020-07-17T22:09:15.7694345Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2028,12 +2044,12 @@
{
"odata.type": "chrissscratch.testtablex9qv5ahd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.3075328Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.8194755Z\u0027\u0022",
"odata.editLink": "testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:06.3075328Z",
+ "Timestamp": "2020-07-17T22:09:15.8194755Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2081,14 +2097,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Bool%20eq%20false",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2d365aa7b9dcee3436acf4f22e110120",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:08 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2097,7 +2114,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:07 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:16 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -2105,7 +2122,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "2d365aa7b9dcee3436acf4f22e110120",
- "x-ms-request-id": "2075390f-b002-001b-7721-5aea7a000000",
+ "x-ms-request-id": "9b33226b-4002-002c-6586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -2114,12 +2131,12 @@
{
"odata.type": "chrissscratch.testtablex9qv5ahd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.2564904Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.7694345Z\u0027\u0022",
"odata.editLink": "testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:06.2564904Z",
+ "Timestamp": "2020-07-17T22:09:15.7694345Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2163,12 +2180,12 @@
{
"odata.type": "chrissscratch.testtablex9qv5ahd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.353571Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.8675153Z\u0027\u0022",
"odata.editLink": "testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:06.353571Z",
+ "Timestamp": "2020-07-17T22:09:15.8675153Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2216,14 +2233,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=BoolPrimitive%20eq%20false",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3ba6dfabf048ab4b722767142d2228c6",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:08 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2232,7 +2250,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:07 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:16 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -2240,7 +2258,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "3ba6dfabf048ab4b722767142d2228c6",
- "x-ms-request-id": "20753936-b002-001b-1c21-5aea7a000000",
+ "x-ms-request-id": "9b332287-4002-002c-8086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -2249,12 +2267,12 @@
{
"odata.type": "chrissscratch.testtablex9qv5ahd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.2564904Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.7694345Z\u0027\u0022",
"odata.editLink": "testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:06.2564904Z",
+ "Timestamp": "2020-07-17T22:09:15.7694345Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2298,12 +2316,12 @@
{
"odata.type": "chrissscratch.testtablex9qv5ahd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.353571Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.8675153Z\u0027\u0022",
"odata.editLink": "testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:06.353571Z",
+ "Timestamp": "2020-07-17T22:09:15.8675153Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2351,14 +2369,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Binary%20eq%20X%27010203%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3da4bfea245aef7732a97d2bdc5243ee",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:08 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2367,7 +2386,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:07 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:16 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -2375,7 +2394,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "3da4bfea245aef7732a97d2bdc5243ee",
- "x-ms-request-id": "20753958-b002-001b-3c21-5aea7a000000",
+ "x-ms-request-id": "9b332298-4002-002c-1186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -2384,12 +2403,12 @@
{
"odata.type": "chrissscratch.testtablex9qv5ahd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.353571Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.8675153Z\u0027\u0022",
"odata.editLink": "testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:06.353571Z",
+ "Timestamp": "2020-07-17T22:09:15.8675153Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2437,14 +2456,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=BinaryPrimitive%20eq%20X%27010203%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "283982ba14f8b6070f8abbb45120c013",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:08 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2453,7 +2473,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:07 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:16 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -2461,7 +2481,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "283982ba14f8b6070f8abbb45120c013",
- "x-ms-request-id": "20753964-b002-001b-4821-5aea7a000000",
+ "x-ms-request-id": "9b33229d-4002-002c-1686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -2470,12 +2490,12 @@
{
"odata.type": "chrissscratch.testtablex9qv5ahd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.353571Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.8675153Z\u0027\u0022",
"odata.editLink": "testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:06.353571Z",
+ "Timestamp": "2020-07-17T22:09:15.8675153Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2523,14 +2543,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28%28%28%28%28%28%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28String%20ge%20%270003%27%29%29%20and%20%28Int64%20ge%202147483650L%29%29%20and%20%28LongPrimitive%20ge%202147483650L%29%29%20and%20%28LongPrimitiveN%20ge%202147483650L%29%29%20and%20%28Int32%20ge%203%29%29%20and%20%28Int32N%20ge%203%29%29%20and%20%28DateTimeOffset%20ge%20datetime%272020-01-01T01%3A04%3A00Z%27%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6f082d83c36c87c668b6099e7220ce20",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:08 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2539,7 +2560,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:07 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:16 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -2547,7 +2568,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "6f082d83c36c87c668b6099e7220ce20",
- "x-ms-request-id": "20753969-b002-001b-4d21-5aea7a000000",
+ "x-ms-request-id": "9b3322a3-4002-002c-1c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -2556,12 +2577,12 @@
{
"odata.type": "chrissscratch.testtablex9qv5ahd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.353571Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.8675153Z\u0027\u0022",
"odata.editLink": "testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:06.353571Z",
+ "Timestamp": "2020-07-17T22:09:15.8675153Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2605,12 +2626,12 @@
{
"odata.type": "chrissscratch.testtablex9qv5ahd",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A06.4076159Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A15.9115526Z\u0027\u0022",
"odata.editLink": "testtablex9qv5ahd(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:06.4076159Z",
+ "Timestamp": "2020-07-17T22:09:15.9115526Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2660,13 +2681,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-2e6e23bceb8c4e4b808cd69c9c35a48a-7027b6cac5b7834b-00",
+ "traceparent": "00-aa7b278eb8c7e140b7d7991baa915c5b-82d1353f2a5b9b48-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ab5979e400e9d5ceb7ed2ecf69c39e11",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:08 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2675,14 +2696,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:07 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:16 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ab5979e400e9d5ceb7ed2ecf69c39e11",
- "x-ms-request-id": "20753980-b002-001b-6321-5aea7a000000",
+ "x-ms-request-id": "9b3322b9-4002-002c-3286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableWithDictionaryTypeOnSupportedTypesAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableWithDictionaryTypeOnSupportedTypesAsync.json
index 7810176c833c..13639e387519 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableWithDictionaryTypeOnSupportedTypesAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableWithDictionaryTypeOnSupportedTypesAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1657eca07339864d8e5416f47acf4704-764311ac2035b443-00",
+ "traceparent": "00-5ba1b1df1da83b47b2a5dcec76d7aa57-71356906bfb4124a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e052f598b055ff5644cc72fb27b25a33",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:25 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:24 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:24 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablei2hltmnh\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "e052f598b055ff5644cc72fb27b25a33",
- "x-ms-request-id": "20754843-b002-001b-3721-5aea7a000000",
+ "x-ms-request-id": "9b332a44-4002-002c-6f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1739",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-b7d3d339d32fca44a7dea2c198b63709-470911f4ba10cb43-00",
+ "traceparent": "00-690c137e18207f48a27e2e1903896d2b-4a369b71e33a3c45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8ef3e86e930b62a1d34d8d17f403833d",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:25 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -130,8 +132,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:25 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.2842864Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.5745953Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -140,19 +142,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "8ef3e86e930b62a1d34d8d17f403833d",
- "x-ms-request-id": "2075484e-b002-001b-4121-5aea7a000000",
+ "x-ms-request-id": "9b332a51-4002-002c-7986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablei2hltmnh/@Element",
"odata.type": "chrissscratch.testtablei2hltmnh",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.2842864Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.5745953Z\u0027\u0022",
"odata.editLink": "testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:25.2842864Z",
+ "Timestamp": "2020-07-17T22:09:25.5745953Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -198,17 +200,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ad1c042a213d2d41ae3697104a103490-c7e79e5d7ac93342-00",
+ "traceparent": "00-c7158f7776a0344e899195dfd74ef18c-b7814b3522e99247-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e0b6f030e10451f1007d7e498d865bd6",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:25 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -279,8 +282,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:25 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.3263205Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.6196336Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -289,19 +292,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "e0b6f030e10451f1007d7e498d865bd6",
- "x-ms-request-id": "20754859-b002-001b-4c21-5aea7a000000",
+ "x-ms-request-id": "9b332a5d-4002-002c-0586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablei2hltmnh/@Element",
"odata.type": "chrissscratch.testtablei2hltmnh",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.3263205Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.6196336Z\u0027\u0022",
"odata.editLink": "testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:25.3263205Z",
+ "Timestamp": "2020-07-17T22:09:25.6196336Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -347,17 +350,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1795",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9eff07116e0fbc498ed1a73f67586e9a-726c56617c993143-00",
+ "traceparent": "00-adf3fcf430f3f44383d94bc7cb15da9e-580097a1146a104d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "917a3c07ae66048754f00d08233e0b41",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:25 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -428,8 +432,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:25 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.3683558Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.6646706Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -438,19 +442,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "917a3c07ae66048754f00d08233e0b41",
- "x-ms-request-id": "20754862-b002-001b-5521-5aea7a000000",
+ "x-ms-request-id": "9b332a66-4002-002c-0e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablei2hltmnh/@Element",
"odata.type": "chrissscratch.testtablei2hltmnh",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.3683558Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.6646706Z\u0027\u0022",
"odata.editLink": "testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:25.3683558Z",
+ "Timestamp": "2020-07-17T22:09:25.6646706Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -496,17 +500,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "1737",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-82c204ee8d4984478b189d898717c8fa-19f421e46930e349-00",
+ "traceparent": "00-d04df456422ddb4cb1b8f451bf4b6d1e-ab8aaf5c925db648-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "36ca34497afc8d2ff6a28d8d1457d44c",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:25 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -577,8 +582,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:25 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.4153949Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.7107089Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -587,19 +592,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "36ca34497afc8d2ff6a28d8d1457d44c",
- "x-ms-request-id": "20754873-b002-001b-6621-5aea7a000000",
+ "x-ms-request-id": "9b332a70-4002-002c-1886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablei2hltmnh/@Element",
"odata.type": "chrissscratch.testtablei2hltmnh",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.4153949Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.7107089Z\u0027\u0022",
"odata.editLink": "testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:25.4153949Z",
+ "Timestamp": "2020-07-17T22:09:25.7107089Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -645,14 +650,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=String%20ge%20%270003%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b810b6f1f28882d669b18b14d4e82dc2",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:25 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -661,7 +667,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:25 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:24 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -669,7 +675,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "b810b6f1f28882d669b18b14d4e82dc2",
- "x-ms-request-id": "2075487f-b002-001b-7221-5aea7a000000",
+ "x-ms-request-id": "9b332a77-4002-002c-1f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -678,12 +684,12 @@
{
"odata.type": "chrissscratch.testtablei2hltmnh",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.3683558Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.6646706Z\u0027\u0022",
"odata.editLink": "testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:25.3683558Z",
+ "Timestamp": "2020-07-17T22:09:25.6646706Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -727,12 +733,12 @@
{
"odata.type": "chrissscratch.testtablei2hltmnh",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.4153949Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.7107089Z\u0027\u0022",
"odata.editLink": "testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:25.4153949Z",
+ "Timestamp": "2020-07-17T22:09:25.7107089Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -780,14 +786,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Guid%20eq%20guid%270d391d16-97f1-4b9a-be68-4cc871f90003%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "59003d7224bb8dd90ced9ac421f9f0fd",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:25 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -796,7 +803,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:25 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:25 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -804,7 +811,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "59003d7224bb8dd90ced9ac421f9f0fd",
- "x-ms-request-id": "2075488f-b002-001b-0221-5aea7a000000",
+ "x-ms-request-id": "9b332a8a-4002-002c-3186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -813,12 +820,12 @@
{
"odata.type": "chrissscratch.testtablei2hltmnh",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.3683558Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.6646706Z\u0027\u0022",
"odata.editLink": "testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:25.3683558Z",
+ "Timestamp": "2020-07-17T22:09:25.6646706Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -866,14 +873,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Int64%20ge%202147483650L",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6d17c01b532e57b85e48cd4bee1bb80e",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:25 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -882,7 +890,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:25 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:25 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -890,7 +898,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "6d17c01b532e57b85e48cd4bee1bb80e",
- "x-ms-request-id": "20754894-b002-001b-0721-5aea7a000000",
+ "x-ms-request-id": "9b332a97-4002-002c-3e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -899,12 +907,12 @@
{
"odata.type": "chrissscratch.testtablei2hltmnh",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.3683558Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.6646706Z\u0027\u0022",
"odata.editLink": "testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:25.3683558Z",
+ "Timestamp": "2020-07-17T22:09:25.6646706Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -948,12 +956,12 @@
{
"odata.type": "chrissscratch.testtablei2hltmnh",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.4153949Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.7107089Z\u0027\u0022",
"odata.editLink": "testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:25.4153949Z",
+ "Timestamp": "2020-07-17T22:09:25.7107089Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1001,14 +1009,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=LongPrimitive%20ge%202147483650L",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d61acb747b56cd90dc83ab9a5711606f",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:26 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1017,7 +1026,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:25 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:25 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1025,7 +1034,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d61acb747b56cd90dc83ab9a5711606f",
- "x-ms-request-id": "207548af-b002-001b-2121-5aea7a000000",
+ "x-ms-request-id": "9b332abf-4002-002c-6386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1034,12 +1043,12 @@
{
"odata.type": "chrissscratch.testtablei2hltmnh",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.3683558Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.6646706Z\u0027\u0022",
"odata.editLink": "testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:25.3683558Z",
+ "Timestamp": "2020-07-17T22:09:25.6646706Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1083,12 +1092,12 @@
{
"odata.type": "chrissscratch.testtablei2hltmnh",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.4153949Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.7107089Z\u0027\u0022",
"odata.editLink": "testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:25.4153949Z",
+ "Timestamp": "2020-07-17T22:09:25.7107089Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1136,14 +1145,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=LongPrimitiveN%20ge%202147483650L",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "13f88dc0c0d11f9385a9fa73578e9ef0",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:26 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1152,7 +1162,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:25 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:25 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1160,7 +1170,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "13f88dc0c0d11f9385a9fa73578e9ef0",
- "x-ms-request-id": "207548cc-b002-001b-3e21-5aea7a000000",
+ "x-ms-request-id": "9b332adc-4002-002c-7f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1169,12 +1179,12 @@
{
"odata.type": "chrissscratch.testtablei2hltmnh",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.3683558Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.6646706Z\u0027\u0022",
"odata.editLink": "testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:25.3683558Z",
+ "Timestamp": "2020-07-17T22:09:25.6646706Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1218,12 +1228,12 @@
{
"odata.type": "chrissscratch.testtablei2hltmnh",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.4153949Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.7107089Z\u0027\u0022",
"odata.editLink": "testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:25.4153949Z",
+ "Timestamp": "2020-07-17T22:09:25.7107089Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1271,14 +1281,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Double%20ge%203.03",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "554f8b3419de9fa72f4990aaa71dff4c",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:26 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1287,7 +1298,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:25 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:25 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1295,7 +1306,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "554f8b3419de9fa72f4990aaa71dff4c",
- "x-ms-request-id": "207548ef-b002-001b-6021-5aea7a000000",
+ "x-ms-request-id": "9b332b09-4002-002c-2c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1304,12 +1315,12 @@
{
"odata.type": "chrissscratch.testtablei2hltmnh",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.3683558Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.6646706Z\u0027\u0022",
"odata.editLink": "testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:25.3683558Z",
+ "Timestamp": "2020-07-17T22:09:25.6646706Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1353,12 +1364,12 @@
{
"odata.type": "chrissscratch.testtablei2hltmnh",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.4153949Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.7107089Z\u0027\u0022",
"odata.editLink": "testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:25.4153949Z",
+ "Timestamp": "2020-07-17T22:09:25.7107089Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1406,14 +1417,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=DoublePrimitive%20ge%203.03",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "618b5de7a422b43d37fb51ad801d764e",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:26 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1422,7 +1434,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:25 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:25 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1430,7 +1442,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "618b5de7a422b43d37fb51ad801d764e",
- "x-ms-request-id": "20754909-b002-001b-7921-5aea7a000000",
+ "x-ms-request-id": "9b332b25-4002-002c-4786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1439,12 +1451,12 @@
{
"odata.type": "chrissscratch.testtablei2hltmnh",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.3683558Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.6646706Z\u0027\u0022",
"odata.editLink": "testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:25.3683558Z",
+ "Timestamp": "2020-07-17T22:09:25.6646706Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1488,12 +1500,12 @@
{
"odata.type": "chrissscratch.testtablei2hltmnh",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.4153949Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.7107089Z\u0027\u0022",
"odata.editLink": "testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:25.4153949Z",
+ "Timestamp": "2020-07-17T22:09:25.7107089Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1541,14 +1553,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Int32%20ge%203",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "cc66bae40bc2a690e658e4872fe87867",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:26 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1557,7 +1570,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:25 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:25 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1565,7 +1578,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "cc66bae40bc2a690e658e4872fe87867",
- "x-ms-request-id": "20754920-b002-001b-1021-5aea7a000000",
+ "x-ms-request-id": "9b332b47-4002-002c-6886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1574,12 +1587,12 @@
{
"odata.type": "chrissscratch.testtablei2hltmnh",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.3683558Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.6646706Z\u0027\u0022",
"odata.editLink": "testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:25.3683558Z",
+ "Timestamp": "2020-07-17T22:09:25.6646706Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1623,12 +1636,12 @@
{
"odata.type": "chrissscratch.testtablei2hltmnh",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.4153949Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.7107089Z\u0027\u0022",
"odata.editLink": "testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:25.4153949Z",
+ "Timestamp": "2020-07-17T22:09:25.7107089Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1676,14 +1689,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Int32N%20ge%203",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f98baea93d0390cd4e9a1de3c8f91f12",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:26 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1692,7 +1706,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:26 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:25 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1700,7 +1714,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f98baea93d0390cd4e9a1de3c8f91f12",
- "x-ms-request-id": "2075493f-b002-001b-2c21-5aea7a000000",
+ "x-ms-request-id": "9b332b51-4002-002c-7286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1709,12 +1723,12 @@
{
"odata.type": "chrissscratch.testtablei2hltmnh",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.3683558Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.6646706Z\u0027\u0022",
"odata.editLink": "testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:25.3683558Z",
+ "Timestamp": "2020-07-17T22:09:25.6646706Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1758,12 +1772,12 @@
{
"odata.type": "chrissscratch.testtablei2hltmnh",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.4153949Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.7107089Z\u0027\u0022",
"odata.editLink": "testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:25.4153949Z",
+ "Timestamp": "2020-07-17T22:09:25.7107089Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1811,14 +1825,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=DateTimeOffset%20ge%20datetime%272020-01-01T01%3A04%3A00Z%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ecc541d333b7dc8acce47acac0b6844e",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:26 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1827,7 +1842,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:26 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:25 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1835,7 +1850,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ecc541d333b7dc8acce47acac0b6844e",
- "x-ms-request-id": "2075494a-b002-001b-3721-5aea7a000000",
+ "x-ms-request-id": "9b332b61-4002-002c-0186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1844,12 +1859,12 @@
{
"odata.type": "chrissscratch.testtablei2hltmnh",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.3683558Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.6646706Z\u0027\u0022",
"odata.editLink": "testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:25.3683558Z",
+ "Timestamp": "2020-07-17T22:09:25.6646706Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1893,12 +1908,12 @@
{
"odata.type": "chrissscratch.testtablei2hltmnh",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.4153949Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.7107089Z\u0027\u0022",
"odata.editLink": "testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:25.4153949Z",
+ "Timestamp": "2020-07-17T22:09:25.7107089Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -1946,14 +1961,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=DateTimeOffset%20lt%20datetime%272020-01-01T01%3A04%3A00Z%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d203ea837c92a74becd57d27edaddeed",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:26 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1962,7 +1978,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:26 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:25 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1970,7 +1986,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d203ea837c92a74becd57d27edaddeed",
- "x-ms-request-id": "20754979-b002-001b-6221-5aea7a000000",
+ "x-ms-request-id": "9b332b8a-4002-002c-2986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1979,12 +1995,12 @@
{
"odata.type": "chrissscratch.testtablei2hltmnh",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.2842864Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.5745953Z\u0027\u0022",
"odata.editLink": "testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:25.2842864Z",
+ "Timestamp": "2020-07-17T22:09:25.5745953Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2028,12 +2044,12 @@
{
"odata.type": "chrissscratch.testtablei2hltmnh",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.3263205Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.6196336Z\u0027\u0022",
"odata.editLink": "testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270002\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0002",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:25.3263205Z",
+ "Timestamp": "2020-07-17T22:09:25.6196336Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:03:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2081,14 +2097,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Bool%20eq%20false",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "eeb3d1398b2375af24ae2d1ec203cf98",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:26 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2097,7 +2114,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:26 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:26 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -2105,7 +2122,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "eeb3d1398b2375af24ae2d1ec203cf98",
- "x-ms-request-id": "2075499e-b002-001b-0721-5aea7a000000",
+ "x-ms-request-id": "9b332ba0-4002-002c-3e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -2114,12 +2131,12 @@
{
"odata.type": "chrissscratch.testtablei2hltmnh",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.2842864Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.5745953Z\u0027\u0022",
"odata.editLink": "testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:25.2842864Z",
+ "Timestamp": "2020-07-17T22:09:25.5745953Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2163,12 +2180,12 @@
{
"odata.type": "chrissscratch.testtablei2hltmnh",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.3683558Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.6646706Z\u0027\u0022",
"odata.editLink": "testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:25.3683558Z",
+ "Timestamp": "2020-07-17T22:09:25.6646706Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2216,14 +2233,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=BoolPrimitive%20eq%20false",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "dd5fcf154df55780f51effe1b562ee1f",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:27 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2232,7 +2250,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:26 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:26 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -2240,7 +2258,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "dd5fcf154df55780f51effe1b562ee1f",
- "x-ms-request-id": "207549be-b002-001b-2721-5aea7a000000",
+ "x-ms-request-id": "9b332bb5-4002-002c-5086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -2249,12 +2267,12 @@
{
"odata.type": "chrissscratch.testtablei2hltmnh",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.2842864Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.5745953Z\u0027\u0022",
"odata.editLink": "testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270001\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0001",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:25.2842864Z",
+ "Timestamp": "2020-07-17T22:09:25.5745953Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:02:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2298,12 +2316,12 @@
{
"odata.type": "chrissscratch.testtablei2hltmnh",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.3683558Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.6646706Z\u0027\u0022",
"odata.editLink": "testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:25.3683558Z",
+ "Timestamp": "2020-07-17T22:09:25.6646706Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2351,14 +2369,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=Binary%20eq%20X%27010203%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ef908d069602f72b3a8eade34f2de4e9",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:27 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2367,7 +2386,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:26 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:26 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -2375,7 +2394,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ef908d069602f72b3a8eade34f2de4e9",
- "x-ms-request-id": "207549da-b002-001b-4321-5aea7a000000",
+ "x-ms-request-id": "9b332bd8-4002-002c-6c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -2384,12 +2403,12 @@
{
"odata.type": "chrissscratch.testtablei2hltmnh",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.3683558Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.6646706Z\u0027\u0022",
"odata.editLink": "testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:25.3683558Z",
+ "Timestamp": "2020-07-17T22:09:25.6646706Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2437,14 +2456,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=BinaryPrimitive%20eq%20X%27010203%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1e11e506004decf7505bf8048ccebfc1",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:27 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2453,7 +2473,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:26 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:26 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -2461,7 +2481,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "1e11e506004decf7505bf8048ccebfc1",
- "x-ms-request-id": "207549e5-b002-001b-4e21-5aea7a000000",
+ "x-ms-request-id": "9b332be4-4002-002c-7886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -2470,12 +2490,12 @@
{
"odata.type": "chrissscratch.testtablei2hltmnh",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.3683558Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.6646706Z\u0027\u0022",
"odata.editLink": "testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:25.3683558Z",
+ "Timestamp": "2020-07-17T22:09:25.6646706Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2523,14 +2543,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28%28%28%28%28%28%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28String%20ge%20%270003%27%29%29%20and%20%28Int64%20ge%202147483650L%29%29%20and%20%28LongPrimitive%20ge%202147483650L%29%29%20and%20%28LongPrimitiveN%20ge%202147483650L%29%29%20and%20%28Int32%20ge%203%29%29%20and%20%28Int32N%20ge%203%29%29%20and%20%28DateTimeOffset%20ge%20datetime%272020-01-01T01%3A04%3A00Z%27%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "35180dbfe0737f95a368a3679f9d08c8",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:27 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2539,7 +2560,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:26 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:26 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -2547,7 +2568,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "35180dbfe0737f95a368a3679f9d08c8",
- "x-ms-request-id": "207549f1-b002-001b-5a21-5aea7a000000",
+ "x-ms-request-id": "9b332bf8-4002-002c-0c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -2556,12 +2577,12 @@
{
"odata.type": "chrissscratch.testtablei2hltmnh",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.3683558Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.6646706Z\u0027\u0022",
"odata.editLink": "testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270003\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0003",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:25.3683558Z",
+ "Timestamp": "2020-07-17T22:09:25.6646706Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:04:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2605,12 +2626,12 @@
{
"odata.type": "chrissscratch.testtablei2hltmnh",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A25.4153949Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A25.7107089Z\u0027\u0022",
"odata.editLink": "testtablei2hltmnh(PartitionKey=\u0027somPartition\u0027,RowKey=\u00270004\u0027)",
"PartitionKey": "somPartition",
"RowKey": "0004",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:25.4153949Z",
+ "Timestamp": "2020-07-17T22:09:25.7107089Z",
"DateTimeOffsetN@odata.type": "Edm.DateTime",
"DateTimeOffsetN": "2020-01-01T01:05:00Z",
"DateTimeOffset@odata.type": "Edm.DateTime",
@@ -2660,13 +2681,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-c1d0ed97a31bd84fb0c8a325b5ba4cd8-009f9ff6c20f1a42-00",
+ "traceparent": "00-72377f379d1175468f99f28e6c6b6fd3-725191563162e641-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d0db1639d05105d195a39ea79e276b6b",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:27 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2675,14 +2696,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:26 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:26 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d0db1639d05105d195a39ea79e276b6b",
- "x-ms-request-id": "20754a0a-b002-001b-7321-5aea7a000000",
+ "x-ms-request-id": "9b332c11-4002-002c-2486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableWithInvalidQuery.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableWithInvalidQuery.json
index cea98d3313f1..312217cfb693 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableWithInvalidQuery.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableWithInvalidQuery.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9856c51c2e77fb459f0c011f7aa596d8-d190efe95bc86b45-00",
+ "traceparent": "00-7ffe1499ece7f946abb10969740a96a4-537499a1d35b724f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "18768950d00026c89ab66adf3e8e690d",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:08 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:07 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:16 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablehdxutm6v\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "18768950d00026c89ab66adf3e8e690d",
- "x-ms-request-id": "2075398b-b002-001b-6e21-5aea7a000000",
+ "x-ms-request-id": "9b3322c3-4002-002c-3c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablehdxutm6v?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1f540facd60ac442b773f9c3b8db0553-774dc0aff2166841-00",
+ "traceparent": "00-6896aff5be834e40b0a10c934b82cd10-85746b3117bc204a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "da3f060c6aa5fda63831777bbf424d4d",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:08 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -88,8 +90,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:08 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.2801704Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:16 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A17.6439957Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablehdxutm6v(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -98,19 +100,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "da3f060c6aa5fda63831777bbf424d4d",
- "x-ms-request-id": "20753997-b002-001b-7621-5aea7a000000",
+ "x-ms-request-id": "9b3322cc-4002-002c-4386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehdxutm6v/@Element",
"odata.type": "chrissscratch.testtablehdxutm6v",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehdxutm6v(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.2801704Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A17.6439957Z\u0027\u0022",
"odata.editLink": "testtablehdxutm6v(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:08.2801704Z",
+ "Timestamp": "2020-07-17T22:09:17.6439957Z",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:02:00Z",
@@ -130,17 +132,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablehdxutm6v?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "742",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9e71f2f11c4ef442baaddb09438adfc2-26ed2198be995d4c-00",
+ "traceparent": "00-fa6288a02f0f584ca3cf35da7e1c97cf-10c57fe811c30948-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8aa8be2441eef4b19ddcbb196822823c",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:08 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -169,8 +172,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:08 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.3232065Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:16 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A17.6880328Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablehdxutm6v(PartitionKey=\u0027somPartition2\u0027,RowKey=\u002701\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -179,19 +182,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "8aa8be2441eef4b19ddcbb196822823c",
- "x-ms-request-id": "207539ab-b002-001b-0721-5aea7a000000",
+ "x-ms-request-id": "9b3322d2-4002-002c-4986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablehdxutm6v/@Element",
"odata.type": "chrissscratch.testtablehdxutm6v",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablehdxutm6v(PartitionKey=\u0027somPartition2\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.3232065Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A17.6880328Z\u0027\u0022",
"odata.editLink": "testtablehdxutm6v(PartitionKey=\u0027somPartition2\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition2",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:08.3232065Z",
+ "Timestamp": "2020-07-17T22:09:17.6880328Z",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:02:00Z",
@@ -211,14 +214,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablehdxutm6v()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28PartitionKey%20eq%20%27somPartition2%27%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "989587646a0ae59de278e0cf584d6757",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:08 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -227,7 +231,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:08 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:16 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -235,7 +239,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "989587646a0ae59de278e0cf584d6757",
- "x-ms-request-id": "207539ba-b002-001b-1621-5aea7a000000",
+ "x-ms-request-id": "9b3322d5-4002-002c-4c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -249,13 +253,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-27e1b41b0015374d85e9b704fd58e3c6-e7fa2882a97cf941-00",
+ "traceparent": "00-048e34d155b1d446ada5ef75a0f588a3-b22f3a95375f064b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7fbb1d68dee6cb1f554a3dc8af8d9415",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:08 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -264,14 +268,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:08 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:16 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "7fbb1d68dee6cb1f554a3dc8af8d9415",
- "x-ms-request-id": "207539c1-b002-001b-1d21-5aea7a000000",
+ "x-ms-request-id": "9b3322da-4002-002c-4f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableWithInvalidQueryAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableWithInvalidQueryAsync.json
index f9e2abdc4ea3..af83e9e1c697 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableWithInvalidQueryAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableQueryableWithInvalidQueryAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c5dedce3346ca9499cd30493955698dd-5f3dd543f8631e4f-00",
+ "traceparent": "00-a0c4d6ac4db2914c84a5f72be7609b43-5d33e8b3b0902949-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f746fc6b382e32780d03bb47bf3e77d6",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:27 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:26 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:26 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabler82jj4z3\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f746fc6b382e32780d03bb47bf3e77d6",
- "x-ms-request-id": "20754a12-b002-001b-7b21-5aea7a000000",
+ "x-ms-request-id": "9b332c20-4002-002c-3386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtabler82jj4z3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c1fa0a4a9b2b3d4da399a4083487b565-febb0760e4585745-00",
+ "traceparent": "00-53336869390d154989bf2de76fd08748-4ec2c2d698e3b34b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b0c7fbbc9f6d3d6a0ab4bab5080ac8f4",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:27 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -88,8 +90,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:26 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.1828625Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:26 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A27.3981174Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtabler82jj4z3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -98,19 +100,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "b0c7fbbc9f6d3d6a0ab4bab5080ac8f4",
- "x-ms-request-id": "20754a18-b002-001b-8021-5aea7a000000",
+ "x-ms-request-id": "9b332c26-4002-002c-3886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabler82jj4z3/@Element",
"odata.type": "chrissscratch.testtabler82jj4z3",
"odata.id": "https://chrissscratch.table.core.windows.net/testtabler82jj4z3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.1828625Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A27.3981174Z\u0027\u0022",
"odata.editLink": "testtabler82jj4z3(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:27.1828625Z",
+ "Timestamp": "2020-07-17T22:09:27.3981174Z",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:02:00Z",
@@ -130,17 +132,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtabler82jj4z3?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "742",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-29a8c908b4140249a5eb03a36055f94c-ed723613e0bc3a48-00",
+ "traceparent": "00-c7adb691e20c8f43809ef4f2919cea9f-8323616b75270244-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "67945a710110d6cd21d5b0698c467c3b",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:27 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -169,8 +172,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:26 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.227899Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:26 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A27.4431548Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtabler82jj4z3(PartitionKey=\u0027somPartition2\u0027,RowKey=\u002701\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -179,19 +182,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "67945a710110d6cd21d5b0698c467c3b",
- "x-ms-request-id": "20754a1c-b002-001b-0421-5aea7a000000",
+ "x-ms-request-id": "9b332c30-4002-002c-4086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtabler82jj4z3/@Element",
"odata.type": "chrissscratch.testtabler82jj4z3",
"odata.id": "https://chrissscratch.table.core.windows.net/testtabler82jj4z3(PartitionKey=\u0027somPartition2\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.227899Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A27.4431548Z\u0027\u0022",
"odata.editLink": "testtabler82jj4z3(PartitionKey=\u0027somPartition2\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition2",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:27.227899Z",
+ "Timestamp": "2020-07-17T22:09:27.4431548Z",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:02:00Z",
@@ -211,14 +214,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtabler82jj4z3()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=%28PartitionKey%20eq%20%27somPartition%27%29%20and%20%28PartitionKey%20eq%20%27somPartition2%27%29",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ee1cfbec394ccb0d9108ec7a7dc32a02",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:27 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -227,7 +231,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:26 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:26 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -235,7 +239,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ee1cfbec394ccb0d9108ec7a7dc32a02",
- "x-ms-request-id": "20754a1f-b002-001b-0721-5aea7a000000",
+ "x-ms-request-id": "9b332c34-4002-002c-4486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -249,13 +253,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-17699fbba85ccf4c82fd7a6707d0a97b-722582762d36d541-00",
+ "traceparent": "00-dfe07e69abc4d74fab4e9dbc32d4f598-a1c8aa9268bc9444-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "65d6c73a10a9bac52ef18e98ef00b1c4",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:27 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -264,14 +268,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:27 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:26 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "65d6c73a10a9bac52ef18e98ef00b1c4",
- "x-ms-request-id": "20754a23-b002-001b-0b21-5aea7a000000",
+ "x-ms-request-id": "9b332c3b-4002-002c-4b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableTakeWithContinuationTask.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableTakeWithContinuationTask.json
index 84a79b03223b..2b51ab1a9fd4 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableTakeWithContinuationTask.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableTakeWithContinuationTask.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ea06bc21d6797f42a2e28b43d759f125-921a21dd3c96544b-00",
+ "traceparent": "00-47856cc5f8b7b344899be0feb13a308b-b9e7b59a942ad746-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "413991287561311d67fcaf144375240a",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:08 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:08 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:16 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable52065m97\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "413991287561311d67fcaf144375240a",
- "x-ms-request-id": "207539cb-b002-001b-2621-5aea7a000000",
+ "x-ms-request-id": "9b3322ec-4002-002c-6086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable52065m97?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-13cb429fbe2f0645b0a9f9805ce84a3a-eeb75b1862f8ee4f-00",
+ "traceparent": "00-a7bfb0cde344bc458265d30bdac58593-afe866347771474a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "acd6e364f2980935ab2e3167859967d0",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:08 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -88,8 +90,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:08 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.5123635Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:17 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A17.8731867Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -98,19 +100,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "acd6e364f2980935ab2e3167859967d0",
- "x-ms-request-id": "207539d8-b002-001b-3221-5aea7a000000",
+ "x-ms-request-id": "9b3322f4-4002-002c-6686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable52065m97/@Element",
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.5123635Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A17.8731867Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:08.5123635Z",
+ "Timestamp": "2020-07-17T22:09:17.8731867Z",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:02:00Z",
@@ -130,17 +132,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable52065m97?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6f8cb945c732bd4ca230884e4dccdebb-60760849fd5ac849-00",
+ "traceparent": "00-043f8a916269254ca30b5d305acceddf-655faafcdd4fa142-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "48e2c48e475fca91dfbf108be02f6263",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:08 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -169,8 +172,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:08 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.5584013Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:17 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A17.9192254Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -179,19 +182,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "48e2c48e475fca91dfbf108be02f6263",
- "x-ms-request-id": "207539ea-b002-001b-4421-5aea7a000000",
+ "x-ms-request-id": "9b3322fc-4002-002c-6e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable52065m97/@Element",
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.5584013Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A17.9192254Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"PartitionKey": "somPartition",
"RowKey": "02",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:08.5584013Z",
+ "Timestamp": "2020-07-17T22:09:17.9192254Z",
"StringTypeProperty": "This is table entity number 02",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:03:00Z",
@@ -211,17 +214,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable52065m97?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-bac6b7729c15e24fbe19e3fbfcab12f9-3a47ef640b560b43-00",
+ "traceparent": "00-98c6cdb990aeff439db09e75cbdbbf38-8c3fc6123e6be048-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b0b498de88a835725c2f953343b6accd",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:08 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -250,8 +254,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:08 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.6134466Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:17 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A17.9642624Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -260,19 +264,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "b0b498de88a835725c2f953343b6accd",
- "x-ms-request-id": "207539f3-b002-001b-4c21-5aea7a000000",
+ "x-ms-request-id": "9b332304-4002-002c-7686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable52065m97/@Element",
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.6134466Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A17.9642624Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"PartitionKey": "somPartition",
"RowKey": "03",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:08.6134466Z",
+ "Timestamp": "2020-07-17T22:09:17.9642624Z",
"StringTypeProperty": "This is table entity number 03",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:04:00Z",
@@ -292,17 +296,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable52065m97?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c02eb77d2405134499f06e1362936591-ea6e996ddfa5614e-00",
+ "traceparent": "00-e2ff1e6ef93efb418af43db3ae2b3eaa-58b6c1461904a741-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7f85de95dc921cab510bcdd9e2a9297b",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:08 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -331,8 +336,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:08 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.6584844Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:17 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.0082999Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -341,19 +346,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "7f85de95dc921cab510bcdd9e2a9297b",
- "x-ms-request-id": "207539fa-b002-001b-5321-5aea7a000000",
+ "x-ms-request-id": "9b33230a-4002-002c-7b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable52065m97/@Element",
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.6584844Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.0082999Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"PartitionKey": "somPartition",
"RowKey": "04",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:08.6584844Z",
+ "Timestamp": "2020-07-17T22:09:18.0082999Z",
"StringTypeProperty": "This is table entity number 04",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:05:00Z",
@@ -373,17 +378,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable52065m97?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8efe8e4596a8f4449eecb96e0975ed13-8989afb6ea5eea47-00",
+ "traceparent": "00-6e95e73e55e6404586d8cedcf4ac3ab9-f292117c8e57a44e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ed88cdcbb6e5062852aceb2fb15e8629",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:08 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -412,8 +418,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:08 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.7055235Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:17 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.0543369Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -422,19 +428,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ed88cdcbb6e5062852aceb2fb15e8629",
- "x-ms-request-id": "20753a06-b002-001b-5e21-5aea7a000000",
+ "x-ms-request-id": "9b33230e-4002-002c-7f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable52065m97/@Element",
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.7055235Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.0543369Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"PartitionKey": "somPartition",
"RowKey": "05",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:08.7055235Z",
+ "Timestamp": "2020-07-17T22:09:18.0543369Z",
"StringTypeProperty": "This is table entity number 05",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:06:00Z",
@@ -454,17 +460,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable52065m97?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9f5afc0da6af7c4db1cb106bb3fcae82-99000272b150f445-00",
+ "traceparent": "00-15c3141acd993a44a04e4ad6bf484733-e1e804b7478b464f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "02f54312e2a902d0ec975f9cba9853b2",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:09 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -493,8 +500,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:08 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.7485592Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:17 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.1103843Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -503,19 +510,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "02f54312e2a902d0ec975f9cba9853b2",
- "x-ms-request-id": "20753a0c-b002-001b-6321-5aea7a000000",
+ "x-ms-request-id": "9b332318-4002-002c-0786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable52065m97/@Element",
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.7485592Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.1103843Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"PartitionKey": "somPartition",
"RowKey": "06",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:08.7485592Z",
+ "Timestamp": "2020-07-17T22:09:18.1103843Z",
"StringTypeProperty": "This is table entity number 06",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:07:00Z",
@@ -535,17 +542,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable52065m97?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f893f4ba323a024d9a0fa9e362e584f7-e69cd6e362d8c445-00",
+ "traceparent": "00-65cf4b381af53141a3bf099690803b7b-3aa5c71cf3854b4f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "76681a06bf2ddee8b67f2de6f17b6af3",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:09 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -574,8 +582,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:08 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.802604Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:17 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.1604251Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -584,19 +592,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "76681a06bf2ddee8b67f2de6f17b6af3",
- "x-ms-request-id": "20753a1e-b002-001b-7521-5aea7a000000",
+ "x-ms-request-id": "9b332322-4002-002c-1186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable52065m97/@Element",
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.802604Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.1604251Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"PartitionKey": "somPartition",
"RowKey": "07",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:08.802604Z",
+ "Timestamp": "2020-07-17T22:09:18.1604251Z",
"StringTypeProperty": "This is table entity number 07",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:08:00Z",
@@ -616,17 +624,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable52065m97?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-4fd0d9108fac564ca9dd0710ac121db3-1e6c9292fa58fb4d-00",
+ "traceparent": "00-5e4c0cc0f4cd1b4f86de3e4aa41c8d30-ed494f6825348e46-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9fc7a48526b4e8d2fc86004d578b4cb9",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:09 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -655,8 +664,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:08 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.8466402Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:17 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.2114675Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -665,19 +674,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "9fc7a48526b4e8d2fc86004d578b4cb9",
- "x-ms-request-id": "20753a26-b002-001b-7d21-5aea7a000000",
+ "x-ms-request-id": "9b33232a-4002-002c-1986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable52065m97/@Element",
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.8466402Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.2114675Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"PartitionKey": "somPartition",
"RowKey": "08",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:08.8466402Z",
+ "Timestamp": "2020-07-17T22:09:18.2114675Z",
"StringTypeProperty": "This is table entity number 08",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:09:00Z",
@@ -697,17 +706,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable52065m97?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-469d5db229bc8648b214db1952bf634e-103dd292b0f44e4e-00",
+ "traceparent": "00-911919bffea3ac44b399fb2000d76353-e4620a3662eea949-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9729395910f553fb5a174c2ab5ea1171",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:09 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -736,8 +746,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:08 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.8916776Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:17 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.2605092Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -746,19 +756,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "9729395910f553fb5a174c2ab5ea1171",
- "x-ms-request-id": "20753a32-b002-001b-0921-5aea7a000000",
+ "x-ms-request-id": "9b332334-4002-002c-2386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable52065m97/@Element",
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.8916776Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.2605092Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"PartitionKey": "somPartition",
"RowKey": "09",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:08.8916776Z",
+ "Timestamp": "2020-07-17T22:09:18.2605092Z",
"StringTypeProperty": "This is table entity number 09",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:10:00Z",
@@ -778,17 +788,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable52065m97?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f859f4f3cec9414c92db6cbc9d6379ca-84ed798946ca8d44-00",
+ "traceparent": "00-9caae714290f3d40a72d972ada7156a0-acdcfd5590e36949-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "15176c2db4d1dffe477f79a7be9b872a",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:09 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -817,8 +828,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:08 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.9317112Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:17 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.3025437Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -827,19 +838,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "15176c2db4d1dffe477f79a7be9b872a",
- "x-ms-request-id": "20753a37-b002-001b-0d21-5aea7a000000",
+ "x-ms-request-id": "9b33233d-4002-002c-2c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable52065m97/@Element",
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.9317112Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.3025437Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"PartitionKey": "somPartition",
"RowKey": "10",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:08.9317112Z",
+ "Timestamp": "2020-07-17T22:09:18.3025437Z",
"StringTypeProperty": "This is table entity number 10",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:11:00Z",
@@ -859,17 +870,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable52065m97?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c495a4b1408419499f93a9e86b71f0db-0de31f572e270342-00",
+ "traceparent": "00-8863a7bdd69b2d409234358058c96616-e86c2d4298812c4b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b78c7432d25174fda973449cdaa73312",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:09 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -898,8 +910,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:08 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.9777494Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:17 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.3485815Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -908,19 +920,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "b78c7432d25174fda973449cdaa73312",
- "x-ms-request-id": "20753a3f-b002-001b-1421-5aea7a000000",
+ "x-ms-request-id": "9b332349-4002-002c-3786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable52065m97/@Element",
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.9777494Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.3485815Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"PartitionKey": "somPartition",
"RowKey": "11",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:08.9777494Z",
+ "Timestamp": "2020-07-17T22:09:18.3485815Z",
"StringTypeProperty": "This is table entity number 11",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:12:00Z",
@@ -940,17 +952,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable52065m97?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ab2944f95c47e845b7952c0f8b4126b1-9d64e7a0ad11d644-00",
+ "traceparent": "00-7ac74b64f55f7f4aafb80f9579b65d03-06c461c904678049-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ea208f753673a5e83a4a4f75965395bf",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:09 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -979,8 +992,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:08 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.0237877Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:17 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.3976236Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -989,19 +1002,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ea208f753673a5e83a4a4f75965395bf",
- "x-ms-request-id": "20753a4b-b002-001b-1e21-5aea7a000000",
+ "x-ms-request-id": "9b332355-4002-002c-4386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable52065m97/@Element",
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.0237877Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.3976236Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"PartitionKey": "somPartition",
"RowKey": "12",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:09.0237877Z",
+ "Timestamp": "2020-07-17T22:09:18.3976236Z",
"StringTypeProperty": "This is table entity number 12",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:13:00Z",
@@ -1021,17 +1034,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable52065m97?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-12f7aaf36836dc46863c041f688eb5ca-8458335f2e47bc4f-00",
+ "traceparent": "00-e5c076861a80854eab848a3dc81f99ba-2851971b4a979849-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "41f72190595d5a1f6ea26c5e6f6104a0",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:09 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1060,8 +1074,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:08 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.0678238Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:17 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.4456627Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1070,19 +1084,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "41f72190595d5a1f6ea26c5e6f6104a0",
- "x-ms-request-id": "20753a57-b002-001b-2a21-5aea7a000000",
+ "x-ms-request-id": "9b33235e-4002-002c-4c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable52065m97/@Element",
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.0678238Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.4456627Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"PartitionKey": "somPartition",
"RowKey": "13",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:09.0678238Z",
+ "Timestamp": "2020-07-17T22:09:18.4456627Z",
"StringTypeProperty": "This is table entity number 13",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:14:00Z",
@@ -1102,17 +1116,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable52065m97?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c93fef5db82bb744aeeec91b12224a8e-79dd4aef7d3d6540-00",
+ "traceparent": "00-9f288826c7176f459f96ed35e5573cb5-a58d3d87640d5d4f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2f32674c9c7bfcb78ce77d078287de55",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:09 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1141,8 +1156,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:08 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.1148628Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:17 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.4906997Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1151,19 +1166,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "2f32674c9c7bfcb78ce77d078287de55",
- "x-ms-request-id": "20753a6a-b002-001b-3a21-5aea7a000000",
+ "x-ms-request-id": "9b332366-4002-002c-5486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable52065m97/@Element",
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.1148628Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.4906997Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"PartitionKey": "somPartition",
"RowKey": "14",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:09.1148628Z",
+ "Timestamp": "2020-07-17T22:09:18.4906997Z",
"StringTypeProperty": "This is table entity number 14",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:15:00Z",
@@ -1183,17 +1198,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable52065m97?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-efff9b408b624a4d8e3a3f744c5edae0-ad2fbc0a52398e43-00",
+ "traceparent": "00-0adfa8b177709b4fa64fce9570040afa-3064f933fdd1d04c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b90c84def1b01cb46fc57cd0c98935d8",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:09 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1222,8 +1238,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:08 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.1578986Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:17 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.5307334Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1232,19 +1248,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "b90c84def1b01cb46fc57cd0c98935d8",
- "x-ms-request-id": "20753a79-b002-001b-4721-5aea7a000000",
+ "x-ms-request-id": "9b332370-4002-002c-5e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable52065m97/@Element",
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.1578986Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.5307334Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"PartitionKey": "somPartition",
"RowKey": "15",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:09.1578986Z",
+ "Timestamp": "2020-07-17T22:09:18.5307334Z",
"StringTypeProperty": "This is table entity number 15",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:16:00Z",
@@ -1264,17 +1280,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable52065m97?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-2e0071e9865d994a9125b16445edda28-f5f647897b882443-00",
+ "traceparent": "00-9248669fa0433f4ea609189c0158f62f-294df08b18cb5349-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2e28af456621f3446afbb576db18d7e7",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:09 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1303,8 +1320,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:08 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.2019364Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:17 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.5757713Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1313,19 +1330,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "2e28af456621f3446afbb576db18d7e7",
- "x-ms-request-id": "20753a81-b002-001b-4d21-5aea7a000000",
+ "x-ms-request-id": "9b33237b-4002-002c-6986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable52065m97/@Element",
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.2019364Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.5757713Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"PartitionKey": "somPartition",
"RowKey": "16",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:09.2019364Z",
+ "Timestamp": "2020-07-17T22:09:18.5757713Z",
"StringTypeProperty": "This is table entity number 16",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:17:00Z",
@@ -1345,17 +1362,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable52065m97?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ff2f9f6eb4e03e4fa9f7cd4613efb37a-c3e08f56a278a341-00",
+ "traceparent": "00-4fc4767f64693c4fbe2f748bbb588a82-09f834ccdb267e46-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ea7f17c44b555befb315bfb520e63202",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:09 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1384,8 +1402,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:08 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.2459717Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:17 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.6238104Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1394,19 +1412,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ea7f17c44b555befb315bfb520e63202",
- "x-ms-request-id": "20753a88-b002-001b-5421-5aea7a000000",
+ "x-ms-request-id": "9b332392-4002-002c-7e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable52065m97/@Element",
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.2459717Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.6238104Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"PartitionKey": "somPartition",
"RowKey": "17",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:09.2459717Z",
+ "Timestamp": "2020-07-17T22:09:18.6238104Z",
"StringTypeProperty": "This is table entity number 17",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:18:00Z",
@@ -1426,17 +1444,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable52065m97?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c2c07bd9bee01943995cb191f64b8d72-e8f2f30ff3f73141-00",
+ "traceparent": "00-b35436102a31444aadbecc8e74c33d22-3c463fa97e750a4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d2c2a4b1af5e783340184eb53c3e4057",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:09 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1465,8 +1484,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:09 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.2920095Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:17 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.6648445Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1475,19 +1494,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d2c2a4b1af5e783340184eb53c3e4057",
- "x-ms-request-id": "20753a8f-b002-001b-5b21-5aea7a000000",
+ "x-ms-request-id": "9b332398-4002-002c-0486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable52065m97/@Element",
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.2920095Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.6648445Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"PartitionKey": "somPartition",
"RowKey": "18",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:09.2920095Z",
+ "Timestamp": "2020-07-17T22:09:18.6648445Z",
"StringTypeProperty": "This is table entity number 18",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:19:00Z",
@@ -1507,17 +1526,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable52065m97?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-592318251a634e40a85e038ed46f5f05-34cf079a172b2a49-00",
+ "traceparent": "00-418debe06411e94e833c109152031c72-ea5fd6fe4f911444-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b20c95ee4a0af982c0cd7b0ba68fd383",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:09 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1546,8 +1566,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:09 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.3340456Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:17 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.7078807Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1556,19 +1576,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "b20c95ee4a0af982c0cd7b0ba68fd383",
- "x-ms-request-id": "20753a99-b002-001b-6521-5aea7a000000",
+ "x-ms-request-id": "9b33239e-4002-002c-0a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable52065m97/@Element",
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.3340456Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.7078807Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"PartitionKey": "somPartition",
"RowKey": "19",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:09.3340456Z",
+ "Timestamp": "2020-07-17T22:09:18.7078807Z",
"StringTypeProperty": "This is table entity number 19",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:20:00Z",
@@ -1588,17 +1608,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable52065m97?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f47d6398fcc1a04b8289f9a436affa36-02337c1cccaf6c46-00",
+ "traceparent": "00-1904fbbf0dd56f49816808d65b7b65fd-f34cdd60f9731c4c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "36c4b3c804561488e307aa3dfc3a1e74",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:09 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1627,8 +1648,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:09 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.3820851Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:17 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.753919Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1637,19 +1658,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "36c4b3c804561488e307aa3dfc3a1e74",
- "x-ms-request-id": "20753aa3-b002-001b-6d21-5aea7a000000",
+ "x-ms-request-id": "9b3323a4-4002-002c-1086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtable52065m97/@Element",
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.3820851Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.753919Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"PartitionKey": "somPartition",
"RowKey": "20",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:09.3820851Z",
+ "Timestamp": "2020-07-17T22:09:18.753919Z",
"StringTypeProperty": "This is table entity number 20",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:21:00Z",
@@ -1669,14 +1690,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable52065m97()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=10\u0026$filter=PartitionKey%20eq%20%27somPartition%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8ac768d580da66f721c812903427d1b0",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:09 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1685,7 +1707,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:09 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:17 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1695,7 +1717,7 @@
"x-ms-client-request-id": "8ac768d580da66f721c812903427d1b0",
"x-ms-continuation-NextPartitionKey": "1!16!c29tUGFydGl0aW9u",
"x-ms-continuation-NextRowKey": "1!4!MTE-",
- "x-ms-request-id": "20753aaf-b002-001b-7821-5aea7a000000",
+ "x-ms-request-id": "9b3323ae-4002-002c-1786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1704,12 +1726,12 @@
{
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.5123635Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A17.8731867Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:08.5123635Z",
+ "Timestamp": "2020-07-17T22:09:17.8731867Z",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:02:00Z",
@@ -1727,12 +1749,12 @@
{
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.5584013Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A17.9192254Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"PartitionKey": "somPartition",
"RowKey": "02",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:08.5584013Z",
+ "Timestamp": "2020-07-17T22:09:17.9192254Z",
"StringTypeProperty": "This is table entity number 02",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:03:00Z",
@@ -1750,12 +1772,12 @@
{
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.6134466Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A17.9642624Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"PartitionKey": "somPartition",
"RowKey": "03",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:08.6134466Z",
+ "Timestamp": "2020-07-17T22:09:17.9642624Z",
"StringTypeProperty": "This is table entity number 03",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:04:00Z",
@@ -1773,12 +1795,12 @@
{
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.6584844Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.0082999Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"PartitionKey": "somPartition",
"RowKey": "04",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:08.6584844Z",
+ "Timestamp": "2020-07-17T22:09:18.0082999Z",
"StringTypeProperty": "This is table entity number 04",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:05:00Z",
@@ -1796,12 +1818,12 @@
{
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.7055235Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.0543369Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"PartitionKey": "somPartition",
"RowKey": "05",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:08.7055235Z",
+ "Timestamp": "2020-07-17T22:09:18.0543369Z",
"StringTypeProperty": "This is table entity number 05",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:06:00Z",
@@ -1819,12 +1841,12 @@
{
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.7485592Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.1103843Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"PartitionKey": "somPartition",
"RowKey": "06",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:08.7485592Z",
+ "Timestamp": "2020-07-17T22:09:18.1103843Z",
"StringTypeProperty": "This is table entity number 06",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:07:00Z",
@@ -1842,12 +1864,12 @@
{
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.802604Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.1604251Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"PartitionKey": "somPartition",
"RowKey": "07",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:08.802604Z",
+ "Timestamp": "2020-07-17T22:09:18.1604251Z",
"StringTypeProperty": "This is table entity number 07",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:08:00Z",
@@ -1865,12 +1887,12 @@
{
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.8466402Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.2114675Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"PartitionKey": "somPartition",
"RowKey": "08",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:08.8466402Z",
+ "Timestamp": "2020-07-17T22:09:18.2114675Z",
"StringTypeProperty": "This is table entity number 08",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:09:00Z",
@@ -1888,12 +1910,12 @@
{
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.8916776Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.2605092Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"PartitionKey": "somPartition",
"RowKey": "09",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:08.8916776Z",
+ "Timestamp": "2020-07-17T22:09:18.2605092Z",
"StringTypeProperty": "This is table entity number 09",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:10:00Z",
@@ -1911,12 +1933,12 @@
{
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.9317112Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.3025437Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"PartitionKey": "somPartition",
"RowKey": "10",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:08.9317112Z",
+ "Timestamp": "2020-07-17T22:09:18.3025437Z",
"StringTypeProperty": "This is table entity number 10",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:11:00Z",
@@ -1938,14 +1960,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtable52065m97()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=10\u0026$filter=PartitionKey%20eq%20%27somPartition%27\u0026NextPartitionKey=1%2116%21c29tUGFydGl0aW9u\u0026NextRowKey=1%214%21MTE-",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "89eccb440979e9010cf7ce02a045fc85",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:09 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1954,7 +1977,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:09 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:18 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1962,7 +1985,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "89eccb440979e9010cf7ce02a045fc85",
- "x-ms-request-id": "20753ac4-b002-001b-0c21-5aea7a000000",
+ "x-ms-request-id": "9b3323c1-4002-002c-2a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1971,12 +1994,12 @@
{
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A08.9777494Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.3485815Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"PartitionKey": "somPartition",
"RowKey": "11",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:08.9777494Z",
+ "Timestamp": "2020-07-17T22:09:18.3485815Z",
"StringTypeProperty": "This is table entity number 11",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:12:00Z",
@@ -1994,12 +2017,12 @@
{
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.0237877Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.3976236Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"PartitionKey": "somPartition",
"RowKey": "12",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:09.0237877Z",
+ "Timestamp": "2020-07-17T22:09:18.3976236Z",
"StringTypeProperty": "This is table entity number 12",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:13:00Z",
@@ -2017,12 +2040,12 @@
{
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.0678238Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.4456627Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"PartitionKey": "somPartition",
"RowKey": "13",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:09.0678238Z",
+ "Timestamp": "2020-07-17T22:09:18.4456627Z",
"StringTypeProperty": "This is table entity number 13",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:14:00Z",
@@ -2040,12 +2063,12 @@
{
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.1148628Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.4906997Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"PartitionKey": "somPartition",
"RowKey": "14",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:09.1148628Z",
+ "Timestamp": "2020-07-17T22:09:18.4906997Z",
"StringTypeProperty": "This is table entity number 14",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:15:00Z",
@@ -2063,12 +2086,12 @@
{
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.1578986Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.5307334Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"PartitionKey": "somPartition",
"RowKey": "15",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:09.1578986Z",
+ "Timestamp": "2020-07-17T22:09:18.5307334Z",
"StringTypeProperty": "This is table entity number 15",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:16:00Z",
@@ -2086,12 +2109,12 @@
{
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.2019364Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.5757713Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"PartitionKey": "somPartition",
"RowKey": "16",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:09.2019364Z",
+ "Timestamp": "2020-07-17T22:09:18.5757713Z",
"StringTypeProperty": "This is table entity number 16",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:17:00Z",
@@ -2109,12 +2132,12 @@
{
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.2459717Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.6238104Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"PartitionKey": "somPartition",
"RowKey": "17",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:09.2459717Z",
+ "Timestamp": "2020-07-17T22:09:18.6238104Z",
"StringTypeProperty": "This is table entity number 17",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:18:00Z",
@@ -2132,12 +2155,12 @@
{
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.2920095Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.6648445Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"PartitionKey": "somPartition",
"RowKey": "18",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:09.2920095Z",
+ "Timestamp": "2020-07-17T22:09:18.6648445Z",
"StringTypeProperty": "This is table entity number 18",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:19:00Z",
@@ -2155,12 +2178,12 @@
{
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.3340456Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.7078807Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"PartitionKey": "somPartition",
"RowKey": "19",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:09.3340456Z",
+ "Timestamp": "2020-07-17T22:09:18.7078807Z",
"StringTypeProperty": "This is table entity number 19",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:20:00Z",
@@ -2178,12 +2201,12 @@
{
"odata.type": "chrissscratch.testtable52065m97",
"odata.id": "https://chrissscratch.table.core.windows.net/testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A09.3820851Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A18.753919Z\u0027\u0022",
"odata.editLink": "testtable52065m97(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"PartitionKey": "somPartition",
"RowKey": "20",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:09.3820851Z",
+ "Timestamp": "2020-07-17T22:09:18.753919Z",
"StringTypeProperty": "This is table entity number 20",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:21:00Z",
@@ -2207,13 +2230,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-df619dd492b4e643b66ed3a3393fc60e-e6b97361a54b4e49-00",
+ "traceparent": "00-81910acbfa741649a7adbe74046da24e-048ace0c584bc649-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3e3606af49c848a8bb5d148df1f7e0bc",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:09 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:19 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2222,14 +2245,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:09 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:18 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "3e3606af49c848a8bb5d148df1f7e0bc",
- "x-ms-request-id": "20753ade-b002-001b-2521-5aea7a000000",
+ "x-ms-request-id": "9b3323c7-4002-002c-3086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableTakeWithContinuationTaskAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableTakeWithContinuationTaskAsync.json
index cb4a315cc604..fb9d3c588fff 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableTakeWithContinuationTaskAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableClientQueryableLiveTests(Storage)/TableTakeWithContinuationTaskAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-16bff64e44ede84fb45d615ac997fdb8-f476331b0124fb4f-00",
+ "traceparent": "00-2b2d7be426f86e4abadb55deb24c43c8-96bfdfa337a34642-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a61cae00cd4b609c331c1c7562f32881",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:27 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:27 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:26 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablevo9lwuvx\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "a61cae00cd4b609c331c1c7562f32881",
- "x-ms-request-id": "20754a2d-b002-001b-1521-5aea7a000000",
+ "x-ms-request-id": "9b332c46-4002-002c-5686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e424832bbf46c64a931f091aa452e073-73e435df35e3d144-00",
+ "traceparent": "00-845af9d137cac54b9e46f9d842a8d157-c786b9a78c71144a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "469a6c946bceefb207a6c0b9ef792bc1",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:27 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -88,8 +90,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:27 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.400042Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:26 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A27.6283088Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -98,19 +100,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "469a6c946bceefb207a6c0b9ef792bc1",
- "x-ms-request-id": "20754a2f-b002-001b-1621-5aea7a000000",
+ "x-ms-request-id": "9b332c50-4002-002c-5f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablevo9lwuvx/@Element",
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.400042Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A27.6283088Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:27.400042Z",
+ "Timestamp": "2020-07-17T22:09:27.6283088Z",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:02:00Z",
@@ -130,17 +132,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-83c37b661a62a140abafc862e62db0e7-3a28497e5d864749-00",
+ "traceparent": "00-d7af865c27c9114b864417f783cf188b-b46ebed42e7e0148-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7850150462063b5c103bb7150f7750f3",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:27 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -169,8 +172,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:27 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.4440789Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:26 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A27.6713445Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -179,19 +182,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "7850150462063b5c103bb7150f7750f3",
- "x-ms-request-id": "20754a35-b002-001b-1b21-5aea7a000000",
+ "x-ms-request-id": "9b332c56-4002-002c-6586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablevo9lwuvx/@Element",
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.4440789Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A27.6713445Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"PartitionKey": "somPartition",
"RowKey": "02",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:27.4440789Z",
+ "Timestamp": "2020-07-17T22:09:27.6713445Z",
"StringTypeProperty": "This is table entity number 02",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:03:00Z",
@@ -211,17 +214,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-70bb1aaacaa8ed49878abfa9d7f46cb9-299b73576ec01445-00",
+ "traceparent": "00-c2b031bd6101a640b5abbb0238fcc172-b3858a23bc9bf342-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "bf8221811fb4953bfc2c9ea40ce271ba",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:27 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -250,8 +254,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:27 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.4891163Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:26 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A27.7223878Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -260,19 +264,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "bf8221811fb4953bfc2c9ea40ce271ba",
- "x-ms-request-id": "20754a3e-b002-001b-2421-5aea7a000000",
+ "x-ms-request-id": "9b332c62-4002-002c-7086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablevo9lwuvx/@Element",
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.4891163Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A27.7223878Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"PartitionKey": "somPartition",
"RowKey": "03",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:27.4891163Z",
+ "Timestamp": "2020-07-17T22:09:27.7223878Z",
"StringTypeProperty": "This is table entity number 03",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:04:00Z",
@@ -292,17 +296,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-7f1f81d05424b94db25ac2c031b31e71-21540c157d25b046-00",
+ "traceparent": "00-b1f27801eba0dd4ba445b70d9a404c55-da8bf7930034514b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4c705bf1b0a3317b105e3693b39ddf90",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:27 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -331,8 +336,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:27 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.5371566Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:26 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A27.7634211Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -341,19 +346,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "4c705bf1b0a3317b105e3693b39ddf90",
- "x-ms-request-id": "20754a43-b002-001b-2921-5aea7a000000",
+ "x-ms-request-id": "9b332c68-4002-002c-7686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablevo9lwuvx/@Element",
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.5371566Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A27.7634211Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"PartitionKey": "somPartition",
"RowKey": "04",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:27.5371566Z",
+ "Timestamp": "2020-07-17T22:09:27.7634211Z",
"StringTypeProperty": "This is table entity number 04",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:05:00Z",
@@ -373,17 +378,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-31d71825fe1b9147ba0bbf50023f3358-ecbef61cdd07954e-00",
+ "traceparent": "00-2bb2e682c5341b43be1bd62e9a522d00-e75c9d772471cc47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ce38cc556bf7e50cdabb7bd9c3b72e2d",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:27 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -412,8 +418,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:27 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.5871973Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:26 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A27.808459Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -422,19 +428,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ce38cc556bf7e50cdabb7bd9c3b72e2d",
- "x-ms-request-id": "20754a4a-b002-001b-3021-5aea7a000000",
+ "x-ms-request-id": "9b332c72-4002-002c-8086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablevo9lwuvx/@Element",
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.5871973Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A27.808459Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"PartitionKey": "somPartition",
"RowKey": "05",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:27.5871973Z",
+ "Timestamp": "2020-07-17T22:09:27.808459Z",
"StringTypeProperty": "This is table entity number 05",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:06:00Z",
@@ -454,17 +460,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-503c46b4b03a75418439c2c79bb06755-c73d8b43213fe144-00",
+ "traceparent": "00-c9c6ce12c8aef34ea17da4e96580cbfa-8bb1fb594e9e0d4f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b424fdca0406d150a650ae55e8a8e15f",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:27 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -493,8 +500,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:27 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.630233Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:26 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A27.8554989Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -503,19 +510,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "b424fdca0406d150a650ae55e8a8e15f",
- "x-ms-request-id": "20754a51-b002-001b-3721-5aea7a000000",
+ "x-ms-request-id": "9b332c78-4002-002c-0686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablevo9lwuvx/@Element",
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.630233Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A27.8554989Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"PartitionKey": "somPartition",
"RowKey": "06",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:27.630233Z",
+ "Timestamp": "2020-07-17T22:09:27.8554989Z",
"StringTypeProperty": "This is table entity number 06",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:07:00Z",
@@ -535,17 +542,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c2e0d27252f59040b71a166b165fd4d4-81fee448464ecf4e-00",
+ "traceparent": "00-0bb6d0bec90e9945a8ba48c87ac006d2-5639eb5a43e29a48-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3f4f0d4da3aa86c34e8b72e734a16d59",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:27 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:27 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -574,8 +582,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:27 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.67427Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:27 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A27.8965318Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -584,19 +592,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "3f4f0d4da3aa86c34e8b72e734a16d59",
- "x-ms-request-id": "20754a56-b002-001b-3b21-5aea7a000000",
+ "x-ms-request-id": "9b332c82-4002-002c-0e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablevo9lwuvx/@Element",
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.67427Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A27.8965318Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"PartitionKey": "somPartition",
"RowKey": "07",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:27.67427Z",
+ "Timestamp": "2020-07-17T22:09:27.8965318Z",
"StringTypeProperty": "This is table entity number 07",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:08:00Z",
@@ -616,17 +624,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d73e1314f9e71045b512715d26c84cd1-f40debbb08853c41-00",
+ "traceparent": "00-30ce614c23a2144c9dc75284ec093aa6-8d50e3f953ec6a4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b6c908302b79518a7c6628a6bcb7fc31",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -655,8 +664,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:27 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.7193083Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:27 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A27.9405692Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -665,19 +674,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "b6c908302b79518a7c6628a6bcb7fc31",
- "x-ms-request-id": "20754a5f-b002-001b-4421-5aea7a000000",
+ "x-ms-request-id": "9b332c84-4002-002c-1086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablevo9lwuvx/@Element",
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.7193083Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A27.9405692Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"PartitionKey": "somPartition",
"RowKey": "08",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:27.7193083Z",
+ "Timestamp": "2020-07-17T22:09:27.9405692Z",
"StringTypeProperty": "This is table entity number 08",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:09:00Z",
@@ -697,17 +706,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "741",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ec668e269809244195f9915acc7a6b63-e39f0665626beb46-00",
+ "traceparent": "00-9aa5cf2012fc984fb87e405eae9895d4-683337d12a0bd24d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b68c1cd9ee672783399d657b91689c04",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -736,8 +746,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:27 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.7703494Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:27 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A27.9866071Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -746,19 +756,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "b68c1cd9ee672783399d657b91689c04",
- "x-ms-request-id": "20754a6f-b002-001b-5321-5aea7a000000",
+ "x-ms-request-id": "9b332c88-4002-002c-1486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablevo9lwuvx/@Element",
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.7703494Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A27.9866071Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"PartitionKey": "somPartition",
"RowKey": "09",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:27.7703494Z",
+ "Timestamp": "2020-07-17T22:09:27.9866071Z",
"StringTypeProperty": "This is table entity number 09",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:10:00Z",
@@ -778,17 +788,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f21066cd37c4584fab3736104d0da176-f466fe6e87bc9445-00",
+ "traceparent": "00-6966c5c031e6eb4899ba0a00bbc4ac76-52c3f3892f216443-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e02455e22bde21e683fdc3437a1cc997",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -817,8 +828,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:27 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.8153872Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:27 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A28.0276412Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -827,19 +838,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "e02455e22bde21e683fdc3437a1cc997",
- "x-ms-request-id": "20754a73-b002-001b-5721-5aea7a000000",
+ "x-ms-request-id": "9b332c94-4002-002c-1a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablevo9lwuvx/@Element",
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.8153872Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A28.0276412Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"PartitionKey": "somPartition",
"RowKey": "10",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:27.8153872Z",
+ "Timestamp": "2020-07-17T22:09:28.0276412Z",
"StringTypeProperty": "This is table entity number 10",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:11:00Z",
@@ -859,17 +870,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ab338294658c3e41b0d47f2f8e721fca-899497daad08aa45-00",
+ "traceparent": "00-a4386719a22ab0469c8c070c3efec798-fa509f3af571cd45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "170e408eb71442f185a27cdbc50ebf13",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -898,8 +910,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:27 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.8604241Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:27 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A28.0716774Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -908,19 +920,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "170e408eb71442f185a27cdbc50ebf13",
- "x-ms-request-id": "20754a7a-b002-001b-5e21-5aea7a000000",
+ "x-ms-request-id": "9b332c9d-4002-002c-1f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablevo9lwuvx/@Element",
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.8604241Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A28.0716774Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"PartitionKey": "somPartition",
"RowKey": "11",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:27.8604241Z",
+ "Timestamp": "2020-07-17T22:09:28.0716774Z",
"StringTypeProperty": "This is table entity number 11",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:12:00Z",
@@ -940,17 +952,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d651742824a7944a898af23d3608f4d0-363770b7ca3b414b-00",
+ "traceparent": "00-5d952c9440aefd49b985704b85aede3c-b119e1b609f10b45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "67c423c91c92ae52366b326a2a3fac1d",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -979,8 +992,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:27 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.9054619Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:27 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A28.1257219Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -989,19 +1002,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "67c423c91c92ae52366b326a2a3fac1d",
- "x-ms-request-id": "20754a81-b002-001b-6521-5aea7a000000",
+ "x-ms-request-id": "9b332ca9-4002-002c-2b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablevo9lwuvx/@Element",
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.9054619Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A28.1257219Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"PartitionKey": "somPartition",
"RowKey": "12",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:27.9054619Z",
+ "Timestamp": "2020-07-17T22:09:28.1257219Z",
"StringTypeProperty": "This is table entity number 12",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:13:00Z",
@@ -1021,17 +1034,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-523dd49f8f4b2948850f786f32f93a22-0d305b20f7ae2c49-00",
+ "traceparent": "00-ba61a86213767f40b4ba96698759f9e6-e2471aad8da76c4f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "51ecced3855a2aef63e25b3cae0a5b75",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1060,8 +1074,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:27 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.9484985Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:27 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A28.1717606Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1070,19 +1084,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "51ecced3855a2aef63e25b3cae0a5b75",
- "x-ms-request-id": "20754a85-b002-001b-6921-5aea7a000000",
+ "x-ms-request-id": "9b332cba-4002-002c-3986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablevo9lwuvx/@Element",
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.9484985Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A28.1717606Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"PartitionKey": "somPartition",
"RowKey": "13",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:27.9484985Z",
+ "Timestamp": "2020-07-17T22:09:28.1717606Z",
"StringTypeProperty": "This is table entity number 13",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:14:00Z",
@@ -1102,17 +1116,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f7005e0a696ead43956f9bfaa1ffb3ee-e452e76f5105eb4f-00",
+ "traceparent": "00-4403d49b0778414f90dc3e762bded28d-ed89dfdecc40f54d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5779b03e62587205ed5fe0a985871745",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1141,8 +1156,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:27 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.9915338Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:27 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A28.2157968Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1151,19 +1166,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "5779b03e62587205ed5fe0a985871745",
- "x-ms-request-id": "20754a8b-b002-001b-6f21-5aea7a000000",
+ "x-ms-request-id": "9b332cc9-4002-002c-4686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablevo9lwuvx/@Element",
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.9915338Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A28.2157968Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"PartitionKey": "somPartition",
"RowKey": "14",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:27.9915338Z",
+ "Timestamp": "2020-07-17T22:09:28.2157968Z",
"StringTypeProperty": "This is table entity number 14",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:15:00Z",
@@ -1183,17 +1198,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e4dbada1024b7a48b55550ef66dad82d-f41531e01cbe7e48-00",
+ "traceparent": "00-3ed5e278b7ddff4d8325dd0906f0268b-8f5ef62597d86545-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f7075ff66e2244b8349903afc116002c",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1222,8 +1238,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:27 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A28.0345691Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:27 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A28.258833Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1232,19 +1248,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f7075ff66e2244b8349903afc116002c",
- "x-ms-request-id": "20754a8d-b002-001b-7121-5aea7a000000",
+ "x-ms-request-id": "9b332cd9-4002-002c-5686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablevo9lwuvx/@Element",
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A28.0345691Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A28.258833Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"PartitionKey": "somPartition",
"RowKey": "15",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:28.0345691Z",
+ "Timestamp": "2020-07-17T22:09:28.258833Z",
"StringTypeProperty": "This is table entity number 15",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:16:00Z",
@@ -1264,17 +1280,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6a769af6f7f5174b90d861971ec5db74-2c992c1ea73d9b4f-00",
+ "traceparent": "00-b915d63eb89d2147a6d2a8dad1d38e6a-c5b629f14fc2bd43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "792bbd0f55c571c4c97963faa445a5db",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1303,8 +1320,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:27 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A28.0786057Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:27 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A28.2978654Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1313,19 +1330,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "792bbd0f55c571c4c97963faa445a5db",
- "x-ms-request-id": "20754a92-b002-001b-7621-5aea7a000000",
+ "x-ms-request-id": "9b332ce4-4002-002c-6186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablevo9lwuvx/@Element",
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A28.0786057Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A28.2978654Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"PartitionKey": "somPartition",
"RowKey": "16",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:28.0786057Z",
+ "Timestamp": "2020-07-17T22:09:28.2978654Z",
"StringTypeProperty": "This is table entity number 16",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:17:00Z",
@@ -1345,17 +1362,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6573a5e07cee9d47bd3eda5cc4763d3b-0228a21af70d9c45-00",
+ "traceparent": "00-d196c512c6a3644b8eb8a943376d3eee-c1482f6f64de2248-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4e4615ca6403d052f83422be5e55b1d7",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1384,8 +1402,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:27 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A28.1256447Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:27 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A28.3419021Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1394,19 +1412,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "4e4615ca6403d052f83422be5e55b1d7",
- "x-ms-request-id": "20754aa3-b002-001b-0421-5aea7a000000",
+ "x-ms-request-id": "9b332cf6-4002-002c-7286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablevo9lwuvx/@Element",
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A28.1256447Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A28.3419021Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"PartitionKey": "somPartition",
"RowKey": "17",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:28.1256447Z",
+ "Timestamp": "2020-07-17T22:09:28.3419021Z",
"StringTypeProperty": "This is table entity number 17",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:18:00Z",
@@ -1426,17 +1444,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-0edbea7d2ef29b41bfcf3489a1acd6a6-95406da77e961648-00",
+ "traceparent": "00-c798473fcd35f04ab2aa8bae85c240ff-ee1ee9bf954ff843-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c89ab45f9e5ba17f9a952da80abda0ee",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1465,8 +1484,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:27 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A28.1696813Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:27 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A28.3869395Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1475,19 +1494,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "c89ab45f9e5ba17f9a952da80abda0ee",
- "x-ms-request-id": "20754aaa-b002-001b-0b21-5aea7a000000",
+ "x-ms-request-id": "9b332cfc-4002-002c-7886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablevo9lwuvx/@Element",
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A28.1696813Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A28.3869395Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"PartitionKey": "somPartition",
"RowKey": "18",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:28.1696813Z",
+ "Timestamp": "2020-07-17T22:09:28.3869395Z",
"StringTypeProperty": "This is table entity number 18",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:19:00Z",
@@ -1507,17 +1526,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-907510ceeec4ba4cb6c0fd5a9f2523b4-fb8ebf1e6530af47-00",
+ "traceparent": "00-f17caba94bd90d48bcb8840aac11d6fe-2fbf1f41d62c6e41-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "abe428f4b1cfaa286a5b819032061273",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1546,8 +1566,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:27 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A28.2137178Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:27 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A28.4329778Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1556,19 +1576,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "abe428f4b1cfaa286a5b819032061273",
- "x-ms-request-id": "20754ab0-b002-001b-1121-5aea7a000000",
+ "x-ms-request-id": "9b332d04-4002-002c-8086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablevo9lwuvx/@Element",
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A28.2137178Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A28.4329778Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"PartitionKey": "somPartition",
"RowKey": "19",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:28.2137178Z",
+ "Timestamp": "2020-07-17T22:09:28.4329778Z",
"StringTypeProperty": "This is table entity number 19",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:20:00Z",
@@ -1588,17 +1608,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "744",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c2f458bcb4ff2448b47167d0bba4efec-5307cb027efa0a40-00",
+ "traceparent": "00-13b1605b41acbb46b7e40e3d95987d6c-c4487a0eb1b6b540-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ef9b8cc8dcab2c7f95a5b46d36aac53a",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1627,8 +1648,8 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:27 GMT",
- "ETag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A28.2577548Z\u0027\u0022",
+ "Date": "Fri, 17 Jul 2020 22:09:27 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A28.4820186Z\u0027\u0022",
"Location": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -1637,19 +1658,19 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ef9b8cc8dcab2c7f95a5b46d36aac53a",
- "x-ms-request-id": "20754ab8-b002-001b-1821-5aea7a000000",
+ "x-ms-request-id": "9b332d0e-4002-002c-0886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#testtablevo9lwuvx/@Element",
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A28.2577548Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A28.4820186Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"PartitionKey": "somPartition",
"RowKey": "20",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:28.2577548Z",
+ "Timestamp": "2020-07-17T22:09:28.4820186Z",
"StringTypeProperty": "This is table entity number 20",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:21:00Z",
@@ -1669,14 +1690,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=10\u0026$filter=PartitionKey%20eq%20%27somPartition%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "36ca34940571ae078cef5d001cef6e94",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1685,7 +1707,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:28 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:27 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1695,7 +1717,7 @@
"x-ms-client-request-id": "36ca34940571ae078cef5d001cef6e94",
"x-ms-continuation-NextPartitionKey": "1!16!c29tUGFydGl0aW9u",
"x-ms-continuation-NextRowKey": "1!4!MTE-",
- "x-ms-request-id": "20754ac2-b002-001b-2121-5aea7a000000",
+ "x-ms-request-id": "9b332d19-4002-002c-1386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1704,12 +1726,12 @@
{
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.400042Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A27.6283088Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002701\u0027)",
"PartitionKey": "somPartition",
"RowKey": "01",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:27.400042Z",
+ "Timestamp": "2020-07-17T22:09:27.6283088Z",
"StringTypeProperty": "This is table entity number 01",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:02:00Z",
@@ -1727,12 +1749,12 @@
{
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.4440789Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A27.6713445Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002702\u0027)",
"PartitionKey": "somPartition",
"RowKey": "02",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:27.4440789Z",
+ "Timestamp": "2020-07-17T22:09:27.6713445Z",
"StringTypeProperty": "This is table entity number 02",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:03:00Z",
@@ -1750,12 +1772,12 @@
{
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.4891163Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A27.7223878Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002703\u0027)",
"PartitionKey": "somPartition",
"RowKey": "03",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:27.4891163Z",
+ "Timestamp": "2020-07-17T22:09:27.7223878Z",
"StringTypeProperty": "This is table entity number 03",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:04:00Z",
@@ -1773,12 +1795,12 @@
{
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.5371566Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A27.7634211Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002704\u0027)",
"PartitionKey": "somPartition",
"RowKey": "04",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:27.5371566Z",
+ "Timestamp": "2020-07-17T22:09:27.7634211Z",
"StringTypeProperty": "This is table entity number 04",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:05:00Z",
@@ -1796,12 +1818,12 @@
{
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.5871973Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A27.808459Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002705\u0027)",
"PartitionKey": "somPartition",
"RowKey": "05",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:27.5871973Z",
+ "Timestamp": "2020-07-17T22:09:27.808459Z",
"StringTypeProperty": "This is table entity number 05",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:06:00Z",
@@ -1819,12 +1841,12 @@
{
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.630233Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A27.8554989Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002706\u0027)",
"PartitionKey": "somPartition",
"RowKey": "06",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:27.630233Z",
+ "Timestamp": "2020-07-17T22:09:27.8554989Z",
"StringTypeProperty": "This is table entity number 06",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:07:00Z",
@@ -1842,12 +1864,12 @@
{
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.67427Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A27.8965318Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002707\u0027)",
"PartitionKey": "somPartition",
"RowKey": "07",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:27.67427Z",
+ "Timestamp": "2020-07-17T22:09:27.8965318Z",
"StringTypeProperty": "This is table entity number 07",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:08:00Z",
@@ -1865,12 +1887,12 @@
{
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.7193083Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A27.9405692Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002708\u0027)",
"PartitionKey": "somPartition",
"RowKey": "08",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:27.7193083Z",
+ "Timestamp": "2020-07-17T22:09:27.9405692Z",
"StringTypeProperty": "This is table entity number 08",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:09:00Z",
@@ -1888,12 +1910,12 @@
{
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.7703494Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A27.9866071Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002709\u0027)",
"PartitionKey": "somPartition",
"RowKey": "09",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:27.7703494Z",
+ "Timestamp": "2020-07-17T22:09:27.9866071Z",
"StringTypeProperty": "This is table entity number 09",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:10:00Z",
@@ -1911,12 +1933,12 @@
{
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.8153872Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A28.0276412Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002710\u0027)",
"PartitionKey": "somPartition",
"RowKey": "10",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:27.8153872Z",
+ "Timestamp": "2020-07-17T22:09:28.0276412Z",
"StringTypeProperty": "This is table entity number 10",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:11:00Z",
@@ -1938,14 +1960,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx()?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=10\u0026$filter=PartitionKey%20eq%20%27somPartition%27\u0026NextPartitionKey=1%2116%21c29tUGFydGl0aW9u\u0026NextRowKey=1%214%21MTE-",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7ddfba83b0221743a8b8162afcbb74bf",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1954,7 +1977,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:28 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:27 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -1962,7 +1985,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "7ddfba83b0221743a8b8162afcbb74bf",
- "x-ms-request-id": "20754acb-b002-001b-2a21-5aea7a000000",
+ "x-ms-request-id": "9b332d28-4002-002c-2286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -1971,12 +1994,12 @@
{
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.8604241Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A28.0716774Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002711\u0027)",
"PartitionKey": "somPartition",
"RowKey": "11",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:27.8604241Z",
+ "Timestamp": "2020-07-17T22:09:28.0716774Z",
"StringTypeProperty": "This is table entity number 11",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:12:00Z",
@@ -1994,12 +2017,12 @@
{
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.9054619Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A28.1257219Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002712\u0027)",
"PartitionKey": "somPartition",
"RowKey": "12",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:27.9054619Z",
+ "Timestamp": "2020-07-17T22:09:28.1257219Z",
"StringTypeProperty": "This is table entity number 12",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:13:00Z",
@@ -2017,12 +2040,12 @@
{
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.9484985Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A28.1717606Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002713\u0027)",
"PartitionKey": "somPartition",
"RowKey": "13",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:27.9484985Z",
+ "Timestamp": "2020-07-17T22:09:28.1717606Z",
"StringTypeProperty": "This is table entity number 13",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:14:00Z",
@@ -2040,12 +2063,12 @@
{
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A27.9915338Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A28.2157968Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002714\u0027)",
"PartitionKey": "somPartition",
"RowKey": "14",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:27.9915338Z",
+ "Timestamp": "2020-07-17T22:09:28.2157968Z",
"StringTypeProperty": "This is table entity number 14",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:15:00Z",
@@ -2063,12 +2086,12 @@
{
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A28.0345691Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A28.258833Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002715\u0027)",
"PartitionKey": "somPartition",
"RowKey": "15",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:28.0345691Z",
+ "Timestamp": "2020-07-17T22:09:28.258833Z",
"StringTypeProperty": "This is table entity number 15",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:16:00Z",
@@ -2086,12 +2109,12 @@
{
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A28.0786057Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A28.2978654Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002716\u0027)",
"PartitionKey": "somPartition",
"RowKey": "16",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:28.0786057Z",
+ "Timestamp": "2020-07-17T22:09:28.2978654Z",
"StringTypeProperty": "This is table entity number 16",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:17:00Z",
@@ -2109,12 +2132,12 @@
{
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A28.1256447Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A28.3419021Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002717\u0027)",
"PartitionKey": "somPartition",
"RowKey": "17",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:28.1256447Z",
+ "Timestamp": "2020-07-17T22:09:28.3419021Z",
"StringTypeProperty": "This is table entity number 17",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:18:00Z",
@@ -2132,12 +2155,12 @@
{
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A28.1696813Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A28.3869395Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002718\u0027)",
"PartitionKey": "somPartition",
"RowKey": "18",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:28.1696813Z",
+ "Timestamp": "2020-07-17T22:09:28.3869395Z",
"StringTypeProperty": "This is table entity number 18",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:19:00Z",
@@ -2155,12 +2178,12 @@
{
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A28.2137178Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A28.4329778Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002719\u0027)",
"PartitionKey": "somPartition",
"RowKey": "19",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:28.2137178Z",
+ "Timestamp": "2020-07-17T22:09:28.4329778Z",
"StringTypeProperty": "This is table entity number 19",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:20:00Z",
@@ -2178,12 +2201,12 @@
{
"odata.type": "chrissscratch.testtablevo9lwuvx",
"odata.id": "https://chrissscratch.table.core.windows.net/testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
- "odata.etag": "W/\u0022datetime\u00272020-07-14T20%3A57%3A28.2577548Z\u0027\u0022",
+ "odata.etag": "W/\u0022datetime\u00272020-07-17T22%3A09%3A28.4820186Z\u0027\u0022",
"odata.editLink": "testtablevo9lwuvx(PartitionKey=\u0027somPartition\u0027,RowKey=\u002720\u0027)",
"PartitionKey": "somPartition",
"RowKey": "20",
"Timestamp@odata.type": "Edm.DateTime",
- "Timestamp": "2020-07-14T20:57:28.2577548Z",
+ "Timestamp": "2020-07-17T22:09:28.4820186Z",
"StringTypeProperty": "This is table entity number 20",
"DatetimeTypeProperty@odata.type": "Edm.DateTime",
"DatetimeTypeProperty": "2020-01-01T01:21:00Z",
@@ -2207,13 +2230,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-b45a269c2dfe0f41962308c74da0c6b8-a13785a926d4a140-00",
+ "traceparent": "00-af09e937ac3bd2438935e30cd2dca3e1-bbe90aea26e35e4d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "fdfc4696dc3cc20285ec63bb7f7f0fa6",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -2222,14 +2245,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:28 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:27 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "fdfc4696dc3cc20285ec63bb7f7f0fa6",
- "x-ms-request-id": "20754ada-b002-001b-3921-5aea7a000000",
+ "x-ms-request-id": "9b332d3a-4002-002c-3486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetPropertiesReturnsProperties.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetPropertiesReturnsProperties.json
index 478e507ada94..5ef5a57828ac 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetPropertiesReturnsProperties.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetPropertiesReturnsProperties.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-02e4c3527bd984408fdb0c80f5a11b20-f27267fd0a754847-00",
+ "traceparent": "00-627ac9a9c7f736468679414c832380ee-1a9faf3c30bdbc44-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d8420996f4f86cbd5f3b041cb98dac33",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:28 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:39:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,159 +24,49 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:28 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableihl7uqif\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:40:00 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A39%3A59.5722760Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableihl7uqif\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "d8420996f4f86cbd5f3b041cb98dac33",
- "x-ms-request-id": "20754ae5-b002-001b-4321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "d8420996-f4f8-6cbd-5f3b-041cb98dac33"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableihl7uqif\u0027)",
- "odata.editLink": "Tables(\u0027testtableihl7uqif\u0027)",
- "TableName": "testtableihl7uqif"
+ "TableName": "testtableihl7uqif",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/?restype=service\u0026comp=properties",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "traceparent": "00-f212228e5332f0459ab7dc9f18fa951d-5ecc281a1052444a-00",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "521b4f93d9628824ae6743f1f153e42b",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:28 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Content-Type": "application/xml",
- "Date": "Tue, 14 Jul 2020 20:57:28 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "x-ms-client-request-id": "521b4f93d9628824ae6743f1f153e42b",
- "x-ms-request-id": "20754af1-b002-001b-4d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CStorageServiceProperties\u003E\u003CLogging\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CRead\u003Efalse\u003C/Read\u003E\u003CWrite\u003Efalse\u003C/Write\u003E\u003CDelete\u003Efalse\u003C/Delete\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/Logging\u003E\u003CHourMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CIncludeAPIs\u003Etrue\u003C/IncludeAPIs\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CDays\u003E7\u003C/Days\u003E\u003C/RetentionPolicy\u003E\u003C/HourMetrics\u003E\u003CMinuteMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/MinuteMetrics\u003E\u003CCors /\u003E\u003C/StorageServiceProperties\u003E"
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/?restype=service\u0026comp=properties",
- "RequestMethod": "PUT",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "Content-Length": "534",
- "Content-Type": "application/xml",
- "traceparent": "00-124869ae12f0b541b4aa6ad651a4ba05-287c5ee9cd205a44-00",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "ad6617a4a5329a3d9f04b48628b9c31f",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:28 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": "\uFEFF\u003CStorageServiceProperties\u003E\u003CLogging\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CDelete\u003Efalse\u003C/Delete\u003E\u003CRead\u003Etrue\u003C/Read\u003E\u003CWrite\u003Efalse\u003C/Write\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/Logging\u003E\u003CHourMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CIncludeAPIs\u003Etrue\u003C/IncludeAPIs\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CDays\u003E7\u003C/Days\u003E\u003C/RetentionPolicy\u003E\u003C/HourMetrics\u003E\u003CMinuteMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/MinuteMetrics\u003E\u003CCors /\u003E\u003C/StorageServiceProperties\u003E",
- "StatusCode": 202,
- "ResponseHeaders": {
- "Date": "Tue, 14 Jul 2020 20:57:28 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "x-ms-client-request-id": "ad6617a4a5329a3d9f04b48628b9c31f",
- "x-ms-request-id": "20754af6-b002-001b-5221-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": []
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/?restype=service\u0026comp=properties",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "traceparent": "00-470b6ba7cbdb5b4685f1f858ae6fe1f1-1183c66f71ff4e4c-00",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "21fcc42db8c5bc88e4ba2990b0cb7a0b",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:49 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Content-Type": "application/xml",
- "Date": "Tue, 14 Jul 2020 20:57:48 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "x-ms-client-request-id": "21fcc42db8c5bc88e4ba2990b0cb7a0b",
- "x-ms-request-id": "20755b5f-b002-001b-2b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CStorageServiceProperties\u003E\u003CLogging\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CRead\u003Etrue\u003C/Read\u003E\u003CWrite\u003Efalse\u003C/Write\u003E\u003CDelete\u003Efalse\u003C/Delete\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/Logging\u003E\u003CHourMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CIncludeAPIs\u003Etrue\u003C/IncludeAPIs\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CDays\u003E7\u003C/Days\u003E\u003C/RetentionPolicy\u003E\u003C/HourMetrics\u003E\u003CMinuteMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/MinuteMetrics\u003E\u003CCors /\u003E\u003C/StorageServiceProperties\u003E"
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableihl7uqif\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableihl7uqif\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-03309457c09b3f4ea98f0b198ca4101d-7dd4bca900638048-00",
+ "traceparent": "00-031da4b8ea6bfa459381ee837a05bbb8-7d4a522cec1e7e42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "a178d956ff27ed011180b35e259d5ff5",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:49 GMT",
+ "x-ms-client-request-id": "521b4f93d9628824ae6743f1f153e42b",
+ "x-ms-date": "Fri, 17 Jul 2020 19:40:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:48 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a178d956ff27ed011180b35e259d5ff5",
- "x-ms-request-id": "20755b64-b002-001b-2f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:40:00 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "521b4f93-d962-8824-ae67-43f1f153e42b"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1133922776",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetPropertiesReturnsPropertiesAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetPropertiesReturnsPropertiesAsync.json
index 8965b47788a9..4475885f6b62 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetPropertiesReturnsPropertiesAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetPropertiesReturnsPropertiesAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-62dc35843dbf4142beffbd84a5c60bdb-83b7ec744106494d-00",
+ "traceparent": "00-e5b428bac052ff4882814e9ac1e7240b-7b2d81680bc0e64f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "16ad5dd05fc1e7bf6106757b051ecfaf",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:18 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:41:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,159 +24,49 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:17 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabler5ts7xnd\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:41:02 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A41%3A02.2825480Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtabler5ts7xnd\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "16ad5dd05fc1e7bf6106757b051ecfaf",
- "x-ms-request-id": "2075709d-b002-001b-6121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "16ad5dd0-5fc1-e7bf-6106-757b051ecfaf"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabler5ts7xnd\u0027)",
- "odata.editLink": "Tables(\u0027testtabler5ts7xnd\u0027)",
- "TableName": "testtabler5ts7xnd"
+ "TableName": "testtabler5ts7xnd",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/?restype=service\u0026comp=properties",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "traceparent": "00-078c25ff7f15f8459b29fa34bfd7dfd3-6adb151d2916624c-00",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "d5b4e5ae21ae808e9d784202d4e3506f",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:18 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Content-Type": "application/xml",
- "Date": "Tue, 14 Jul 2020 20:58:17 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "x-ms-client-request-id": "d5b4e5ae21ae808e9d784202d4e3506f",
- "x-ms-request-id": "207570ad-b002-001b-7021-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CStorageServiceProperties\u003E\u003CLogging\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CRead\u003Efalse\u003C/Read\u003E\u003CWrite\u003Efalse\u003C/Write\u003E\u003CDelete\u003Efalse\u003C/Delete\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/Logging\u003E\u003CHourMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CIncludeAPIs\u003Etrue\u003C/IncludeAPIs\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CDays\u003E7\u003C/Days\u003E\u003C/RetentionPolicy\u003E\u003C/HourMetrics\u003E\u003CMinuteMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/MinuteMetrics\u003E\u003CCors /\u003E\u003C/StorageServiceProperties\u003E"
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/?restype=service\u0026comp=properties",
- "RequestMethod": "PUT",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "Content-Length": "534",
- "Content-Type": "application/xml",
- "traceparent": "00-4ba1daa29ac0ae4a89f7c94250b56d3e-3ff173057a9c7b48-00",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "95d0bfa1d62aabb4d134ec381357a9e9",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:18 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": "\uFEFF\u003CStorageServiceProperties\u003E\u003CLogging\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CDelete\u003Efalse\u003C/Delete\u003E\u003CRead\u003Etrue\u003C/Read\u003E\u003CWrite\u003Efalse\u003C/Write\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/Logging\u003E\u003CHourMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CIncludeAPIs\u003Etrue\u003C/IncludeAPIs\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CDays\u003E7\u003C/Days\u003E\u003C/RetentionPolicy\u003E\u003C/HourMetrics\u003E\u003CMinuteMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/MinuteMetrics\u003E\u003CCors /\u003E\u003C/StorageServiceProperties\u003E",
- "StatusCode": 202,
- "ResponseHeaders": {
- "Date": "Tue, 14 Jul 2020 20:58:17 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "x-ms-client-request-id": "95d0bfa1d62aabb4d134ec381357a9e9",
- "x-ms-request-id": "207570b5-b002-001b-7821-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": []
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/?restype=service\u0026comp=properties",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "traceparent": "00-4b3908f6f706ad4494c29c68bd95ee1c-55b0ed5f1c8d8f43-00",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "079db49520d9af0ecf2c79481cbd127e",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:38 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Content-Type": "application/xml",
- "Date": "Tue, 14 Jul 2020 20:58:37 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "x-ms-client-request-id": "079db49520d9af0ecf2c79481cbd127e",
- "x-ms-request-id": "20757f42-b002-001b-2921-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CStorageServiceProperties\u003E\u003CLogging\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CRead\u003Etrue\u003C/Read\u003E\u003CWrite\u003Efalse\u003C/Write\u003E\u003CDelete\u003Efalse\u003C/Delete\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/Logging\u003E\u003CHourMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CIncludeAPIs\u003Etrue\u003C/IncludeAPIs\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CDays\u003E7\u003C/Days\u003E\u003C/RetentionPolicy\u003E\u003C/HourMetrics\u003E\u003CMinuteMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/MinuteMetrics\u003E\u003CCors /\u003E\u003C/StorageServiceProperties\u003E"
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabler5ts7xnd\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtabler5ts7xnd\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-ce9903d07d82d24dbde4fd467db11d0a-ab15d2ce9f4a3a43-00",
+ "traceparent": "00-d79b7f0079f06d4c9d63be2d99697a6f-4ab392eb87ecd84f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "46da06b6394ed7843109037a34566d46",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:38 GMT",
+ "x-ms-client-request-id": "d5b4e5ae21ae808e9d784202d4e3506f",
+ "x-ms-date": "Fri, 17 Jul 2020 19:41:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:37 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "46da06b6394ed7843109037a34566d46",
- "x-ms-request-id": "20757f4f-b002-001b-3321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:41:02 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "d5b4e5ae-21ae-808e-9d78-4202d4e3506f"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1887374348",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetTableServiceStatsReturnsStats.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetTableServiceStatsReturnsStats.json
index ebf6586394d1..428ef1af5200 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetTableServiceStatsReturnsStats.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetTableServiceStatsReturnsStats.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-62db48a365dea445a057c7d7f73eb0dc-7b1e31e9f59dac4b-00",
+ "traceparent": "00-65893136a22e794f93f0ec08922a2d36-e54d9647b2c0eb40-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d82ac4bc1154ecee3a587b5d37c8d0e6",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:49 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:41:27 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,96 +24,49 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:48 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableuv8b024s\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:41:28 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A41%3A27.9799304Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableuv8b024s\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "d82ac4bc1154ecee3a587b5d37c8d0e6",
- "x-ms-request-id": "20755b71-b002-001b-3c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "d82ac4bc-1154-ecee-3a58-7b5d37c8d0e6"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableuv8b024s\u0027)",
- "odata.editLink": "Tables(\u0027testtableuv8b024s\u0027)",
- "TableName": "testtableuv8b024s"
+ "TableName": "testtableuv8b024s",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch-secondary.table.core.windows.net/?restype=service\u0026comp=stats",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "traceparent": "00-ffd4ac9ea5f20a4fb72ae9e7786b2155-68adfd4a969b8d41-00",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "d593b8f01984182e644c26b302e1db9e",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:49 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Content-Type": "application/xml",
- "Date": "Tue, 14 Jul 2020 20:57:48 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "x-ms-client-request-id": "d593b8f01984182e644c26b302e1db9e",
- "x-ms-request-id": "248deef8-f002-0011-6c21-5a8676000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CStorageServiceStats\u003E\u003CGeoReplication\u003E\u003CStatus\u003Elive\u003C/Status\u003E\u003CLastSyncTime\u003ETue, 14 Jul 2020 20:55:36 GMT\u003C/LastSyncTime\u003E\u003C/GeoReplication\u003E\u003C/StorageServiceStats\u003E"
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableuv8b024s\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableuv8b024s\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-f93ca4a22c27fe42a63b8b8ed7746e65-82d9cc769d90c740-00",
+ "traceparent": "00-c9e5b07b51ea5e49a496d147e106e430-6cb9a35fc3124b4d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "86ea31fb81c7f91f56ed7e164a433d3d",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:49 GMT",
+ "x-ms-client-request-id": "d593b8f01984182e644c26b302e1db9e",
+ "x-ms-date": "Fri, 17 Jul 2020 20:41:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:49 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "86ea31fb81c7f91f56ed7e164a433d3d",
- "x-ms-request-id": "20755bbc-b002-001b-0521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:41:28 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "d593b8f0-1984-182e-644c-26b302e1db9e"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1539936322",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetTableServiceStatsReturnsStatsAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetTableServiceStatsReturnsStatsAsync.json
index b574ccc04bd3..9ba9afc07caf 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetTableServiceStatsReturnsStatsAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetTableServiceStatsReturnsStatsAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-5ec498b29c945d4fa7a0dbda7accf0c1-342496f6c0c6f143-00",
+ "traceparent": "00-c67d409abfa6e84da100c7943bd0004f-2d35980baa2a404d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a7761ee0bf6cdb1b3f55e96214168b38",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:38 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:58:57 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,96 +24,49 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:37 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablemobfdoif\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:58:57 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A58%3A58.2266888Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablemobfdoif\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a7761ee0bf6cdb1b3f55e96214168b38",
- "x-ms-request-id": "20757f5d-b002-001b-4121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "a7761ee0-bf6c-db1b-3f55-e96214168b38"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablemobfdoif\u0027)",
- "odata.editLink": "Tables(\u0027testtablemobfdoif\u0027)",
- "TableName": "testtablemobfdoif"
+ "TableName": "testtablemobfdoif",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch-secondary.table.core.windows.net/?restype=service\u0026comp=stats",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "traceparent": "00-1a34f249a34aec4c83128e90df31f168-7299f4720600ff47-00",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "7b0e590c0e242bab0942880e115e115a",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:38 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Content-Type": "application/xml",
- "Date": "Tue, 14 Jul 2020 20:58:38 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "x-ms-client-request-id": "7b0e590c0e242bab0942880e115e115a",
- "x-ms-request-id": "248def49-f002-0011-7a21-5a8676000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CStorageServiceStats\u003E\u003CGeoReplication\u003E\u003CStatus\u003Elive\u003C/Status\u003E\u003CLastSyncTime\u003ETue, 14 Jul 2020 20:55:36 GMT\u003C/LastSyncTime\u003E\u003C/GeoReplication\u003E\u003C/StorageServiceStats\u003E"
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablemobfdoif\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablemobfdoif\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-c02cfd7be77ea14eb81c48f8f02eb8d6-554c0d4d4cc5aa45-00",
+ "traceparent": "00-454be9042a5b00408c09ff509e423a80-720ba61c406ea643-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "3c808f95e04161a5422538c5197473ed",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:38 GMT",
+ "x-ms-client-request-id": "7b0e590c0e242bab0942880e115e115a",
+ "x-ms-date": "Fri, 17 Jul 2020 20:58:58 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:37 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "3c808f95e04161a5422538c5197473ed",
- "x-ms-request-id": "20757f67-b002-001b-4821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:58:58 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "7b0e590c-0e24-2bab-0942-880e115e115a"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "843891794",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetTablesReturnsTablesWithAndWithoutPagination(5).json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetTablesReturnsTablesWithAndWithoutPagination(5).json
index 6c2d9615c0f3..c33e13424d32 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetTablesReturnsTablesWithAndWithoutPagination(5).json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetTablesReturnsTablesWithAndWithoutPagination(5).json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c40a2944cb860247b46141daef08efcf-de2e680522718f48-00",
+ "traceparent": "00-bea469cf68edb34fb9c262d107d54bd7-e6d5dfe4d289e147-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "fd318705ab4e2104ed2449d339a9001c",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:42 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:51 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablebqk89cxv\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:43 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A43.7974024Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablebqk89cxv\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "fd318705ab4e2104ed2449d339a9001c",
- "x-ms-request-id": "20755e38-b002-001b-3221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "fd318705-ab4e-2104-ed24-49d339a9001c"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablebqk89cxv\u0027)",
- "odata.editLink": "Tables(\u0027testtablebqk89cxv\u0027)",
- "TableName": "testtablebqk89cxv"
+ "TableName": "testtablebqk89cxv",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-4b0ed08fe3594b46af6d253718aa3053-3d47bbf2a8b29443-00",
+ "traceparent": "00-f15e803770dfea42b8e339acd07cb853-9051f3c78c523f47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1625aa7a66c3afac8a08f396d17d8a50",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:44 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -68,43 +61,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:51 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablea8j7emxx\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:44 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A44.6029832Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablea8j7emxx\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "1625aa7a66c3afac8a08f396d17d8a50",
- "x-ms-request-id": "20755e43-b002-001b-3c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "1625aa7a-66c3-afac-8a08-f396d17d8a50"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablea8j7emxx\u0027)",
- "odata.editLink": "Tables(\u0027testtablea8j7emxx\u0027)",
- "TableName": "testtablea8j7emxx"
+ "TableName": "testtablea8j7emxx",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-16cabf2d40ce0c47b070a629fa2c595f-396e305ab58eb247-00",
+ "traceparent": "00-796accfc5331b44cb29c47db8e9842dc-03e2edd7cccba045-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "49f616620c54fefc79e183a485ed5d86",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:45 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -113,43 +98,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:52 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabley0cx4n50\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:45 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A45.2786184Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtabley0cx4n50\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "49f616620c54fefc79e183a485ed5d86",
- "x-ms-request-id": "20755e4a-b002-001b-4221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "49f61662-0c54-fefc-79e1-83a485ed5d86"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabley0cx4n50\u0027)",
- "odata.editLink": "Tables(\u0027testtabley0cx4n50\u0027)",
- "TableName": "testtabley0cx4n50"
+ "TableName": "testtabley0cx4n50",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1c035b7d16dfe949aee2539fcd3e9b48-951b32de880b0c49-00",
+ "traceparent": "00-12fd52ead5b8ef4b963a98ea05390ffa-a594b09faed0a444-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b5e238ea698f53939a08b4ac6f635a7d",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:45 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -158,43 +135,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:52 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableti7of0q5\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:45 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A45.9389960Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableti7of0q5\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "b5e238ea698f53939a08b4ac6f635a7d",
- "x-ms-request-id": "20755e53-b002-001b-4a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "b5e238ea-698f-5393-9a08-b4ac6f635a7d"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableti7of0q5\u0027)",
- "odata.editLink": "Tables(\u0027testtableti7of0q5\u0027)",
- "TableName": "testtableti7of0q5"
+ "TableName": "testtableti7of0q5",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c9dfc5b2b20d57479cd4d569e275f3ce-822ba43edf9f7842-00",
+ "traceparent": "00-73edc2b47e97a64d94f0404f32a4a949-9cdfb382a6e19344-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "222df180dedef766ccd25e1b2a476e10",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -203,43 +172,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:52 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabledfp39jqz\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:47 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A46.6043912Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtabledfp39jqz\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "222df180dedef766ccd25e1b2a476e10",
- "x-ms-request-id": "20755e5d-b002-001b-5221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "222df180-dede-f766-ccd2-5e1b2a476e10"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabledfp39jqz\u0027)",
- "odata.editLink": "Tables(\u0027testtabledfp39jqz\u0027)",
- "TableName": "testtabledfp39jqz"
+ "TableName": "testtabledfp39jqz",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ad73e41161eb2742b93e47ec013b6c77-caec204ae5964446-00",
+ "traceparent": "00-285d1a09e3f02146810f1256b9411a08-bc87b66cb7e3b347-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c125cb3f594e042a6ef7349e3b7174bc",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:47 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -248,43 +209,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:52 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablej1y7zvmx\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:47 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A47.2237064Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablej1y7zvmx\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c125cb3f594e042a6ef7349e3b7174bc",
- "x-ms-request-id": "20755e6a-b002-001b-5d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "c125cb3f-594e-042a-6ef7-349e3b7174bc"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablej1y7zvmx\u0027)",
- "odata.editLink": "Tables(\u0027testtablej1y7zvmx\u0027)",
- "TableName": "testtablej1y7zvmx"
+ "TableName": "testtablej1y7zvmx",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-893c2834400a0f45b83027c7485589ea-dcb1207838472d49-00",
+ "traceparent": "00-db3f59615401fe439fc5c5a599994314-f33c48226e633148-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "caa30b864ddccfb0d919e213b9a5a972",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:47 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -293,43 +246,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:52 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableol5ogyhb\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:48 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A47.9126536Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableol5ogyhb\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "caa30b864ddccfb0d919e213b9a5a972",
- "x-ms-request-id": "20755e75-b002-001b-6621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "caa30b86-4ddc-cfb0-d919-e213b9a5a972"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableol5ogyhb\u0027)",
- "odata.editLink": "Tables(\u0027testtableol5ogyhb\u0027)",
- "TableName": "testtableol5ogyhb"
+ "TableName": "testtableol5ogyhb",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-af9f219530c20e478fbaa8ae7ca692b1-ac346c050aef3e44-00",
+ "traceparent": "00-7e4fb4fbf841de48a82fc0e0b4ae89f1-f0cc6ff9b764d445-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7dda4dba79d1000e78603a42b6602720",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -338,43 +283,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:52 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablefyp7r0zd\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:48 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A48.5530632Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablefyp7r0zd\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "7dda4dba79d1000e78603a42b6602720",
- "x-ms-request-id": "20755e81-b002-001b-7121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "7dda4dba-79d1-000e-7860-3a42b6602720"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablefyp7r0zd\u0027)",
- "odata.editLink": "Tables(\u0027testtablefyp7r0zd\u0027)",
- "TableName": "testtablefyp7r0zd"
+ "TableName": "testtablefyp7r0zd",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-81e316adea83e847b542232d367cf5f5-8ddba040655b9a45-00",
+ "traceparent": "00-c8453231081cef488f63a11e53f774c2-d423047556a21a4c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "aaf66d122091b5b237c70f8f7233fd5f",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -383,43 +320,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:52 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableundqi0c4\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:49 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A49.1896840Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableundqi0c4\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "aaf66d122091b5b237c70f8f7233fd5f",
- "x-ms-request-id": "20755e9c-b002-001b-0721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "aaf66d12-2091-b5b2-37c7-0f8f7233fd5f"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableundqi0c4\u0027)",
- "odata.editLink": "Tables(\u0027testtableundqi0c4\u0027)",
- "TableName": "testtableundqi0c4"
+ "TableName": "testtableundqi0c4",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-0bfdcbd0574fe64688a30dcf7a761541-a1366299320b0046-00",
+ "traceparent": "00-da5e55c76e59da4587f30237ad851042-0a0900537e26b942-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "adec8c33b20c594d4add6a6483636f57",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:53 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -428,43 +357,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:52 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable99f58f0r\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:49 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A49.8484232Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable99f58f0r\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "adec8c33b20c594d4add6a6483636f57",
- "x-ms-request-id": "20755ea2-b002-001b-0c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "adec8c33-b20c-594d-4add-6a6483636f57"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable99f58f0r\u0027)",
- "odata.editLink": "Tables(\u0027testtable99f58f0r\u0027)",
- "TableName": "testtable99f58f0r"
+ "TableName": "testtable99f58f0r",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-01ee865d677c1541a6798fa37ed7ed72-089f0ac1e2559e4e-00",
+ "traceparent": "00-dfb0b2ee1859964fa758710bb021a883-34739e28be193540-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ac176467aac6ab91b0af77043305a984",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:53 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -473,778 +394,434 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:52 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable06nwkm99\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:51 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A40%3A50.4973320Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable06nwkm99\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ac176467aac6ab91b0af77043305a984",
- "x-ms-request-id": "20755eac-b002-001b-1421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "ac176467-aac6-ab91-b0af-77043305a984"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable06nwkm99\u0027)",
- "odata.editLink": "Tables(\u0027testtable06nwkm99\u0027)",
- "TableName": "testtable06nwkm99"
+ "TableName": "testtable06nwkm99",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9544b67998c8a7dc7243abe65bcef59a",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:53 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:52 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:51 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "9544b67998c8a7dc7243abe65bcef59a",
- "x-ms-continuation-NextTableName": "1!48!dGVzdHRhYmxlOXN6eWhoa20BMDFkNjM1NDE3NzM3YmFlMw--",
- "x-ms-request-id": "20755ebb-b002-001b-2221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-continuation-NextTableName": "b1w3APHlIp4=",
+ "x-ms-request-id": "9544b679-98c8-a7dc-7243-abe65bcef59a"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables",
"value": [
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable06nwkm99\u0027)",
- "odata.editLink": "Tables(\u0027testtable06nwkm99\u0027)",
"TableName": "testtable06nwkm99"
},
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable4ns9b5g3\u0027)",
- "odata.editLink": "Tables(\u0027testtable4ns9b5g3\u0027)",
- "TableName": "testtable4ns9b5g3"
+ "TableName": "testtabley0cx4n50"
},
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable5iefecvu\u0027)",
- "odata.editLink": "Tables(\u0027testtable5iefecvu\u0027)",
- "TableName": "testtable5iefecvu"
+ "TableName": "testtabledfp39jqz"
},
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable7psww12c\u0027)",
- "odata.editLink": "Tables(\u0027testtable7psww12c\u0027)",
- "TableName": "testtable7psww12c"
+ "TableName": "testtableol5ogyhb"
},
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable99f58f0r\u0027)",
- "odata.editLink": "Tables(\u0027testtable99f58f0r\u0027)",
- "TableName": "testtable99f58f0r"
+ "TableName": "testtableti7of0q5"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextTableName=1%2148%21dGVzdHRhYmxlOXN6eWhoa20BMDFkNjM1NDE3NzM3YmFlMw--",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextTableName=b1w3APHlIp4%3D",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a845d9dea19aa0924bbfb4d3ec6a23a8",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:53 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:52 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:51 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a845d9dea19aa0924bbfb4d3ec6a23a8",
- "x-ms-continuation-NextTableName": "1!48!dGVzdHRhYmxlY3AzeHRqNWIBMDFkNjVhMjE3MDIzMTAyYg--",
- "x-ms-request-id": "20755ec2-b002-001b-2921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-continuation-NextTableName": "b1w3AJn0ftk=",
+ "x-ms-request-id": "a845d9de-a19a-a092-4bbf-b4d3ec6a23a8"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables",
"value": [
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable9szyhhkm\u0027)",
- "odata.editLink": "Tables(\u0027testtable9szyhhkm\u0027)",
- "TableName": "testtable9szyhhkm"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable9txmuphm\u0027)",
- "odata.editLink": "Tables(\u0027testtable9txmuphm\u0027)",
- "TableName": "testtable9txmuphm"
+ "TableName": "testtable99f58f0r"
},
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablea8j7emxx\u0027)",
- "odata.editLink": "Tables(\u0027testtablea8j7emxx\u0027)",
"TableName": "testtablea8j7emxx"
},
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableb8qgukae\u0027)",
- "odata.editLink": "Tables(\u0027testtableb8qgukae\u0027)",
- "TableName": "testtableb8qgukae"
+ "TableName": "testtablej1y7zvmx"
},
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablebqk89cxv\u0027)",
- "odata.editLink": "Tables(\u0027testtablebqk89cxv\u0027)",
"TableName": "testtablebqk89cxv"
- }
- ]
- }
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextTableName=1%2148%21dGVzdHRhYmxlY3AzeHRqNWIBMDFkNjVhMjE3MDIzMTAyYg--",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "DataServiceVersion": "3.0",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "9a7586db1853cf4a87703983ffab4fe2",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:53 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:52 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "9a7586db1853cf4a87703983ffab4fe2",
- "x-ms-continuation-NextTableName": "1!48!dGVzdHRhYmxla284eWQzankBMDFkNjVhMjE1ZWY1NWQwYw--",
- "x-ms-request-id": "20755ec7-b002-001b-2d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables",
- "value": [
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabledfp39jqz\u0027)",
- "odata.editLink": "Tables(\u0027testtabledfp39jqz\u0027)",
- "TableName": "testtabledfp39jqz"
},
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabledxymqs21\u0027)",
- "odata.editLink": "Tables(\u0027testtabledxymqs21\u0027)",
- "TableName": "testtabledxymqs21"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablefvgwmg7c\u0027)",
- "odata.editLink": "Tables(\u0027testtablefvgwmg7c\u0027)",
- "TableName": "testtablefvgwmg7c"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablefyp7r0zd\u0027)",
- "odata.editLink": "Tables(\u0027testtablefyp7r0zd\u0027)",
"TableName": "testtablefyp7r0zd"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablej1y7zvmx\u0027)",
- "odata.editLink": "Tables(\u0027testtablej1y7zvmx\u0027)",
- "TableName": "testtablej1y7zvmx"
- }
- ]
- }
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextTableName=1%2148%21dGVzdHRhYmxla284eWQzankBMDFkNjVhMjE1ZWY1NWQwYw--",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "DataServiceVersion": "3.0",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "5a26dcba00c0d7ea23a44909e408ba07",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:53 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:52 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "5a26dcba00c0d7ea23a44909e408ba07",
- "x-ms-continuation-NextTableName": "1!48!dGVzdHRhYmxldWd5dnp4cnQBMDFkNjVhMjE2Zjk3MmQ2Mw--",
- "x-ms-request-id": "20755ecf-b002-001b-3521-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables",
- "value": [
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablekumj2pc7\u0027)",
- "odata.editLink": "Tables(\u0027testtablekumj2pc7\u0027)",
- "TableName": "testtablekumj2pc7"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablem4bhqtqv\u0027)",
- "odata.editLink": "Tables(\u0027testtablem4bhqtqv\u0027)",
- "TableName": "testtablem4bhqtqv"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableol5ogyhb\u0027)",
- "odata.editLink": "Tables(\u0027testtableol5ogyhb\u0027)",
- "TableName": "testtableol5ogyhb"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablepdprm1am\u0027)",
- "odata.editLink": "Tables(\u0027testtablepdprm1am\u0027)",
- "TableName": "testtablepdprm1am"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableti7of0q5\u0027)",
- "odata.editLink": "Tables(\u0027testtableti7of0q5\u0027)",
- "TableName": "testtableti7of0q5"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextTableName=1%2148%21dGVzdHRhYmxldWd5dnp4cnQBMDFkNjVhMjE2Zjk3MmQ2Mw--",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextTableName=b1w3AJn0ftk%3D",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "d50a021f5a59c5478f76202a670fa19f",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:53 GMT",
+ "x-ms-client-request-id": "9a7586db1853cf4a87703983ffab4fe2",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:52 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:40:51 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "d50a021f5a59c5478f76202a670fa19f",
- "x-ms-continuation-NextTableName": "1!48!dGVzdHRhYmxlejRtNG5tdzQBMDFkNjVhMjE2ZWUyZjk5MQ--",
- "x-ms-request-id": "20755ed3-b002-001b-3921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "9a7586db-1853-cf4a-8770-3983ffab4fe2"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables",
"value": [
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableundqi0c4\u0027)",
- "odata.editLink": "Tables(\u0027testtableundqi0c4\u0027)",
"TableName": "testtableundqi0c4"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablev9pwhgv8\u0027)",
- "odata.editLink": "Tables(\u0027testtablev9pwhgv8\u0027)",
- "TableName": "testtablev9pwhgv8"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablexvcatiga\u0027)",
- "odata.editLink": "Tables(\u0027testtablexvcatiga\u0027)",
- "TableName": "testtablexvcatiga"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabley0cx4n50\u0027)",
- "odata.editLink": "Tables(\u0027testtabley0cx4n50\u0027)",
- "TableName": "testtabley0cx4n50"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablez4asskk8\u0027)",
- "odata.editLink": "Tables(\u0027testtablez4asskk8\u0027)",
- "TableName": "testtablez4asskk8"
- }
- ]
- }
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextTableName=1%2148%21dGVzdHRhYmxlejRtNG5tdzQBMDFkNjVhMjE2ZWUyZjk5MQ--",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "DataServiceVersion": "3.0",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "1019d26fc944dbe89c9d77afcf40ea7f",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:53 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:52 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "1019d26fc944dbe89c9d77afcf40ea7f",
- "x-ms-request-id": "20755ed9-b002-001b-3f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables",
- "value": [
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablezjkkt2i8\u0027)",
- "odata.editLink": "Tables(\u0027testtablezjkkt2i8\u0027)",
- "TableName": "testtablezjkkt2i8"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablea8j7emxx\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablea8j7emxx\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-28ae026aeb61f8428bd6a1afd76d8102-9c2e60e7d2e79a41-00",
+ "traceparent": "00-9a94662a9f95c94781e6ccce3034f34d-5edb5b720e81874b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "fc6332b67aa160899560cb4adfbf7014",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:53 GMT",
+ "x-ms-client-request-id": "5a26dcba00c0d7ea23a44909e408ba07",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:52 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "fc6332b67aa160899560cb4adfbf7014",
- "x-ms-request-id": "20755ee7-b002-001b-4921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:40:51 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "5a26dcba-00c0-d7ea-23a4-4909e408ba07"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabley0cx4n50\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtabley0cx4n50\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-b222aad296ff8f439b0426ad165607f4-370e2f0ae8268743-00",
+ "traceparent": "00-9c1271c709e43443a4cb7fc45b1644fc-796820b99621c44a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "129aa903aaef56c21a2e38bce398f64e",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:53 GMT",
+ "x-ms-client-request-id": "d50a021f5a59c5478f76202a670fa19f",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:52 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "129aa903aaef56c21a2e38bce398f64e",
- "x-ms-request-id": "20755ef1-b002-001b-5321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:40:51 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "d50a021f-5a59-c547-8f76-202a670fa19f"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableti7of0q5\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableti7of0q5\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-fbe65d56966b8c4b8e4e474e18d920eb-66c0d69242a62f4d-00",
+ "traceparent": "00-c9b66d458f4f9e419b0258907dd5ddd9-1f1363d809978c40-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "3574a18ba5abf4fe49b97be4fd9dfbdc",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:53 GMT",
+ "x-ms-client-request-id": "1019d26fc944dbe89c9d77afcf40ea7f",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:52 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "3574a18ba5abf4fe49b97be4fd9dfbdc",
- "x-ms-request-id": "20755f00-b002-001b-6221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:40:52 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "1019d26f-c944-dbe8-9c9d-77afcf40ea7f"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabledfp39jqz\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtabledfp39jqz\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-671065c49d4bad4480f469341f67d3b7-ed5beb3fe279f84d-00",
+ "traceparent": "00-04af3f3137745f41997f28887c1f46ab-b14b2880f019294f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "25ab622cd8a60c906f0de17241cd7dfd",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:53 GMT",
+ "x-ms-client-request-id": "fc6332b67aa160899560cb4adfbf7014",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:52 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "25ab622cd8a60c906f0de17241cd7dfd",
- "x-ms-request-id": "20755f0c-b002-001b-6e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:40:52 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "fc6332b6-7aa1-6089-9560-cb4adfbf7014"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablej1y7zvmx\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablej1y7zvmx\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-b3d6a93ef148ac47a1685c45217ffc83-7b9e5d47917fcf46-00",
+ "traceparent": "00-5c418b5a0e5f4340b38b37fb5a753352-286d5d93b7747543-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "3ebe7c693b4b5e68aba5c9362ede587c",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:53 GMT",
+ "x-ms-client-request-id": "129aa903aaef56c21a2e38bce398f64e",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:52 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "3ebe7c693b4b5e68aba5c9362ede587c",
- "x-ms-request-id": "20755f1e-b002-001b-8021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:40:52 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "129aa903-aaef-56c2-1a2e-38bce398f64e"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableol5ogyhb\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableol5ogyhb\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-fbc5fbc19f86da44a911021f6b426d8c-8f9af442a26a0049-00",
+ "traceparent": "00-dbd08a3a4fd36d4d976e15f95d844775-a98c775e30128543-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "808f5b33d0ecb3a81068c59ec38bb37b",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:53 GMT",
+ "x-ms-client-request-id": "3574a18ba5abf4fe49b97be4fd9dfbdc",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:53 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "808f5b33d0ecb3a81068c59ec38bb37b",
- "x-ms-request-id": "20755f2b-b002-001b-0d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:40:52 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "3574a18b-a5ab-f4fe-49b9-7be4fd9dfbdc"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablefyp7r0zd\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablefyp7r0zd\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-a7d5f02fd3ddda4080bca20f7e37885c-f5a8bbe833f1414f-00",
+ "traceparent": "00-ae33eaf1ef342442b630ac05a7623ef4-3651172f9bfa9c4b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "817a7e3bbddff191f94d7a010e5add91",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:53 GMT",
+ "x-ms-client-request-id": "25ab622cd8a60c906f0de17241cd7dfd",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:53 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "817a7e3bbddff191f94d7a010e5add91",
- "x-ms-request-id": "20755f33-b002-001b-1521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:40:53 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "25ab622c-d8a6-0c90-6f0d-e17241cd7dfd"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableundqi0c4\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableundqi0c4\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-020b5997f7829046ba2ac66e3dfbdc4d-4772dbbb9d2d2f48-00",
+ "traceparent": "00-149b3c459432ef4587d995865a352cc9-4cf864bbfe2c374e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "e53f64b4fc3d9910d40a2de375ca9a1f",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:53 GMT",
+ "x-ms-client-request-id": "3ebe7c693b4b5e68aba5c9362ede587c",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:53 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "e53f64b4fc3d9910d40a2de375ca9a1f",
- "x-ms-request-id": "20755f42-b002-001b-2221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:40:53 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "3ebe7c69-3b4b-5e68-aba5-c9362ede587c"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable99f58f0r\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable99f58f0r\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-ef6d3be88333cf4e81c530ac4e92afcc-cf75d77617fe854a-00",
+ "traceparent": "00-ad4c5197f8656745a44dbdd2b4382766-e3f4c47e399a2a42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "b0fa4df2d764769dca9d869e56a7a4b6",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:53 GMT",
+ "x-ms-client-request-id": "808f5b33d0ecb3a81068c59ec38bb37b",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:53 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "b0fa4df2d764769dca9d869e56a7a4b6",
- "x-ms-request-id": "20755f49-b002-001b-2921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:40:53 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "808f5b33-d0ec-b3a8-1068-c59ec38bb37b"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable06nwkm99\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable06nwkm99\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-ce8a1c7460e92146aaf210b94b333fb9-681112f9467c4442-00",
+ "traceparent": "00-94488f5fb7cf5b47b56a598c7159d7c9-28e3a784d24a0042-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "5fe9348bcd4c3f3e6de1add48fae7b2f",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:53 GMT",
+ "x-ms-client-request-id": "817a7e3bbddff191f94d7a010e5add91",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:54 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:53 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "5fe9348bcd4c3f3e6de1add48fae7b2f",
- "x-ms-request-id": "20755f4f-b002-001b-2f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:40:53 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "817a7e3b-bddf-f191-f94d-7a010e5add91"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablebqk89cxv\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablebqk89cxv\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-e0e6ef5e28e08c4eacd8aad9ed5e5471-7fe9b70f9426d14c-00",
+ "traceparent": "00-a6286a7d3546524eb4615f586a1c6fa4-c6923554b8f99940-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "c10f5ab32c60dd2cc6c91b9f7572422c",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:53 GMT",
+ "x-ms-client-request-id": "e53f64b4fc3d9910d40a2de375ca9a1f",
+ "x-ms-date": "Fri, 17 Jul 2020 20:40:54 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:53 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c10f5ab32c60dd2cc6c91b9f7572422c",
- "x-ms-request-id": "20755f5a-b002-001b-3a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:40:54 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "e53f64b4-fc3d-9910-d40a-2de375ca9a1f"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "690124503",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetTablesReturnsTablesWithAndWithoutPagination(5)Async.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetTablesReturnsTablesWithAndWithoutPagination(5)Async.json
index 7a0decf86e24..53424209bc41 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetTablesReturnsTablesWithAndWithoutPagination(5)Async.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetTablesReturnsTablesWithAndWithoutPagination(5)Async.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6d17653d6da1c14c8fe587570f1630b9-18682d877fa14740-00",
+ "traceparent": "00-8487260274a65e4681a878809f2b312d-555f0ed6ed901a44-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "70b4d6fbd1ab283cb65f2cf0d38642e8",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:58:21 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:40 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableomv40i4o\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:58:21 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A58%3A21.9423752Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableomv40i4o\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "70b4d6fbd1ab283cb65f2cf0d38642e8",
- "x-ms-request-id": "207581a9-b002-001b-5421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "70b4d6fb-d1ab-283c-b65f-2cf0d38642e8"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableomv40i4o\u0027)",
- "odata.editLink": "Tables(\u0027testtableomv40i4o\u0027)",
- "TableName": "testtableomv40i4o"
+ "TableName": "testtableomv40i4o",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-193538bca606af4f958d628835eb2ccb-62edd8954e56d741-00",
+ "traceparent": "00-2dbb30a2950c464daeb4800a7ab6bb40-ea62a1eb0913c842-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b744bfaa9f5ae066a121beb45e6de292",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:58:22 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -68,43 +61,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:40 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableejvzv0dj\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:58:23 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A58%3A22.6250760Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableejvzv0dj\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "b744bfaa9f5ae066a121beb45e6de292",
- "x-ms-request-id": "207581b6-b002-001b-6021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "b744bfaa-9f5a-e066-a121-beb45e6de292"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableejvzv0dj\u0027)",
- "odata.editLink": "Tables(\u0027testtableejvzv0dj\u0027)",
- "TableName": "testtableejvzv0dj"
+ "TableName": "testtableejvzv0dj",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e919fa147e3cab479a19e29fd3b64084-c0fe69ebaee61843-00",
+ "traceparent": "00-73325289ed213c4eb76ac644e6444fb4-77a75e706e75f440-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "dfbd8b50286e6fad4a6dc5eb8d85cd17",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:58:23 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -113,43 +98,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:40 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableizr52vi0\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:58:23 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A58%3A23.2007688Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableizr52vi0\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "dfbd8b50286e6fad4a6dc5eb8d85cd17",
- "x-ms-request-id": "207581bc-b002-001b-6521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "dfbd8b50-286e-6fad-4a6d-c5eb8d85cd17"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableizr52vi0\u0027)",
- "odata.editLink": "Tables(\u0027testtableizr52vi0\u0027)",
- "TableName": "testtableizr52vi0"
+ "TableName": "testtableizr52vi0",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c9fce1c3085715499e0798cc9a5de826-30cf3ab2555e8447-00",
+ "traceparent": "00-885512e715a1864f92adbbd145f9993c-3122963140612541-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b2d9b8e71bdc25b1be0367cee1877178",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:58:23 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -158,43 +135,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:40 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablecpmyl0yk\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:58:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A58%3A23.7897736Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablecpmyl0yk\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "b2d9b8e71bdc25b1be0367cee1877178",
- "x-ms-request-id": "207581c2-b002-001b-6a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "b2d9b8e7-1bdc-25b1-be03-67cee1877178"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablecpmyl0yk\u0027)",
- "odata.editLink": "Tables(\u0027testtablecpmyl0yk\u0027)",
- "TableName": "testtablecpmyl0yk"
+ "TableName": "testtablecpmyl0yk",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-da2402cef1398c429ecccf5c52ea6cbc-ea3d8d7d9352464e-00",
+ "traceparent": "00-f54f915a0fa80f4e91f70611dd24eb4c-7c4a73cba2ef174f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "497798a44f36c2780247f8b54efa932e",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:58:24 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -203,43 +172,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:40 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableezpj6ko9\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:58:24 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A58%3A24.4467720Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableezpj6ko9\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "497798a44f36c2780247f8b54efa932e",
- "x-ms-request-id": "207581c8-b002-001b-6f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "497798a4-4f36-c278-0247-f8b54efa932e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableezpj6ko9\u0027)",
- "odata.editLink": "Tables(\u0027testtableezpj6ko9\u0027)",
- "TableName": "testtableezpj6ko9"
+ "TableName": "testtableezpj6ko9",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9175705cb3c22b4abcfb5498da4caec0-ed6abeebd39b894c-00",
+ "traceparent": "00-5960cbb36f4e83448a7d00341d2de3b5-a81fbbc85d869b45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "793dd6da9823f0ceb32a0e43a368ef6e",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:58:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -248,43 +209,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:40 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablejv0e4or9\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:58:25 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A58%3A25.0660872Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablejv0e4or9\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "793dd6da9823f0ceb32a0e43a368ef6e",
- "x-ms-request-id": "207581d3-b002-001b-7921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "793dd6da-9823-f0ce-b32a-0e43a368ef6e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablejv0e4or9\u0027)",
- "odata.editLink": "Tables(\u0027testtablejv0e4or9\u0027)",
- "TableName": "testtablejv0e4or9"
+ "TableName": "testtablejv0e4or9",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-7fcdfcb16d60834d8a787735e3eb717a-bc6ac841259dc14a-00",
+ "traceparent": "00-cd1264d62c3f5843a48d543efa16e578-81d529284251854b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "07343bbb7bc8a59162056e5f11fe9f69",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:58:25 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -293,43 +246,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:41 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable8byf2ykh\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:58:25 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A58%3A25.6650248Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable8byf2ykh\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "07343bbb7bc8a59162056e5f11fe9f69",
- "x-ms-request-id": "207581de-b002-001b-0221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "07343bbb-7bc8-a591-6205-6e5f11fe9f69"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable8byf2ykh\u0027)",
- "odata.editLink": "Tables(\u0027testtable8byf2ykh\u0027)",
- "TableName": "testtable8byf2ykh"
+ "TableName": "testtable8byf2ykh",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8819a1eb79186e4faebbb9062002e4d2-99913c5a6ed0bc4a-00",
+ "traceparent": "00-f1fdac7fb6a5fe4eacef676ea76c9a96-2772415786c6b64a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "78ffbfb19b311fe3acc4bee763c72837",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:58:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -338,43 +283,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:41 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableaqzhovrg\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:58:26 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A58%3A26.3334920Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableaqzhovrg\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "78ffbfb19b311fe3acc4bee763c72837",
- "x-ms-request-id": "207581e6-b002-001b-0921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "78ffbfb1-9b31-1fe3-acc4-bee763c72837"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableaqzhovrg\u0027)",
- "odata.editLink": "Tables(\u0027testtableaqzhovrg\u0027)",
- "TableName": "testtableaqzhovrg"
+ "TableName": "testtableaqzhovrg",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-494f70a3a4e16c419fd467b9989e9178-50bffbfc14d7be4f-00",
+ "traceparent": "00-836df456b9a06d4aadef6c1aabeab2d2-d0b906cf3ad6a046-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8721620606b86b8cb0e055097c1874c7",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:58:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -383,43 +320,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:41 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablelt5sshvf\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:58:26 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A58%3A26.9486088Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablelt5sshvf\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "8721620606b86b8cb0e055097c1874c7",
- "x-ms-request-id": "207581f2-b002-001b-1421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "87216206-06b8-6b8c-b0e0-55097c1874c7"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablelt5sshvf\u0027)",
- "odata.editLink": "Tables(\u0027testtablelt5sshvf\u0027)",
- "TableName": "testtablelt5sshvf"
+ "TableName": "testtablelt5sshvf",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-4d5e56d65192cb4c9dfa1700f44be883-070b8a2c65681642-00",
+ "traceparent": "00-d0fb567d0d5bc24d978352d98cb0e429-5f13e90076915347-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "838acadfed6e225a627372ce7a5b66a5",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:58:27 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -428,43 +357,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:41 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablexq2vrjo7\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:58:28 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A58%3A27.5663880Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablexq2vrjo7\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "838acadfed6e225a627372ce7a5b66a5",
- "x-ms-request-id": "207581fb-b002-001b-1c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "838acadf-ed6e-225a-6273-72ce7a5b66a5"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablexq2vrjo7\u0027)",
- "odata.editLink": "Tables(\u0027testtablexq2vrjo7\u0027)",
- "TableName": "testtablexq2vrjo7"
+ "TableName": "testtablexq2vrjo7",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-0f9af43fd2024947883f09cb2597ab66-ab9d590f77d85146-00",
+ "traceparent": "00-2467d3c3f459f64089884d444bce3443-d2a9d4dad1526245-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "aa7a19f40edb4e4b5c6fa8ee7b08fcc2",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:58:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -473,778 +394,434 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:41 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableuwzvl658\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:58:28 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A58%3A28.1701384Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableuwzvl658\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "aa7a19f40edb4e4b5c6fa8ee7b08fcc2",
- "x-ms-request-id": "20758203-b002-001b-2321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "aa7a19f4-0edb-4e4b-5c6f-a8ee7b08fcc2"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableuwzvl658\u0027)",
- "odata.editLink": "Tables(\u0027testtableuwzvl658\u0027)",
- "TableName": "testtableuwzvl658"
+ "TableName": "testtableuwzvl658",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "09a63386a5a5c64de90d16ed7f8340c0",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:58:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:41 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:58:28 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "09a63386a5a5c64de90d16ed7f8340c0",
- "x-ms-continuation-NextTableName": "1!48!dGVzdHRhYmxlOXR4bXVwaG0BMDFkNjM1MmMzMzg5YTc1Nw--",
- "x-ms-request-id": "2075820f-b002-001b-2e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-continuation-NextTableName": "b1w3AKj\u002BJWk=",
+ "x-ms-request-id": "09a63386-a5a5-c64d-e90d-16ed7f8340c0"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables",
"value": [
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable4ns9b5g3\u0027)",
- "odata.editLink": "Tables(\u0027testtable4ns9b5g3\u0027)",
- "TableName": "testtable4ns9b5g3"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable5iefecvu\u0027)",
- "odata.editLink": "Tables(\u0027testtable5iefecvu\u0027)",
- "TableName": "testtable5iefecvu"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable7psww12c\u0027)",
- "odata.editLink": "Tables(\u0027testtable7psww12c\u0027)",
- "TableName": "testtable7psww12c"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable8byf2ykh\u0027)",
- "odata.editLink": "Tables(\u0027testtable8byf2ykh\u0027)",
- "TableName": "testtable8byf2ykh"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable9szyhhkm\u0027)",
- "odata.editLink": "Tables(\u0027testtable9szyhhkm\u0027)",
- "TableName": "testtable9szyhhkm"
- }
- ]
- }
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextTableName=1%2148%21dGVzdHRhYmxlOXR4bXVwaG0BMDFkNjM1MmMzMzg5YTc1Nw--",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "DataServiceVersion": "3.0",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "558f090eb07353462724720ab3772a2e",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:41 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:41 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "558f090eb07353462724720ab3772a2e",
- "x-ms-continuation-NextTableName": "1!48!dGVzdHRhYmxlZTU5eW5tdnIBMDFkNjVhMjE3ZjM4ZTM5Yg--",
- "x-ms-request-id": "20758214-b002-001b-3321-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables",
- "value": [
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable9txmuphm\u0027)",
- "odata.editLink": "Tables(\u0027testtable9txmuphm\u0027)",
- "TableName": "testtable9txmuphm"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableaqzhovrg\u0027)",
- "odata.editLink": "Tables(\u0027testtableaqzhovrg\u0027)",
"TableName": "testtableaqzhovrg"
},
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableb8qgukae\u0027)",
- "odata.editLink": "Tables(\u0027testtableb8qgukae\u0027)",
- "TableName": "testtableb8qgukae"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablecpmyl0yk\u0027)",
- "odata.editLink": "Tables(\u0027testtablecpmyl0yk\u0027)",
- "TableName": "testtablecpmyl0yk"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabledxymqs21\u0027)",
- "odata.editLink": "Tables(\u0027testtabledxymqs21\u0027)",
- "TableName": "testtabledxymqs21"
- }
- ]
- }
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextTableName=1%2148%21dGVzdHRhYmxlZTU5eW5tdnIBMDFkNjVhMjE3ZjM4ZTM5Yg--",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "DataServiceVersion": "3.0",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "3dfc7555b2784edbcbb4c0cdf85dcfd8",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:42 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:41 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "3dfc7555b2784edbcbb4c0cdf85dcfd8",
- "x-ms-continuation-NextTableName": "1!48!dGVzdHRhYmxlazV2ZHo0azIBMDFkNjVhMjE3ZGIxNTRiNA--",
- "x-ms-request-id": "2075821d-b002-001b-3b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables",
- "value": [
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableejvzv0dj\u0027)",
- "odata.editLink": "Tables(\u0027testtableejvzv0dj\u0027)",
- "TableName": "testtableejvzv0dj"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableezpj6ko9\u0027)",
- "odata.editLink": "Tables(\u0027testtableezpj6ko9\u0027)",
"TableName": "testtableezpj6ko9"
},
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablefvgwmg7c\u0027)",
- "odata.editLink": "Tables(\u0027testtablefvgwmg7c\u0027)",
- "TableName": "testtablefvgwmg7c"
+ "TableName": "testtablelt5sshvf"
},
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableizr52vi0\u0027)",
- "odata.editLink": "Tables(\u0027testtableizr52vi0\u0027)",
"TableName": "testtableizr52vi0"
},
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablejv0e4or9\u0027)",
- "odata.editLink": "Tables(\u0027testtablejv0e4or9\u0027)",
- "TableName": "testtablejv0e4or9"
+ "TableName": "testtable8byf2ykh"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextTableName=1%2148%21dGVzdHRhYmxlazV2ZHo0azIBMDFkNjVhMjE3ZGIxNTRiNA--",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextTableName=b1w3AKj%2BJWk%3D",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "71dfe72ea779d54eec53e18133421371",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:42 GMT",
+ "x-ms-client-request-id": "558f090eb07353462724720ab3772a2e",
+ "x-ms-date": "Fri, 17 Jul 2020 20:58:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:41 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:58:28 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "71dfe72ea779d54eec53e18133421371",
- "x-ms-continuation-NextTableName": "1!48!dGVzdHRhYmxlcGozYTN4YXUBMDFkNjVhMjE3ZTQxN2UyNg--",
- "x-ms-request-id": "20758224-b002-001b-4221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-continuation-NextTableName": "b1w3AK8pBJ0=",
+ "x-ms-request-id": "558f090e-b073-5346-2724-720ab3772a2e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables",
"value": [
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablekumj2pc7\u0027)",
- "odata.editLink": "Tables(\u0027testtablekumj2pc7\u0027)",
- "TableName": "testtablekumj2pc7"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablelt5sshvf\u0027)",
- "odata.editLink": "Tables(\u0027testtablelt5sshvf\u0027)",
- "TableName": "testtablelt5sshvf"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablem4bhqtqv\u0027)",
- "odata.editLink": "Tables(\u0027testtablem4bhqtqv\u0027)",
- "TableName": "testtablem4bhqtqv"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableomv40i4o\u0027)",
- "odata.editLink": "Tables(\u0027testtableomv40i4o\u0027)",
"TableName": "testtableomv40i4o"
},
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablepdprm1am\u0027)",
- "odata.editLink": "Tables(\u0027testtablepdprm1am\u0027)",
- "TableName": "testtablepdprm1am"
- }
- ]
- }
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextTableName=1%2148%21dGVzdHRhYmxlcGozYTN4YXUBMDFkNjVhMjE3ZTQxN2UyNg--",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "DataServiceVersion": "3.0",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "0998e7e302875c482e4089bfef795ac9",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:42 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:41 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "0998e7e302875c482e4089bfef795ac9",
- "x-ms-continuation-NextTableName": "1!48!dGVzdHRhYmxlejYyYXplMnIBMDFkNjVhMjE3ZTkxMGU3ZQ--",
- "x-ms-request-id": "20758229-b002-001b-4721-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables",
- "value": [
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableuwzvl658\u0027)",
- "odata.editLink": "Tables(\u0027testtableuwzvl658\u0027)",
- "TableName": "testtableuwzvl658"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablev9pwhgv8\u0027)",
- "odata.editLink": "Tables(\u0027testtablev9pwhgv8\u0027)",
- "TableName": "testtablev9pwhgv8"
+ "TableName": "testtablejv0e4or9"
},
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablexq2vrjo7\u0027)",
- "odata.editLink": "Tables(\u0027testtablexq2vrjo7\u0027)",
"TableName": "testtablexq2vrjo7"
},
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablexvcatiga\u0027)",
- "odata.editLink": "Tables(\u0027testtablexvcatiga\u0027)",
- "TableName": "testtablexvcatiga"
+ "TableName": "testtablecpmyl0yk"
},
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablez4asskk8\u0027)",
- "odata.editLink": "Tables(\u0027testtablez4asskk8\u0027)",
- "TableName": "testtablez4asskk8"
+ "TableName": "testtableuwzvl658"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextTableName=1%2148%21dGVzdHRhYmxlejYyYXplMnIBMDFkNjVhMjE3ZTkxMGU3ZQ--",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextTableName=b1w3AK8pBJ0%3D",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "cbdc9954b998aeb526265124d1591b89",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:42 GMT",
+ "x-ms-client-request-id": "3dfc7555b2784edbcbb4c0cdf85dcfd8",
+ "x-ms-date": "Fri, 17 Jul 2020 20:58:29 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:41 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:58:28 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "cbdc9954b998aeb526265124d1591b89",
- "x-ms-request-id": "2075822e-b002-001b-4c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "3dfc7555-b278-4edb-cbb4-c0cdf85dcfd8"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables",
"value": [
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablezjkkt2i8\u0027)",
- "odata.editLink": "Tables(\u0027testtablezjkkt2i8\u0027)",
- "TableName": "testtablezjkkt2i8"
+ "TableName": "testtableejvzv0dj"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableejvzv0dj\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableejvzv0dj\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-3891f8f75b876b40bf4f6f4fd416cd48-c74fac7c33d30d46-00",
+ "traceparent": "00-30ef4dc43ed91445911ee9376cd11ca4-e473da8ce1ce734b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "11ea4fa0c5c52b519f8342381d8fe573",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:42 GMT",
+ "x-ms-client-request-id": "71dfe72ea779d54eec53e18133421371",
+ "x-ms-date": "Fri, 17 Jul 2020 20:58:29 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:41 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "11ea4fa0c5c52b519f8342381d8fe573",
- "x-ms-request-id": "20758235-b002-001b-5321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:58:29 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "71dfe72e-a779-d54e-ec53-e18133421371"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableizr52vi0\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableizr52vi0\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-11e756a2e7f10d468b2cf6f4d01c3523-73e674edc9423742-00",
+ "traceparent": "00-982b314d20e15042aed800413f098a0c-8234705b58745b4c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "992c18f8476629d832eae360b1238ad4",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:42 GMT",
+ "x-ms-client-request-id": "0998e7e302875c482e4089bfef795ac9",
+ "x-ms-date": "Fri, 17 Jul 2020 20:58:29 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:41 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "992c18f8476629d832eae360b1238ad4",
- "x-ms-request-id": "20758240-b002-001b-5d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:58:29 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "0998e7e3-0287-5c48-2e40-89bfef795ac9"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablecpmyl0yk\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablecpmyl0yk\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-17b5b29516ffd24b890ce8dfa0bbdf22-c36f46c281052e49-00",
+ "traceparent": "00-a9669e62c7771041a5df12164d0faf8b-eb86f1586646b64b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "a01e0025498e8f0448b02c15767c9096",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:42 GMT",
+ "x-ms-client-request-id": "cbdc9954b998aeb526265124d1591b89",
+ "x-ms-date": "Fri, 17 Jul 2020 20:58:29 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:41 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a01e0025498e8f0448b02c15767c9096",
- "x-ms-request-id": "20758244-b002-001b-6121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:58:29 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "cbdc9954-b998-aeb5-2626-5124d1591b89"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableezpj6ko9\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableezpj6ko9\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-019084a73ef9b14fab7fae690dc10666-86dc2977293a894c-00",
+ "traceparent": "00-1b7009dba607fd4b9d6d10070e747b4d-973eb53f1410be4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "b82cdd41822d592376c0dfdbe1f07a7c",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:42 GMT",
+ "x-ms-client-request-id": "11ea4fa0c5c52b519f8342381d8fe573",
+ "x-ms-date": "Fri, 17 Jul 2020 20:58:29 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:41 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "b82cdd41822d592376c0dfdbe1f07a7c",
- "x-ms-request-id": "2075824a-b002-001b-6721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:58:29 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "11ea4fa0-c5c5-2b51-9f83-42381d8fe573"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablejv0e4or9\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablejv0e4or9\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-0fbd5c301647c043a120f873ac53b5be-5a2cd8c34ac7f744-00",
+ "traceparent": "00-1c7977f2e3e9424e832691c487718aeb-e03cef34d2d38640-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "1d136ef84571afe4149d50b51bc3b2b5",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:42 GMT",
+ "x-ms-client-request-id": "992c18f8476629d832eae360b1238ad4",
+ "x-ms-date": "Fri, 17 Jul 2020 20:58:30 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:41 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "1d136ef84571afe4149d50b51bc3b2b5",
- "x-ms-request-id": "20758255-b002-001b-7121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:58:30 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "992c18f8-4766-29d8-32ea-e360b1238ad4"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable8byf2ykh\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable8byf2ykh\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-d62a2d0c1976e84eb8a7d4de722b8a4b-e5d373ff9cbfde4b-00",
+ "traceparent": "00-d6bb74711fa4cd4ca343690b6e9139c2-926ae0819f494e4d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "d31f4c59d2f6a2a7dcc42acd6928ad57",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:42 GMT",
+ "x-ms-client-request-id": "a01e0025498e8f0448b02c15767c9096",
+ "x-ms-date": "Fri, 17 Jul 2020 20:58:30 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:41 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "d31f4c59d2f6a2a7dcc42acd6928ad57",
- "x-ms-request-id": "20758265-b002-001b-7f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:58:30 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "a01e0025-498e-8f04-48b0-2c15767c9096"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableaqzhovrg\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableaqzhovrg\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-d76e1df05424414980415adf815cc7a2-de646fe167cc994f-00",
+ "traceparent": "00-7d2fc7aa6a26ef4d94989f299621bc31-b0262445155deb4c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "081caf367269fb24f97ca490316d3eb2",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:42 GMT",
+ "x-ms-client-request-id": "b82cdd41822d592376c0dfdbe1f07a7c",
+ "x-ms-date": "Fri, 17 Jul 2020 20:58:30 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:41 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "081caf367269fb24f97ca490316d3eb2",
- "x-ms-request-id": "20758275-b002-001b-0f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:58:30 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "b82cdd41-822d-5923-76c0-dfdbe1f07a7c"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablelt5sshvf\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablelt5sshvf\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-c1eb472aea91494caacde2255c0b8a52-ca1fe3d97010ee48-00",
+ "traceparent": "00-1bd1b39e8e70f044ac4864ac5acea5b5-b3dc3e44370ae641-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "95812a0da6d12685c67040ad1a1645eb",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:42 GMT",
+ "x-ms-client-request-id": "1d136ef84571afe4149d50b51bc3b2b5",
+ "x-ms-date": "Fri, 17 Jul 2020 20:58:31 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:41 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "95812a0da6d12685c67040ad1a1645eb",
- "x-ms-request-id": "20758281-b002-001b-1b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:58:30 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "1d136ef8-4571-afe4-149d-50b51bc3b2b5"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablexq2vrjo7\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablexq2vrjo7\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-f68455dac6829b4baeb6ab405932284e-5e468f7ab565c84f-00",
+ "traceparent": "00-6fa9f18543a7264194936b2153a869e5-8e61c90e3da9994c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "6b7ff9efaaa7e74c2723da7a2d17716e",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:42 GMT",
+ "x-ms-client-request-id": "d31f4c59d2f6a2a7dcc42acd6928ad57",
+ "x-ms-date": "Fri, 17 Jul 2020 20:58:31 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:41 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "6b7ff9efaaa7e74c2723da7a2d17716e",
- "x-ms-request-id": "2075828f-b002-001b-2921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:58:31 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "d31f4c59-d2f6-a2a7-dcc4-2acd6928ad57"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableuwzvl658\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableuwzvl658\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-feac78f413bd0941a2f9f958a1709008-263898586fb7354b-00",
+ "traceparent": "00-6913563427a3d04c9561d6afaeae7ace-2ead92741d7c6741-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "3fbf778518a690862af641f83177e0e2",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:42 GMT",
+ "x-ms-client-request-id": "081caf367269fb24f97ca490316d3eb2",
+ "x-ms-date": "Fri, 17 Jul 2020 20:58:31 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:41 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "3fbf778518a690862af641f83177e0e2",
- "x-ms-request-id": "2075829c-b002-001b-3621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:58:31 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "081caf36-7269-fb24-f97c-a490316d3eb2"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableomv40i4o\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableomv40i4o\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-0dc6986a93a9bb42a661ebe85c5dd8e0-0cfcb83e16199f4c-00",
+ "traceparent": "00-c0c8e46f4c56444381356963bcedf538-082c1fd04f900e4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "38a0b937d2ee630bdd9a6dadcb0bf9af",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:42 GMT",
+ "x-ms-client-request-id": "95812a0da6d12685c67040ad1a1645eb",
+ "x-ms-date": "Fri, 17 Jul 2020 20:58:32 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:41 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "38a0b937d2ee630bdd9a6dadcb0bf9af",
- "x-ms-request-id": "207582a0-b002-001b-3a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:58:31 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "95812a0d-a6d1-2685-c670-40ad1a1645eb"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "659428049",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetTablesReturnsTablesWithAndWithoutPagination(null).json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetTablesReturnsTablesWithAndWithoutPagination(null).json
index 0423d1a33f5d..07348d475fa2 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetTablesReturnsTablesWithAndWithoutPagination(null).json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetTablesReturnsTablesWithAndWithoutPagination(null).json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8cd78beb7a587243bdd61b92cfe55f78-2a410ec4a36b1e43-00",
+ "traceparent": "00-4df8e5027283f44598a2af95948acf27-d9d78cfb06bc0d4d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "613197315a7f2244636be62c83132a7f",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:51 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:41:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:50 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablepcgihdqq\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:41:07 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A41%3A08.1267208Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablepcgihdqq\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "613197315a7f2244636be62c83132a7f",
- "x-ms-request-id": "20755d30-b002-001b-4421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "61319731-5a7f-2244-636b-e62c83132a7f"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablepcgihdqq\u0027)",
- "odata.editLink": "Tables(\u0027testtablepcgihdqq\u0027)",
- "TableName": "testtablepcgihdqq"
+ "TableName": "testtablepcgihdqq",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-99a1905a973f8f45991ae3fb0bb8752d-2d48070c9c23194d-00",
+ "traceparent": "00-7e50c25459d27d4f8355f8c3bef00fc8-fdbe83d130407f4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1da83e9af9e0e8816847b05f28705ce8",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:51 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:41:08 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -68,43 +61,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:50 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable7qf77nrx\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:41:09 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A41%3A08.6807048Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable7qf77nrx\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "1da83e9af9e0e8816847b05f28705ce8",
- "x-ms-request-id": "20755d3e-b002-001b-5121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "1da83e9a-f9e0-e881-6847-b05f28705ce8"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable7qf77nrx\u0027)",
- "odata.editLink": "Tables(\u0027testtable7qf77nrx\u0027)",
- "TableName": "testtable7qf77nrx"
+ "TableName": "testtable7qf77nrx",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1992f4a68a805a4dad8f70119e4674ef-e39e115b25919147-00",
+ "traceparent": "00-3b6f93cc629ef44a8801c8309f050cf5-c6b216eab7d68546-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "660698909b60d79e3ec5c741b1274169",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:51 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:41:09 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -113,43 +98,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:50 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable3infessf\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:41:09 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A41%3A09.1506184Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable3infessf\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "660698909b60d79e3ec5c741b1274169",
- "x-ms-request-id": "20755d4d-b002-001b-5e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "66069890-9b60-d79e-3ec5-c741b1274169"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable3infessf\u0027)",
- "odata.editLink": "Tables(\u0027testtable3infessf\u0027)",
- "TableName": "testtable3infessf"
+ "TableName": "testtable3infessf",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-5e179e3f7884204d876ab1042fa28feb-8d3b567014a23949-00",
+ "traceparent": "00-32af7f92e3df874a9dbf14510c0a2e00-314f8a253f8eef48-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a9f129bf7dc497c6d95f8c47f31b87cc",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:51 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:41:09 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -158,43 +135,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:50 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable4nl3swnd\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:41:09 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A41%3A09.6484872Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable4nl3swnd\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a9f129bf7dc497c6d95f8c47f31b87cc",
- "x-ms-request-id": "20755d69-b002-001b-7521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "a9f129bf-7dc4-97c6-d95f-8c47f31b87cc"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable4nl3swnd\u0027)",
- "odata.editLink": "Tables(\u0027testtable4nl3swnd\u0027)",
- "TableName": "testtable4nl3swnd"
+ "TableName": "testtable4nl3swnd",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-88fa2c97e99cb341b71d1a2e9d73c687-1d3a9b176c9dd541-00",
+ "traceparent": "00-4844207fba44f748a51662fdaa5e7268-a97bd6e8ae86cf4c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a6f22ba3283ec5e641d7a737aaf412c0",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:51 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:41:10 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -203,43 +172,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:51 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable3p4ivby6\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:41:10 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A41%3A10.0770312Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable3p4ivby6\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a6f22ba3283ec5e641d7a737aaf412c0",
- "x-ms-request-id": "20755d73-b002-001b-7e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "a6f22ba3-283e-c5e6-41d7-a737aaf412c0"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable3p4ivby6\u0027)",
- "odata.editLink": "Tables(\u0027testtable3p4ivby6\u0027)",
- "TableName": "testtable3p4ivby6"
+ "TableName": "testtable3p4ivby6",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-5f9f5ab893b311449c0bcd5e4c9b8ecb-16a85668b07db149-00",
+ "traceparent": "00-a336097ec67cfc4fb7c3d4e124290d8a-47ed08ba277d3748-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8993f777f5a8a485f39a05998b1f59b1",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:51 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:41:10 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -248,43 +209,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:51 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablem0salty4\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:41:10 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A41%3A10.4865288Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablem0salty4\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "8993f777f5a8a485f39a05998b1f59b1",
- "x-ms-request-id": "20755d7f-b002-001b-0921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "8993f777-f5a8-a485-f39a-05998b1f59b1"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablem0salty4\u0027)",
- "odata.editLink": "Tables(\u0027testtablem0salty4\u0027)",
- "TableName": "testtablem0salty4"
+ "TableName": "testtablem0salty4",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-46f0b11bbe7ab64d877b18171458e283-85407fd057113443-00",
+ "traceparent": "00-bfd5b2f9b3fc3245afae089f55d39ade-af78e44bfe076948-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "796261c7e4b3aabbb4232f46955d1d4c",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:51 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:41:11 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -293,43 +246,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:51 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable71xaqee9\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:41:10 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A41%3A11.0344712Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable71xaqee9\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "796261c7e4b3aabbb4232f46955d1d4c",
- "x-ms-request-id": "20755d87-b002-001b-1021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "796261c7-e4b3-aabb-b423-2f46955d1d4c"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable71xaqee9\u0027)",
- "odata.editLink": "Tables(\u0027testtable71xaqee9\u0027)",
- "TableName": "testtable71xaqee9"
+ "TableName": "testtable71xaqee9",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d3c0ea077e99d24985580fc2fbd31c09-e05dbcbfa82fa944-00",
+ "traceparent": "00-bbd0ef42902aec4eadf7ec74380dafde-2b5c345f2bb61f4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d4d9b6d65af2275bd5dfc247920bf00e",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:51 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:41:11 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -338,43 +283,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:51 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableyn3i441t\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:41:11 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A41%3A11.4948616Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableyn3i441t\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "d4d9b6d65af2275bd5dfc247920bf00e",
- "x-ms-request-id": "20755d8d-b002-001b-1521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "d4d9b6d6-5af2-275b-d5df-c247920bf00e"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableyn3i441t\u0027)",
- "odata.editLink": "Tables(\u0027testtableyn3i441t\u0027)",
- "TableName": "testtableyn3i441t"
+ "TableName": "testtableyn3i441t",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-db7e79f8357dd54a8775f9b091c9e17f-9efcb5285be3864f-00",
+ "traceparent": "00-bcd4f6665d79c24c8e5695b14ad61b00-deac6f4f58449441-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "70cabaa9110c4ec52b83a3fd0be7b75a",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:51 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:41:11 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -383,43 +320,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:51 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablev2ywj4mn\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:41:11 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A41%3A11.9349768Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablev2ywj4mn\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "70cabaa9110c4ec52b83a3fd0be7b75a",
- "x-ms-request-id": "20755d96-b002-001b-1d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "70cabaa9-110c-4ec5-2b83-a3fd0be7b75a"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablev2ywj4mn\u0027)",
- "odata.editLink": "Tables(\u0027testtablev2ywj4mn\u0027)",
- "TableName": "testtablev2ywj4mn"
+ "TableName": "testtablev2ywj4mn",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-fd71554cabc2d54cbb1f3c6c88ff3bf5-0fc12d2daee99f44-00",
+ "traceparent": "00-689f2b188baedc44ad83564edd033af6-a49cf92bcc60874c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "93313512ce94c3ef9bbd2a3890eb1ac3",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:51 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:41:12 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -428,43 +357,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:51 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablecp3xtj5b\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:41:11 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A41%3A12.3475464Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablecp3xtj5b\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "93313512ce94c3ef9bbd2a3890eb1ac3",
- "x-ms-request-id": "20755d9f-b002-001b-2521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "93313512-ce94-c3ef-9bbd-2a3890eb1ac3"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablecp3xtj5b\u0027)",
- "odata.editLink": "Tables(\u0027testtablecp3xtj5b\u0027)",
- "TableName": "testtablecp3xtj5b"
+ "TableName": "testtablecp3xtj5b",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-4dbfa5dcf0fee24fb25d9bc4485d5884-999ada577e663a4e-00",
+ "traceparent": "00-b933d91490395b40864dbad93803ccf3-31b74c49c5d30844-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e79f8aa464a2d47f00845dd6e032ba5d",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:51 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:41:12 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -473,588 +394,372 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:51 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable52s7iv7u\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:41:13 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A41%3A12.7856136Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable52s7iv7u\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "e79f8aa464a2d47f00845dd6e032ba5d",
- "x-ms-request-id": "20755db2-b002-001b-3521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "e79f8aa4-64a2-d47f-0084-5dd6e032ba5d"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable52s7iv7u\u0027)",
- "odata.editLink": "Tables(\u0027testtable52s7iv7u\u0027)",
- "TableName": "testtable52s7iv7u"
+ "TableName": "testtable52s7iv7u",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4d61df947ebcdcc9edad9c27b8aadd1f",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:51 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:41:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:51 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:41:13 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "4d61df947ebcdcc9edad9c27b8aadd1f",
- "x-ms-request-id": "20755dc1-b002-001b-4321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "4d61df94-7ebc-dcc9-edad-9c27b8aadd1f"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables",
"value": [
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable3infessf\u0027)",
- "odata.editLink": "Tables(\u0027testtable3infessf\u0027)",
- "TableName": "testtable3infessf"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable3p4ivby6\u0027)",
- "odata.editLink": "Tables(\u0027testtable3p4ivby6\u0027)",
- "TableName": "testtable3p4ivby6"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable4nl3swnd\u0027)",
- "odata.editLink": "Tables(\u0027testtable4nl3swnd\u0027)",
- "TableName": "testtable4nl3swnd"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable4ns9b5g3\u0027)",
- "odata.editLink": "Tables(\u0027testtable4ns9b5g3\u0027)",
- "TableName": "testtable4ns9b5g3"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable52s7iv7u\u0027)",
- "odata.editLink": "Tables(\u0027testtable52s7iv7u\u0027)",
- "TableName": "testtable52s7iv7u"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable5iefecvu\u0027)",
- "odata.editLink": "Tables(\u0027testtable5iefecvu\u0027)",
- "TableName": "testtable5iefecvu"
+ "TableName": "testtablecp3xtj5b"
},
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable71xaqee9\u0027)",
- "odata.editLink": "Tables(\u0027testtable71xaqee9\u0027)",
"TableName": "testtable71xaqee9"
},
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable7psww12c\u0027)",
- "odata.editLink": "Tables(\u0027testtable7psww12c\u0027)",
- "TableName": "testtable7psww12c"
+ "TableName": "testtableyn3i441t"
},
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable7qf77nrx\u0027)",
- "odata.editLink": "Tables(\u0027testtable7qf77nrx\u0027)",
"TableName": "testtable7qf77nrx"
},
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable9szyhhkm\u0027)",
- "odata.editLink": "Tables(\u0027testtable9szyhhkm\u0027)",
- "TableName": "testtable9szyhhkm"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable9txmuphm\u0027)",
- "odata.editLink": "Tables(\u0027testtable9txmuphm\u0027)",
- "TableName": "testtable9txmuphm"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableb8qgukae\u0027)",
- "odata.editLink": "Tables(\u0027testtableb8qgukae\u0027)",
- "TableName": "testtableb8qgukae"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablecp3xtj5b\u0027)",
- "odata.editLink": "Tables(\u0027testtablecp3xtj5b\u0027)",
- "TableName": "testtablecp3xtj5b"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabledxymqs21\u0027)",
- "odata.editLink": "Tables(\u0027testtabledxymqs21\u0027)",
- "TableName": "testtabledxymqs21"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablefvgwmg7c\u0027)",
- "odata.editLink": "Tables(\u0027testtablefvgwmg7c\u0027)",
- "TableName": "testtablefvgwmg7c"
+ "TableName": "testtable4nl3swnd"
},
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablekumj2pc7\u0027)",
- "odata.editLink": "Tables(\u0027testtablekumj2pc7\u0027)",
- "TableName": "testtablekumj2pc7"
+ "TableName": "testtable3infessf"
},
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablem0salty4\u0027)",
- "odata.editLink": "Tables(\u0027testtablem0salty4\u0027)",
"TableName": "testtablem0salty4"
},
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablem4bhqtqv\u0027)",
- "odata.editLink": "Tables(\u0027testtablem4bhqtqv\u0027)",
- "TableName": "testtablem4bhqtqv"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablepcgihdqq\u0027)",
- "odata.editLink": "Tables(\u0027testtablepcgihdqq\u0027)",
- "TableName": "testtablepcgihdqq"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablepdprm1am\u0027)",
- "odata.editLink": "Tables(\u0027testtablepdprm1am\u0027)",
- "TableName": "testtablepdprm1am"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablev2ywj4mn\u0027)",
- "odata.editLink": "Tables(\u0027testtablev2ywj4mn\u0027)",
"TableName": "testtablev2ywj4mn"
},
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablev9pwhgv8\u0027)",
- "odata.editLink": "Tables(\u0027testtablev9pwhgv8\u0027)",
- "TableName": "testtablev9pwhgv8"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablexvcatiga\u0027)",
- "odata.editLink": "Tables(\u0027testtablexvcatiga\u0027)",
- "TableName": "testtablexvcatiga"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableyn3i441t\u0027)",
- "odata.editLink": "Tables(\u0027testtableyn3i441t\u0027)",
- "TableName": "testtableyn3i441t"
+ "TableName": "testtable52s7iv7u"
},
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablez4asskk8\u0027)",
- "odata.editLink": "Tables(\u0027testtablez4asskk8\u0027)",
- "TableName": "testtablez4asskk8"
+ "TableName": "testtable3p4ivby6"
},
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablezjkkt2i8\u0027)",
- "odata.editLink": "Tables(\u0027testtablezjkkt2i8\u0027)",
- "TableName": "testtablezjkkt2i8"
+ "TableName": "testtablepcgihdqq"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable7qf77nrx\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable7qf77nrx\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-cf0c3d38c3868642ac59bc3bbf9b644f-7928add24ffa8441-00",
+ "traceparent": "00-1d5dec6c5a9fd64dab8dec9544f61780-801d8e43aef53649-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "09ee3a32072e36213d56370c8d43e3e7",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:41:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:51 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "09ee3a32072e36213d56370c8d43e3e7",
- "x-ms-request-id": "20755dd9-b002-001b-5721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:41:13 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "09ee3a32-072e-3621-3d56-370c8d43e3e7"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable3infessf\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable3infessf\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-5b6cc1b0f3fb4642a94630c1602702b6-a6ad302fb194b744-00",
+ "traceparent": "00-f86aa4972ec4004ebbc9e63010e87dd7-649bc4d36a0c4342-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "887abfb9b591253bc0c2faf4c7581b55",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:41:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:51 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "887abfb9b591253bc0c2faf4c7581b55",
- "x-ms-request-id": "20755de5-b002-001b-6321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:41:13 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "887abfb9-b591-253b-c0c2-faf4c7581b55"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable4nl3swnd\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable4nl3swnd\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-4ba427635570d34da405400fe7c46986-a60b35d75391cf48-00",
+ "traceparent": "00-91112b39adbf314bbc6014350cd614e1-0259aecfaad52449-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a6a43ea6b0438c2ebe2b106547bd4ea9",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:41:13 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:51 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a6a43ea6b0438c2ebe2b106547bd4ea9",
- "x-ms-request-id": "20755dec-b002-001b-6921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:41:13 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "a6a43ea6-b043-8c2e-be2b-106547bd4ea9"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable3p4ivby6\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable3p4ivby6\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-850289e0ae85394cbbf09ec19214a4e7-334d661b78dbc343-00",
+ "traceparent": "00-af88419e8c9415489885d36ae63ee3af-05a69ce8e050424f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f96db5c955307d8dfec8486b0d2c6ee5",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:41:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:51 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "f96db5c955307d8dfec8486b0d2c6ee5",
- "x-ms-request-id": "20755dfd-b002-001b-7821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:41:14 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "f96db5c9-5530-7d8d-fec8-486b0d2c6ee5"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablem0salty4\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablem0salty4\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-a4f47a57e09d5f48be3a99abaa84a625-6702ccce86a8a746-00",
+ "traceparent": "00-777704fac28d744d8d22f092a1359a86-b0551c6dc3f3f34c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4f65e23a3d9f09a490eeca66a4d5de03",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:41:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:51 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "4f65e23a3d9f09a490eeca66a4d5de03",
- "x-ms-request-id": "20755e05-b002-001b-8021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:41:14 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "4f65e23a-3d9f-09a4-90ee-ca66a4d5de03"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable71xaqee9\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable71xaqee9\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-46400589bffcc747b8917ea71ef5d82f-d8051925d462bc4e-00",
+ "traceparent": "00-b922797f76aa1740bab317ed6547f661-71be5fa9b43ecf4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "122b507322ea5125b027a77a67c27f91",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:41:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:51 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "122b507322ea5125b027a77a67c27f91",
- "x-ms-request-id": "20755e09-b002-001b-0421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:41:14 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "122b5073-22ea-5125-b027-a77a67c27f91"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableyn3i441t\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableyn3i441t\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-7a6a58c84df15546be7f6184ef7ac422-170f94b3a0263142-00",
+ "traceparent": "00-7729739575d90b4db9a1cf527f43bcd0-6d291848638a7c44-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "652b2abcff588c0a106468418b27d829",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:41:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:51 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "652b2abcff588c0a106468418b27d829",
- "x-ms-request-id": "20755e0f-b002-001b-0a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:41:14 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "652b2abc-ff58-8c0a-1064-68418b27d829"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablev2ywj4mn\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablev2ywj4mn\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-970acd0fd07ef143b550d384553110d5-b890a5785580854f-00",
+ "traceparent": "00-3b6a06bb949b70459aaa62b2db3ee685-7616aa7181bfb04b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "bcf745ea5b0118fbbc149f789529a1ce",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:41:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:51 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "bcf745ea5b0118fbbc149f789529a1ce",
- "x-ms-request-id": "20755e1b-b002-001b-1621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:41:15 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "bcf745ea-5b01-18fb-bc14-9f789529a1ce"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablecp3xtj5b\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablecp3xtj5b\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-d5786802cf86674f9000adf182f35b98-07d15f833fdd9044-00",
+ "traceparent": "00-4a620b775a201442be9b70b22c48ceed-315640e9b660fd45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7aa9386f79aa74aa459e0285b9e3c589",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:41:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:51 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "7aa9386f79aa74aa459e0285b9e3c589",
- "x-ms-request-id": "20755e22-b002-001b-1d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:41:15 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "7aa9386f-79aa-74aa-459e-0285b9e3c589"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable52s7iv7u\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable52s7iv7u\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-114464e0f78cb84ba6ba67ce4206477f-e3c9134deb4c1a4c-00",
+ "traceparent": "00-0e1048a8a81a30489004d851f71c0764-23973e95eab73241-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "21907e4ec2ca60902e12a8436092f6e7",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:41:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:51 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "21907e4ec2ca60902e12a8436092f6e7",
- "x-ms-request-id": "20755e2b-b002-001b-2621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:41:15 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "21907e4e-c2ca-6090-2e12-a8436092f6e7"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablepcgihdqq\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablepcgihdqq\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-a2ed33085062314e9c2167585e3bf973-21df39472c66e34d-00",
+ "traceparent": "00-9e4a6cd2b721c441ae5454a44a1dddd8-008ed2c986d4fb45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "52d29ac25d7d717f9b82776259765ed8",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:52 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:41:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:51 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "52d29ac25d7d717f9b82776259765ed8",
- "x-ms-request-id": "20755e32-b002-001b-2c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:41:15 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "52d29ac2-5d7d-717f-9b82-776259765ed8"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "92824305",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetTablesReturnsTablesWithAndWithoutPagination(null)Async.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetTablesReturnsTablesWithAndWithoutPagination(null)Async.json
index dd2d264656ff..9be1b13d8596 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetTablesReturnsTablesWithAndWithoutPagination(null)Async.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetTablesReturnsTablesWithAndWithoutPagination(null)Async.json
@@ -1,20 +1,22 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-531f13b504a44e479e193133c232db9a-a1d1ce38977b2d48-00",
+ "Request-Id": "00-442acf7e1051dc4d993d0f1763019756-6ecf0805aa493c40-00",
+ "traceparent": "00-442acf7e1051dc4d993d0f1763019756-6ecf0805aa493c40-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "023fd93b969d3f6686888e1009752b1d",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:48:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +25,36 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:39 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablem521w4i0\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:48:29 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A48%3A29.4869000Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablem521w4i0\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "023fd93b969d3f6686888e1009752b1d",
- "x-ms-request-id": "207580a9-b002-001b-6b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "023fd93b-969d-3f66-8688-8e1009752b1d"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablem521w4i0\u0027)",
- "odata.editLink": "Tables(\u0027testtablem521w4i0\u0027)",
- "TableName": "testtablem521w4i0"
+ "TableName": "testtablem521w4i0",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-cbc1a692c50823408f2bf2b92a3884be-b02eddd6f01ddf41-00",
+ "Request-Id": "00-325f3c5127cd5341870e98f4b1968868-193be80685dc364f-00",
+ "traceparent": "00-325f3c5127cd5341870e98f4b1968868-193be80685dc364f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7fb1a55ced341bff86b8ff1fceff78c9",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:48:36 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -68,43 +63,36 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:39 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablem4x0wesi\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:48:36 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A48%3A36.5755400Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablem4x0wesi\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "7fb1a55ced341bff86b8ff1fceff78c9",
- "x-ms-request-id": "207580b3-b002-001b-7421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "7fb1a55c-ed34-1bff-86b8-ff1fceff78c9"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablem4x0wesi\u0027)",
- "odata.editLink": "Tables(\u0027testtablem4x0wesi\u0027)",
- "TableName": "testtablem4x0wesi"
+ "TableName": "testtablem4x0wesi",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-79322ade26d2f1468a749ddfda89fa82-baf204f3fd279540-00",
+ "Request-Id": "00-6a64439d1ed31d4bbba15eaf29650627-dab3bdbf20b7ab45-00",
+ "traceparent": "00-6a64439d1ed31d4bbba15eaf29650627-dab3bdbf20b7ab45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "740ff8f7a180461303faa5f7e4e60b98",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:48:43 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -113,43 +101,36 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:39 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableolcyuhnl\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:48:43 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A48%3A43.1237128Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableolcyuhnl\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "740ff8f7a180461303faa5f7e4e60b98",
- "x-ms-request-id": "207580bd-b002-001b-7d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "740ff8f7-a180-4613-03fa-a5f7e4e60b98"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableolcyuhnl\u0027)",
- "odata.editLink": "Tables(\u0027testtableolcyuhnl\u0027)",
- "TableName": "testtableolcyuhnl"
+ "TableName": "testtableolcyuhnl",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-02600e3b0a142149891633388371ae50-80c6327f06e3644d-00",
+ "Request-Id": "00-b9a5375f44181d46bbd95ff25ea837da-999c56a40215fd46-00",
+ "traceparent": "00-b9a5375f44181d46bbd95ff25ea837da-999c56a40215fd46-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6461536105159c08374a883bde8a9be4",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:48:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -158,43 +139,36 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:39 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablechaqli77\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:48:47 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A48%3A47.0392840Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablechaqli77\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "6461536105159c08374a883bde8a9be4",
- "x-ms-request-id": "207580cd-b002-001b-0821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "64615361-0515-9c08-374a-883bde8a9be4"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablechaqli77\u0027)",
- "odata.editLink": "Tables(\u0027testtablechaqli77\u0027)",
- "TableName": "testtablechaqli77"
+ "TableName": "testtablechaqli77",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-cfc4489eab9aaf49a127bfb1c4cbdb1f-b55b092c78f4d540-00",
+ "Request-Id": "00-2243ad1d34f98f44ad2faf1acd0744cd-d04b0801bbb3c54d-00",
+ "traceparent": "00-2243ad1d34f98f44ad2faf1acd0744cd-d04b0801bbb3c54d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c94747d51d36eaf2a928122c40ae31fd",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:48:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -203,43 +177,36 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:39 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablesknqvd6v\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:48:51 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A48%3A51.1127560Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablesknqvd6v\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c94747d51d36eaf2a928122c40ae31fd",
- "x-ms-request-id": "207580de-b002-001b-1621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "c94747d5-1d36-eaf2-a928-122c40ae31fd"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablesknqvd6v\u0027)",
- "odata.editLink": "Tables(\u0027testtablesknqvd6v\u0027)",
- "TableName": "testtablesknqvd6v"
+ "TableName": "testtablesknqvd6v",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-088fc076d7f4164c98cc6680e4d671a2-c5f97f1716e9dc4f-00",
+ "Request-Id": "00-49a14ae518dabc40a52459dc0c7fff73-1f8b5f2c9fa44942-00",
+ "traceparent": "00-49a14ae518dabc40a52459dc0c7fff73-1f8b5f2c9fa44942-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "bcaaa5d77aefe08d6f9b8fcdbe3f6619",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:48:57 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -248,43 +215,36 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:39 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable4hutoffg\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:48:57 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A48%3A57.6380936Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable4hutoffg\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "bcaaa5d77aefe08d6f9b8fcdbe3f6619",
- "x-ms-request-id": "207580e7-b002-001b-1e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "bcaaa5d7-7aef-e08d-6f9b-8fcdbe3f6619"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable4hutoffg\u0027)",
- "odata.editLink": "Tables(\u0027testtable4hutoffg\u0027)",
- "TableName": "testtable4hutoffg"
+ "TableName": "testtable4hutoffg",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-75c8d77690e98c47bcaef9efe0da128a-5e6dafd9d81c0346-00",
+ "Request-Id": "00-ed3e0721121e424498457da81e500f7a-355c284cc8583e45-00",
+ "traceparent": "00-ed3e0721121e424498457da81e500f7a-355c284cc8583e45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "50e21f874ac006678d49f1917235fb2f",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:49:08 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -293,43 +253,36 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:39 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablejp94981y\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:49:08 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A49%3A08.2066952Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablejp94981y\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "50e21f874ac006678d49f1917235fb2f",
- "x-ms-request-id": "207580f9-b002-001b-2f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "50e21f87-4ac0-0667-8d49-f1917235fb2f"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablejp94981y\u0027)",
- "odata.editLink": "Tables(\u0027testtablejp94981y\u0027)",
- "TableName": "testtablejp94981y"
+ "TableName": "testtablejp94981y",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9d8503cf0bcd084d94cc56a5e9d66b2f-bedc7cb405bbad4d-00",
+ "Request-Id": "00-93e3c7f6c01c704eab356f7245c8e164-4787ccd285b1c74c-00",
+ "traceparent": "00-93e3c7f6c01c704eab356f7245c8e164-4787ccd285b1c74c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c042a7a2043d698600b434d0973c2024",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:49:20 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -338,43 +291,36 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:39 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablefeiq158t\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:49:19 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A49%3A20.0653320Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablefeiq158t\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c042a7a2043d698600b434d0973c2024",
- "x-ms-request-id": "20758107-b002-001b-3c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "c042a7a2-043d-6986-00b4-34d0973c2024"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablefeiq158t\u0027)",
- "odata.editLink": "Tables(\u0027testtablefeiq158t\u0027)",
- "TableName": "testtablefeiq158t"
+ "TableName": "testtablefeiq158t",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a88d6d5deb212d4a9db3dd797c790817-6c71ed076a92d746-00",
+ "Request-Id": "00-6c614ab5f47e0a46a920912348f82332-6c5f271a40e5544b-00",
+ "traceparent": "00-6c614ab5f47e0a46a920912348f82332-6c5f271a40e5544b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "451a62a200b124d6e030ad1908a6c889",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:49:33 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -383,43 +329,36 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:39 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtables8c36ink\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:49:33 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A49%3A33.3014536Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtables8c36ink\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "451a62a200b124d6e030ad1908a6c889",
- "x-ms-request-id": "20758117-b002-001b-4b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "451a62a2-00b1-24d6-e030-ad1908a6c889"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtables8c36ink\u0027)",
- "odata.editLink": "Tables(\u0027testtables8c36ink\u0027)",
- "TableName": "testtables8c36ink"
+ "TableName": "testtables8c36ink",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-cf4ae4195707ef4185e5dc2794ba8138-bb0597f9748cf44b-00",
+ "Request-Id": "00-33f9e8876912db49a1080145ff868d6d-ea8615a8d15a8146-00",
+ "traceparent": "00-33f9e8876912db49a1080145ff868d6d-ea8615a8d15a8146-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "966f9811ca23cd64001f1edae940b7ff",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:50:30 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -428,43 +367,36 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:40 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablejo4z6oug\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:50:30 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A50%3A30.6264072Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablejo4z6oug\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "966f9811ca23cd64001f1edae940b7ff",
- "x-ms-request-id": "20758120-b002-001b-5321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "966f9811-ca23-cd64-001f-1edae940b7ff"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablejo4z6oug\u0027)",
- "odata.editLink": "Tables(\u0027testtablejo4z6oug\u0027)",
- "TableName": "testtablejo4z6oug"
+ "TableName": "testtablejo4z6oug",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9106937a0f114148b836ae0a859285d3-2a38309d6a21c247-00",
+ "Request-Id": "00-1283f472b586204c90506b8e3a2efcda-6ff239d7a5fa824d-00",
+ "traceparent": "00-1283f472b586204c90506b8e3a2efcda-6ff239d7a5fa824d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c5b1b6c0e7447720cabc331990400016",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:50:33 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -473,588 +405,384 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:40 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablembr3p7tl\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:50:34 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A50%3A33.9285000Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablembr3p7tl\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c5b1b6c0e7447720cabc331990400016",
- "x-ms-request-id": "2075812a-b002-001b-5c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "c5b1b6c0-e744-7720-cabc-331990400016"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablembr3p7tl\u0027)",
- "odata.editLink": "Tables(\u0027testtablembr3p7tl\u0027)",
- "TableName": "testtablembr3p7tl"
+ "TableName": "testtablembr3p7tl",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
+ "Request-Id": "|814fa79e-41226ab8300eb2d8.",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e818dfcbee87829fd190e1f1392fce0a",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:50:43 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:40 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:50:43 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "e818dfcbee87829fd190e1f1392fce0a",
- "x-ms-request-id": "20758137-b002-001b-6721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "e818dfcb-ee87-829f-d190-e1f1392fce0a"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables",
"value": [
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable4hutoffg\u0027)",
- "odata.editLink": "Tables(\u0027testtable4hutoffg\u0027)",
- "TableName": "testtable4hutoffg"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable4ns9b5g3\u0027)",
- "odata.editLink": "Tables(\u0027testtable4ns9b5g3\u0027)",
- "TableName": "testtable4ns9b5g3"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable5iefecvu\u0027)",
- "odata.editLink": "Tables(\u0027testtable5iefecvu\u0027)",
- "TableName": "testtable5iefecvu"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable7psww12c\u0027)",
- "odata.editLink": "Tables(\u0027testtable7psww12c\u0027)",
- "TableName": "testtable7psww12c"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable9szyhhkm\u0027)",
- "odata.editLink": "Tables(\u0027testtable9szyhhkm\u0027)",
- "TableName": "testtable9szyhhkm"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable9txmuphm\u0027)",
- "odata.editLink": "Tables(\u0027testtable9txmuphm\u0027)",
- "TableName": "testtable9txmuphm"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableb8qgukae\u0027)",
- "odata.editLink": "Tables(\u0027testtableb8qgukae\u0027)",
- "TableName": "testtableb8qgukae"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablechaqli77\u0027)",
- "odata.editLink": "Tables(\u0027testtablechaqli77\u0027)",
- "TableName": "testtablechaqli77"
+ "TableName": "testtablesknqvd6v"
},
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabledxymqs21\u0027)",
- "odata.editLink": "Tables(\u0027testtabledxymqs21\u0027)",
- "TableName": "testtabledxymqs21"
+ "TableName": "testtables8c36ink"
},
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablefeiq158t\u0027)",
- "odata.editLink": "Tables(\u0027testtablefeiq158t\u0027)",
"TableName": "testtablefeiq158t"
},
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablefvgwmg7c\u0027)",
- "odata.editLink": "Tables(\u0027testtablefvgwmg7c\u0027)",
- "TableName": "testtablefvgwmg7c"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablejo4z6oug\u0027)",
- "odata.editLink": "Tables(\u0027testtablejo4z6oug\u0027)",
- "TableName": "testtablejo4z6oug"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablejp94981y\u0027)",
- "odata.editLink": "Tables(\u0027testtablejp94981y\u0027)",
"TableName": "testtablejp94981y"
},
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablekumj2pc7\u0027)",
- "odata.editLink": "Tables(\u0027testtablekumj2pc7\u0027)",
- "TableName": "testtablekumj2pc7"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablem4bhqtqv\u0027)",
- "odata.editLink": "Tables(\u0027testtablem4bhqtqv\u0027)",
- "TableName": "testtablem4bhqtqv"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablem4x0wesi\u0027)",
- "odata.editLink": "Tables(\u0027testtablem4x0wesi\u0027)",
- "TableName": "testtablem4x0wesi"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablem521w4i0\u0027)",
- "odata.editLink": "Tables(\u0027testtablem521w4i0\u0027)",
- "TableName": "testtablem521w4i0"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablembr3p7tl\u0027)",
- "odata.editLink": "Tables(\u0027testtablembr3p7tl\u0027)",
"TableName": "testtablembr3p7tl"
},
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableolcyuhnl\u0027)",
- "odata.editLink": "Tables(\u0027testtableolcyuhnl\u0027)",
- "TableName": "testtableolcyuhnl"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablepdprm1am\u0027)",
- "odata.editLink": "Tables(\u0027testtablepdprm1am\u0027)",
- "TableName": "testtablepdprm1am"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtables8c36ink\u0027)",
- "odata.editLink": "Tables(\u0027testtables8c36ink\u0027)",
- "TableName": "testtables8c36ink"
+ "TableName": "testtable4hutoffg"
},
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablesknqvd6v\u0027)",
- "odata.editLink": "Tables(\u0027testtablesknqvd6v\u0027)",
- "TableName": "testtablesknqvd6v"
+ "TableName": "testtablechaqli77"
},
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablev9pwhgv8\u0027)",
- "odata.editLink": "Tables(\u0027testtablev9pwhgv8\u0027)",
- "TableName": "testtablev9pwhgv8"
+ "TableName": "testtableolcyuhnl"
},
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablexvcatiga\u0027)",
- "odata.editLink": "Tables(\u0027testtablexvcatiga\u0027)",
- "TableName": "testtablexvcatiga"
+ "TableName": "testtablem521w4i0"
},
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablez4asskk8\u0027)",
- "odata.editLink": "Tables(\u0027testtablez4asskk8\u0027)",
- "TableName": "testtablez4asskk8"
+ "TableName": "testtablejo4z6oug"
},
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablezjkkt2i8\u0027)",
- "odata.editLink": "Tables(\u0027testtablezjkkt2i8\u0027)",
- "TableName": "testtablezjkkt2i8"
+ "TableName": "testtablem4x0wesi"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablem4x0wesi\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablem4x0wesi\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-97782749a4bef443815f471f0f64fe14-12e47d9799140947-00",
+ "Request-Id": "00-8a1088c5d730ff4aa7e9d45b9e65c1f6-13a5655d9e6f1043-00",
+ "traceparent": "00-8a1088c5d730ff4aa7e9d45b9e65c1f6-13a5655d9e6f1043-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6cd6e17c9f181989ffa60f2d0c9e6f9d",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:50:43 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:40 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "6cd6e17c9f181989ffa60f2d0c9e6f9d",
- "x-ms-request-id": "2075814b-b002-001b-7a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:50:43 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "6cd6e17c-9f18-1989-ffa6-0f2d0c9e6f9d"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableolcyuhnl\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableolcyuhnl\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-10f88e3716837d438426ce842ace78ba-12d42d385ed05644-00",
+ "Request-Id": "00-746c2adf56d2f5469808044d3a4cea86-9d9483642a6fca47-00",
+ "traceparent": "00-746c2adf56d2f5469808044d3a4cea86-9d9483642a6fca47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "af9cda0f34eed106172ef4b3062e3e9b",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:50:43 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:40 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "af9cda0f34eed106172ef4b3062e3e9b",
- "x-ms-request-id": "20758153-b002-001b-0221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:50:43 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "af9cda0f-34ee-d106-172e-f4b3062e3e9b"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablechaqli77\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablechaqli77\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-26c9fa52caa4f34a85537c628b108d9c-9c5be6ea8676554b-00",
+ "Request-Id": "00-164571953082074a94d3a001e4705856-e54a0da21601d646-00",
+ "traceparent": "00-164571953082074a94d3a001e4705856-e54a0da21601d646-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ae9d29ed93692cfd56ffe8e0de727632",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:50:44 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:40 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ae9d29ed93692cfd56ffe8e0de727632",
- "x-ms-request-id": "20758163-b002-001b-1121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:50:44 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "ae9d29ed-9369-2cfd-56ff-e8e0de727632"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablesknqvd6v\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablesknqvd6v\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-ec11dd6af60c08489b24d463d1d68d33-e171d3b3951d5f41-00",
+ "Request-Id": "00-194d220016200d4291600662889bbb1f-68f59c100e54cb40-00",
+ "traceparent": "00-194d220016200d4291600662889bbb1f-68f59c100e54cb40-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5fe244211f93471cda0455eaaad512d1",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:50:44 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:40 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "5fe244211f93471cda0455eaaad512d1",
- "x-ms-request-id": "2075816d-b002-001b-1b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:50:44 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "5fe24421-1f93-471c-da04-55eaaad512d1"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable4hutoffg\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable4hutoffg\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-3e3a737cf752de4db0c22ce4677cc4ab-8fe63799aad67d45-00",
+ "Request-Id": "00-54eab7a8bcdd0641b1e70203282dd2fc-5e5c415b901ca149-00",
+ "traceparent": "00-54eab7a8bcdd0641b1e70203282dd2fc-5e5c415b901ca149-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e33f7468c0017c33dd7058ef4b25f3a5",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:50:44 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:40 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "e33f7468c0017c33dd7058ef4b25f3a5",
- "x-ms-request-id": "20758174-b002-001b-2221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:50:44 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "e33f7468-c001-7c33-dd70-58ef4b25f3a5"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablejp94981y\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablejp94981y\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-66bab0539cb7ed4a92bb6c8508468253-34362e724d2aca4d-00",
+ "Request-Id": "00-28e6d5c65d58424486d0b0b89ce5b783-f625094a41f1a045-00",
+ "traceparent": "00-28e6d5c65d58424486d0b0b89ce5b783-f625094a41f1a045-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c292c1b7de4cce070c55d3643d138180",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:50:45 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:40 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c292c1b7de4cce070c55d3643d138180",
- "x-ms-request-id": "20758179-b002-001b-2721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:50:45 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "c292c1b7-de4c-ce07-0c55-d3643d138180"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablefeiq158t\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablefeiq158t\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-dfd2f4f73283a84aa7e233fbeb299862-e7ed00126ed31c45-00",
+ "Request-Id": "00-e4ca23707fbcfd45b7eea4817a251b1a-468b009f0c72424e-00",
+ "traceparent": "00-e4ca23707fbcfd45b7eea4817a251b1a-468b009f0c72424e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6a7817ec9333603110658223c62dfbb4",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:50:45 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:40 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "6a7817ec9333603110658223c62dfbb4",
- "x-ms-request-id": "20758181-b002-001b-2e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:50:45 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "6a7817ec-9333-6031-1065-8223c62dfbb4"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtables8c36ink\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtables8c36ink\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-32617e44a8a489418868efa915bd4f8b-e2f420d6a221db4a-00",
+ "Request-Id": "00-e274f5d40d395a41afa0eb3c709244e5-d54a60f242cae749-00",
+ "traceparent": "00-e274f5d40d395a41afa0eb3c709244e5-d54a60f242cae749-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e932b01150438a846c70d6abeccf3ec9",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:50:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:40 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "e932b01150438a846c70d6abeccf3ec9",
- "x-ms-request-id": "20758187-b002-001b-3421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:50:45 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "e932b011-5043-8a84-6c70-d6abeccf3ec9"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablejo4z6oug\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablejo4z6oug\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-e0299831c76efa46a29606b8afaddd41-01faf8dfcf48b74b-00",
+ "Request-Id": "00-9f331dd9dc85eb49a288604e4c798363-d38471a9c311884a-00",
+ "traceparent": "00-9f331dd9dc85eb49a288604e4c798363-d38471a9c311884a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3402d7ee89ad24718f31b1e65ce408df",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:50:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:40 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "3402d7ee89ad24718f31b1e65ce408df",
- "x-ms-request-id": "20758190-b002-001b-3b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:50:46 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "3402d7ee-89ad-2471-8f31-b1e65ce408df"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablembr3p7tl\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablembr3p7tl\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-e2e6208fcf0b834788e2937249dd3d34-fd821e21fa67524f-00",
+ "Request-Id": "00-180905027e04b84394bd8f41c7dc5895-8208ddbdcf78ba45-00",
+ "traceparent": "00-180905027e04b84394bd8f41c7dc5895-8208ddbdcf78ba45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8d521f5998e19b3d92edfdc2bc857340",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:50:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:40 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "8d521f5998e19b3d92edfdc2bc857340",
- "x-ms-request-id": "20758196-b002-001b-4121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:50:46 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "8d521f59-98e1-9b3d-92ed-fdc2bc857340"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablem521w4i0\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablem521w4i0\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-3844146f370d0b44893b11863fbe3dd6-bcd5527e4933ba45-00",
+ "Request-Id": "00-830de7214c11cf408173e0f34b5a7a63-5a626d9a7e9ddb42-00",
+ "traceparent": "00-830de7214c11cf408173e0f34b5a7a63-5a626d9a7e9ddb42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ee34b827c72a88063e0d59119e9d2d87",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:41 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:50:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:40 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ee34b827c72a88063e0d59119e9d2d87",
- "x-ms-request-id": "2075819e-b002-001b-4921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:50:49 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "ee34b827-c72a-8806-3e0d-59119e9d2d87"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "522564612",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetTablesReturnsTablesWithFilter.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetTablesReturnsTablesWithFilter.json
index 8bb634139cfe..7786b60c224f 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetTablesReturnsTablesWithFilter.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetTablesReturnsTablesWithFilter.json
@@ -1,20 +1,22 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-584a2b25de84c34a937fce9ebdf59875-4ca89eebb235fc45-00",
+ "Request-Id": "00-9e66c7014172564faaffe272bb43b608-ed340d7bb047b04c-00",
+ "traceparent": "00-9e66c7014172564faaffe272bb43b608-ed340d7bb047b04c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "20ecc2f87a2bfe34684428926a3892d3",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:49 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:45:31 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +25,36 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:49 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablez4m4nmw4\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:45:32 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A45%3A32.6881800Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablez4m4nmw4\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "20ecc2f87a2bfe34684428926a3892d3",
- "x-ms-request-id": "20755bcb-b002-001b-1121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "20ecc2f8-7a2b-fe34-6844-28926a3892d3"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablez4m4nmw4\u0027)",
- "odata.editLink": "Tables(\u0027testtablez4m4nmw4\u0027)",
- "TableName": "testtablez4m4nmw4"
+ "TableName": "testtablez4m4nmw4",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-0d897328d5b0d5409a1a123b731f1f19-8533d4a4f9b9ff46-00",
+ "Request-Id": "00-b0bdcdbe80517f45b31b0a37831c2faa-c01e29778a55c84a-00",
+ "traceparent": "00-b0bdcdbe80517f45b31b0a37831c2faa-c01e29778a55c84a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3cbed85f15b3bd6ea24c5395f7d4446c",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:49 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:45:34 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -68,43 +63,36 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:49 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablew4hcdmmb\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:45:34 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A45%3A34.3866888Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablew4hcdmmb\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "3cbed85f15b3bd6ea24c5395f7d4446c",
- "x-ms-request-id": "20755bda-b002-001b-1e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "3cbed85f-15b3-bd6e-a24c-5395f7d4446c"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablew4hcdmmb\u0027)",
- "odata.editLink": "Tables(\u0027testtablew4hcdmmb\u0027)",
- "TableName": "testtablew4hcdmmb"
+ "TableName": "testtablew4hcdmmb",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-deb4e91d97ac34459c82bee7de263a26-9e5179afd0474d41-00",
+ "Request-Id": "00-bad00a0f275631499dfe1141a33ddb7b-93189140d394e048-00",
+ "traceparent": "00-bad00a0f275631499dfe1141a33ddb7b-93189140d394e048-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e2df830f524d68fd559ec053bcf74a52",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:49 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:45:38 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -113,43 +101,36 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:49 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable5sqcn139\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:45:38 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A45%3A38.5082888Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable5sqcn139\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "e2df830f524d68fd559ec053bcf74a52",
- "x-ms-request-id": "20755be7-b002-001b-2a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "e2df830f-524d-68fd-559e-c053bcf74a52"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable5sqcn139\u0027)",
- "odata.editLink": "Tables(\u0027testtable5sqcn139\u0027)",
- "TableName": "testtable5sqcn139"
+ "TableName": "testtable5sqcn139",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d8a57dcfd965a643ad080121bd06d2dc-b7d96ffb20c91543-00",
+ "Request-Id": "00-87f2b162f6114a46aa4b43a0db39c0b4-932c6fce83ffe344-00",
+ "traceparent": "00-87f2b162f6114a46aa4b43a0db39c0b4-932c6fce83ffe344-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e916807c408ae596dc772d30368c7050",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:49 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:45:42 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -158,43 +139,36 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:49 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablenef9vtzu\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:45:42 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A45%3A42.2050312Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablenef9vtzu\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "e916807c408ae596dc772d30368c7050",
- "x-ms-request-id": "20755bf2-b002-001b-3321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "e916807c-408a-e596-dc77-2d30368c7050"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablenef9vtzu\u0027)",
- "odata.editLink": "Tables(\u0027testtablenef9vtzu\u0027)",
- "TableName": "testtablenef9vtzu"
+ "TableName": "testtablenef9vtzu",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-270871a1bb67af4fb510102550fb4fc4-c76092fd1258e14f-00",
+ "Request-Id": "00-d64e84000f76de4ab09fff0c26caceab-342d79240bcf7247-00",
+ "traceparent": "00-d64e84000f76de4ab09fff0c26caceab-342d79240bcf7247-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4c57b143dd8a1361a7e765cc3c14dd14",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:49 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:45:45 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -203,43 +177,36 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:49 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablermvrk8eb\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:45:45 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A45%3A45.3120520Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablermvrk8eb\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "4c57b143dd8a1361a7e765cc3c14dd14",
- "x-ms-request-id": "20755bf8-b002-001b-3821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "4c57b143-dd8a-1361-a7e7-65cc3c14dd14"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablermvrk8eb\u0027)",
- "odata.editLink": "Tables(\u0027testtablermvrk8eb\u0027)",
- "TableName": "testtablermvrk8eb"
+ "TableName": "testtablermvrk8eb",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-27e12a9eb407cb4e9c5b365f137b5115-8d5498ef34e7f146-00",
+ "Request-Id": "00-6f312d8455687148872ba50ee08b7721-f21407f2e7c4b24c-00",
+ "traceparent": "00-6f312d8455687148872ba50ee08b7721-f21407f2e7c4b24c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "fbcf9efa82bb8be4d0a7a5d9e84a5bfe",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:45:48 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -248,43 +215,36 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:49 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabler2xlwmkf\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:45:48 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A45%3A48.1610248Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtabler2xlwmkf\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "fbcf9efa82bb8be4d0a7a5d9e84a5bfe",
- "x-ms-request-id": "20755c02-b002-001b-4121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "fbcf9efa-82bb-8be4-d0a7-a5d9e84a5bfe"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabler2xlwmkf\u0027)",
- "odata.editLink": "Tables(\u0027testtabler2xlwmkf\u0027)",
- "TableName": "testtabler2xlwmkf"
+ "TableName": "testtabler2xlwmkf",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-3ba278fde74d51469d347286cc45260d-44c6503beeb58840-00",
+ "Request-Id": "00-a2a739b57adc904191405f3c96d59501-b73ef705d5a9c042-00",
+ "traceparent": "00-a2a739b57adc904191405f3c96d59501-b73ef705d5a9c042-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "38522b0c6a7a29a4950e51eb0e665725",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:45:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -293,43 +253,36 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:49 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable3dezrv9l\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:45:50 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A45%3A51.0047752Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable3dezrv9l\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "38522b0c6a7a29a4950e51eb0e665725",
- "x-ms-request-id": "20755c0f-b002-001b-4d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "38522b0c-6a7a-29a4-950e-51eb0e665725"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable3dezrv9l\u0027)",
- "odata.editLink": "Tables(\u0027testtable3dezrv9l\u0027)",
- "TableName": "testtable3dezrv9l"
+ "TableName": "testtable3dezrv9l",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-54e7c1faaa940e4ea35f3482a21c1d61-260606df15e1db4a-00",
+ "Request-Id": "00-20c124d29d2c9e47baa0075e6ded4975-81be97f68a772f42-00",
+ "traceparent": "00-20c124d29d2c9e47baa0075e6ded4975-81be97f68a772f42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b02f787fcd9157228a95ee9030ab1165",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:45:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -338,43 +291,36 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:49 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablem5fgk1id\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:45:54 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A45%3A53.9110920Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablem5fgk1id\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "b02f787fcd9157228a95ee9030ab1165",
- "x-ms-request-id": "20755c16-b002-001b-5321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "b02f787f-cd91-5722-8a95-ee9030ab1165"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablem5fgk1id\u0027)",
- "odata.editLink": "Tables(\u0027testtablem5fgk1id\u0027)",
- "TableName": "testtablem5fgk1id"
+ "TableName": "testtablem5fgk1id",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-07436aa6bfd77f469f2f36785d1e82b7-e68d1e72c913324b-00",
+ "Request-Id": "00-03c9a82fd5e5a74fb5697d663c41d85f-468b97ec9489ca48-00",
+ "traceparent": "00-03c9a82fd5e5a74fb5697d663c41d85f-468b97ec9489ca48-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4c4b64c27ea707ccff94b9023bf398c7",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:45:56 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -383,43 +329,36 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:49 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable1qsabtky\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:45:57 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A45%3A56.7510536Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable1qsabtky\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "4c4b64c27ea707ccff94b9023bf398c7",
- "x-ms-request-id": "20755c1f-b002-001b-5b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "4c4b64c2-7ea7-07cc-ff94-b9023bf398c7"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable1qsabtky\u0027)",
- "odata.editLink": "Tables(\u0027testtable1qsabtky\u0027)",
- "TableName": "testtable1qsabtky"
+ "TableName": "testtable1qsabtky",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e19d53e5f85af94b99e29ee707673264-80d9a6200f408e41-00",
+ "Request-Id": "00-c49d8e35625ec44c8b0912ebbf10c519-bc5c833489291143-00",
+ "traceparent": "00-c49d8e35625ec44c8b0912ebbf10c519-bc5c833489291143-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f19296c852c10fc4877fed2d82d6af0b",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:45:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -428,43 +367,36 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:49 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable5aafod4u\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:45:59 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A45%3A59.6307464Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable5aafod4u\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "f19296c852c10fc4877fed2d82d6af0b",
- "x-ms-request-id": "20755c2b-b002-001b-6621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "f19296c8-52c1-0fc4-877f-ed2d82d6af0b"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable5aafod4u\u0027)",
- "odata.editLink": "Tables(\u0027testtable5aafod4u\u0027)",
- "TableName": "testtable5aafod4u"
+ "TableName": "testtable5aafod4u",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-daec7c08d258904eb344ca12dd00af5a-5dead6bbe6ea6a42-00",
+ "Request-Id": "00-0013309fbdc34f4fb0410db511868242-73f5bf5d19934841-00",
+ "traceparent": "00-0013309fbdc34f4fb0410db511868242-73f5bf5d19934841-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ffee7be4770efb386ff38410ecda46ad",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:46:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -473,438 +405,354 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:49 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablef8slzkn5\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:46:01 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A46%3A01.1976712Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablef8slzkn5\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ffee7be4770efb386ff38410ecda46ad",
- "x-ms-request-id": "20755c36-b002-001b-6e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "ffee7be4-770e-fb38-6ff3-8410ecda46ad"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablef8slzkn5\u0027)",
- "odata.editLink": "Tables(\u0027testtablef8slzkn5\u0027)",
- "TableName": "testtablef8slzkn5"
+ "TableName": "testtablef8slzkn5",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=TableName%20eq%20%27testtablez4m4nmw4%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=TableName%20eq%20%27testtablez4m4nmw4%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
+ "Request-Id": "|dc779927-46850bd21900c7c4.",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "bb7aa9d06b0615454a55b090365964b9",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:46:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:49 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:46:02 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "bb7aa9d06b0615454a55b090365964b9",
- "x-ms-request-id": "20755c43-b002-001b-7a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "bb7aa9d0-6b06-1545-4a55-b090365964b9"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables",
"value": [
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablez4m4nmw4\u0027)",
- "odata.editLink": "Tables(\u0027testtablez4m4nmw4\u0027)",
"TableName": "testtablez4m4nmw4"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablew4hcdmmb\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablew4hcdmmb\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-d459fef2ee1f804d91eed1db87dfd604-c13cbd7c0ef25d4e-00",
+ "Request-Id": "00-e2b437ceea36ec4fb104bbed5c7468fe-d78ff4cc6df31642-00",
+ "traceparent": "00-e2b437ceea36ec4fb104bbed5c7468fe-d78ff4cc6df31642-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "450d836cc564100147f1bd8e519e1fee",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:46:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:49 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "450d836cc564100147f1bd8e519e1fee",
- "x-ms-request-id": "20755c50-b002-001b-0421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:46:02 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "450d836c-c564-1001-47f1-bd8e519e1fee"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable5sqcn139\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable5sqcn139\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-b530b773023d68488039c27a925ba028-4aad781e49efed48-00",
+ "Request-Id": "00-6289cbe7bf588d4e8544f13a575335ff-e7099ae3862f1644-00",
+ "traceparent": "00-6289cbe7bf588d4e8544f13a575335ff-e7099ae3862f1644-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "49cae3a06e94790835d8b4b9c7a7c515",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:46:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:49 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "49cae3a06e94790835d8b4b9c7a7c515",
- "x-ms-request-id": "20755c60-b002-001b-1221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:46:02 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "49cae3a0-6e94-7908-35d8-b4b9c7a7c515"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablenef9vtzu\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablenef9vtzu\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-9e28ea58e668d84988578edf376ca012-540f25a107aa7b4e-00",
+ "Request-Id": "00-db40e142cd5e3d458c1a8e15de7537ae-2de3739d41f73c43-00",
+ "traceparent": "00-db40e142cd5e3d458c1a8e15de7537ae-2de3739d41f73c43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "68a4cb8e00cc0b49a7697314adb7c4ab",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:46:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:49 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "68a4cb8e00cc0b49a7697314adb7c4ab",
- "x-ms-request-id": "20755c6c-b002-001b-1d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:46:03 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "68a4cb8e-00cc-0b49-a769-7314adb7c4ab"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablermvrk8eb\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablermvrk8eb\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-309152528e499f4f816ebb29c214221a-3ac487b8404ffb4b-00",
+ "Request-Id": "00-83ba3caa9b4f7f4da1b57062fd5f06e2-20637b695ed50c45-00",
+ "traceparent": "00-83ba3caa9b4f7f4da1b57062fd5f06e2-20637b695ed50c45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "53f0c1351b8ffd247a940f8b1047499f",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:46:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:49 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "53f0c1351b8ffd247a940f8b1047499f",
- "x-ms-request-id": "20755c73-b002-001b-2421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:46:03 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "53f0c135-1b8f-fd24-7a94-0f8b1047499f"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabler2xlwmkf\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtabler2xlwmkf\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-b039dcdcbbf5ea4b8e7acf7704950354-e7c5d1a35061dc47-00",
+ "Request-Id": "00-fbc0f5a9822ded46802fff251bd09d4d-7e443667268f7b49-00",
+ "traceparent": "00-fbc0f5a9822ded46802fff251bd09d4d-7e443667268f7b49-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "86ffa82cb6fa9f2299bea12bfbf4cc7e",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:46:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:49 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "86ffa82cb6fa9f2299bea12bfbf4cc7e",
- "x-ms-request-id": "20755c7a-b002-001b-2b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:46:03 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "86ffa82c-b6fa-9f22-99be-a12bfbf4cc7e"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable3dezrv9l\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable3dezrv9l\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-8ca34b8227d22a46950074400cfcd7ed-79c4a2734ea97649-00",
+ "Request-Id": "00-5667b7b1653eb24bb6ccf2158062b0bb-dd8b757bf2527443-00",
+ "traceparent": "00-5667b7b1653eb24bb6ccf2158062b0bb-dd8b757bf2527443-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0684091471b77386a7a7ed38f1bdfb60",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:46:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:49 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "0684091471b77386a7a7ed38f1bdfb60",
- "x-ms-request-id": "20755c80-b002-001b-2f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:46:04 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "06840914-71b7-7386-a7a7-ed38f1bdfb60"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablem5fgk1id\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablem5fgk1id\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-4f423ff422694f4bafc4154eb153dc69-18957c802eff0e48-00",
+ "Request-Id": "00-6a73e968019697478b3efe57c9496057-59d9f73976583b4b-00",
+ "traceparent": "00-6a73e968019697478b3efe57c9496057-59d9f73976583b4b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "04e7d4203db77eb19e50b9d079f90286",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:46:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:50 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "04e7d4203db77eb19e50b9d079f90286",
- "x-ms-request-id": "20755c86-b002-001b-3421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:46:04 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "04e7d420-3db7-7eb1-9e50-b9d079f90286"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable1qsabtky\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable1qsabtky\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-db337f8232f3f842a12a7eef0da1f937-909b9874f0c0e449-00",
+ "Request-Id": "00-6811ae21ddd79747900185fd66411c80-bebec1ad1524f741-00",
+ "traceparent": "00-6811ae21ddd79747900185fd66411c80-bebec1ad1524f741-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "067791c843c3bae8218cdf52c8eaaedc",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:46:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:50 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "067791c843c3bae8218cdf52c8eaaedc",
- "x-ms-request-id": "20755c94-b002-001b-3f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:46:04 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "067791c8-43c3-bae8-218c-df52c8eaaedc"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable5aafod4u\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable5aafod4u\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-5b8a69e7757d7f4c90f2192e0040776d-2ce8d223cc572d46-00",
+ "Request-Id": "00-3b4e6f42eaab55478271e288ecf9817e-4c4ba905be5d9e4a-00",
+ "traceparent": "00-3b4e6f42eaab55478271e288ecf9817e-4c4ba905be5d9e4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "260a41c2c70cd6c758056767b8b5f9ad",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:46:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:50 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "260a41c2c70cd6c758056767b8b5f9ad",
- "x-ms-request-id": "20755c9a-b002-001b-4421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:46:05 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "260a41c2-c70c-d6c7-5805-6767b8b5f9ad"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablef8slzkn5\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablef8slzkn5\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-4860b244d3a51946884a4fea3ac37a48-bdc8d26dfea31c4a-00",
+ "Request-Id": "00-d6a9f169ce8c86488b19cf30a72eb5cb-9c3e77deaaa33145-00",
+ "traceparent": "00-d6a9f169ce8c86488b19cf30a72eb5cb-9c3e77deaaa33145-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5f6f67a5f546dc9cec2ce32b5d5eb5b4",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:46:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:50 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "5f6f67a5f546dc9cec2ce32b5d5eb5b4",
- "x-ms-request-id": "20755c9d-b002-001b-4721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:46:05 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "5f6f67a5-f546-dc9c-ec2c-e32b5d5eb5b4"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablez4m4nmw4\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablez4m4nmw4\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-5f3f6cfb2ebe834d88f773815ede43cb-2e1b6468a89d114d-00",
+ "Request-Id": "00-7bd9fffdb1966844aa176a2eb5c57b12-5523a1eaf2db7a49-00",
+ "traceparent": "00-7bd9fffdb1966844aa176a2eb5c57b12-5523a1eaf2db7a49-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "380ddda1dbee007acaa0aebedb80026b",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:46:10 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:50 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "380ddda1dbee007acaa0aebedb80026b",
- "x-ms-request-id": "20755ca6-b002-001b-4e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:46:11 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "380ddda1-dbee-007a-caa0-aebedb80026b"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "439959431",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetTablesReturnsTablesWithFilterAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetTablesReturnsTablesWithFilterAsync.json
index cd4412188966..a84b7cee9a78 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetTablesReturnsTablesWithFilterAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/GetTablesReturnsTablesWithFilterAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-fcc14e443dc24e469af8f9087a8945fe-8a68f77d007a0d4b-00",
+ "traceparent": "00-44bb41a5dd60bb48ab6e5f0cb0a47eaa-24e2aade6279f34f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f31cde41447ee64a6ed22d50e917bfa8",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:38 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:58:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,43 +24,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:38 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableyd57teqd\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:58:58 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A58%3A59.1688712Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableyd57teqd\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "f31cde41447ee64a6ed22d50e917bfa8",
- "x-ms-request-id": "20757f6f-b002-001b-5021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "f31cde41-447e-e64a-6ed2-2d50e917bfa8"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableyd57teqd\u0027)",
- "odata.editLink": "Tables(\u0027testtableyd57teqd\u0027)",
- "TableName": "testtableyd57teqd"
+ "TableName": "testtableyd57teqd",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8b8abf0f447e494d84bb2e45a927bb60-ff049813f19d504c-00",
+ "traceparent": "00-c82ebbf1d101734aa3b386f4a896d685-d2a9d64e9539dc45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "53e82d4ee04d815b159505cccd7ed739",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:38 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:58:59 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -68,43 +61,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:38 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablexbcla30h\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:58:58 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A58%3A59.5980296Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablexbcla30h\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "53e82d4ee04d815b159505cccd7ed739",
- "x-ms-request-id": "20757f72-b002-001b-5221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "53e82d4e-e04d-815b-1595-05cccd7ed739"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablexbcla30h\u0027)",
- "odata.editLink": "Tables(\u0027testtablexbcla30h\u0027)",
- "TableName": "testtablexbcla30h"
+ "TableName": "testtablexbcla30h",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9bc4c4ddf62438478e4918efa51f4157-fcf2dc4e81bc3d42-00",
+ "traceparent": "00-2cc18b680404514da1b512b8d4ff48d0-3610db0b3114864c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f364d10927509e136f05a5505cf7998d",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:38 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:59:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -113,43 +98,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:38 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable7tnk657v\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:59:00 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A59%3A00.0135688Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable7tnk657v\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "f364d10927509e136f05a5505cf7998d",
- "x-ms-request-id": "20757f7a-b002-001b-5921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "f364d109-2750-9e13-6f05-a5505cf7998d"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable7tnk657v\u0027)",
- "odata.editLink": "Tables(\u0027testtable7tnk657v\u0027)",
- "TableName": "testtable7tnk657v"
+ "TableName": "testtable7tnk657v",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-308d0b5afd2fb9429875c20f0effa234-a9d0a5273bb24148-00",
+ "traceparent": "00-e51a9717e254d64aa5e3c56f7d0fbfb8-32b666095eebed43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "30dba083f874957c2e91497b7c6831ee",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:38 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:59:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -158,43 +135,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:38 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable1y1bk28e\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:59:00 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A59%3A00.4513288Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable1y1bk28e\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "30dba083f874957c2e91497b7c6831ee",
- "x-ms-request-id": "20757f82-b002-001b-6021-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "30dba083-f874-957c-2e91-497b7c6831ee"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable1y1bk28e\u0027)",
- "odata.editLink": "Tables(\u0027testtable1y1bk28e\u0027)",
- "TableName": "testtable1y1bk28e"
+ "TableName": "testtable1y1bk28e",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-0988395df41f29499d93ea92d67e5d16-2238a9ac3fa22e46-00",
+ "traceparent": "00-c54c7c53c6e37246a2f8f6c0ca4cdfc9-e226095cb6b62c4c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "efffa1e7aa7e1645f6a26faf4be22a77",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:38 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:59:00 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -203,43 +172,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:38 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableyc1nmu3t\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:59:00 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A59%3A00.8917512Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableyc1nmu3t\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "efffa1e7aa7e1645f6a26faf4be22a77",
- "x-ms-request-id": "20757f85-b002-001b-6221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "efffa1e7-aa7e-1645-f6a2-6faf4be22a77"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableyc1nmu3t\u0027)",
- "odata.editLink": "Tables(\u0027testtableyc1nmu3t\u0027)",
- "TableName": "testtableyc1nmu3t"
+ "TableName": "testtableyc1nmu3t",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d6132c5f193569449ce1122f57c23f1d-15c3fe1ed7243041-00",
+ "traceparent": "00-1e5128eed296cd4a96906aa66d9262b4-de85d9c4f6e81942-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "aad14c791396fde8c44249d3f88d1783",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:38 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:59:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -248,43 +209,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:38 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableqrtpc5yl\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:59:01 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A59%3A01.3069832Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableqrtpc5yl\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "aad14c791396fde8c44249d3f88d1783",
- "x-ms-request-id": "20757f8c-b002-001b-6821-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "aad14c79-1396-fde8-c442-49d3f88d1783"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableqrtpc5yl\u0027)",
- "odata.editLink": "Tables(\u0027testtableqrtpc5yl\u0027)",
- "TableName": "testtableqrtpc5yl"
+ "TableName": "testtableqrtpc5yl",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-5659421a705acc42be20a5d35b8367ea-3a59afa5a299d242-00",
+ "traceparent": "00-9df202b38687d04e9e097bcb930b1761-a4ad8328a48c5743-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c93de53c1264c9ea90f17531d99b80e3",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:38 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:59:01 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -293,43 +246,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:38 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablevostswnd\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:59:01 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A59%3A01.7968648Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablevostswnd\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c93de53c1264c9ea90f17531d99b80e3",
- "x-ms-request-id": "20757f92-b002-001b-6d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "c93de53c-1264-c9ea-90f1-7531d99b80e3"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablevostswnd\u0027)",
- "odata.editLink": "Tables(\u0027testtablevostswnd\u0027)",
- "TableName": "testtablevostswnd"
+ "TableName": "testtablevostswnd",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-3c4582a4bece4e4dae43bffca99facde-e253f09f8209b045-00",
+ "traceparent": "00-df0a698c118f3847abbc8489d609d46d-4813f59ba9f50548-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7b7d9ff73699f715aa316db0d51e98b1",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:38 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:59:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -338,43 +283,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:38 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablen7a6p4po\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:59:01 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A59%3A02.2651400Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablen7a6p4po\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "7b7d9ff73699f715aa316db0d51e98b1",
- "x-ms-request-id": "20757f97-b002-001b-7121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "7b7d9ff7-3699-f715-aa31-6db0d51e98b1"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablen7a6p4po\u0027)",
- "odata.editLink": "Tables(\u0027testtablen7a6p4po\u0027)",
- "TableName": "testtablen7a6p4po"
+ "TableName": "testtablen7a6p4po",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-0689d45e0c4d7340b746cc8de46ac8de-e0594cb4c8dbb043-00",
+ "traceparent": "00-7fb0d3f0ab379c4fbba03c15269693f7-bf3a7c8eba42a64b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8521a1b19997e5066641d1c4946e305a",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:59:02 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -383,43 +320,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:38 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableozez0d6s\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:59:03 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A59%3A02.7478536Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableozez0d6s\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "8521a1b19997e5066641d1c4946e305a",
- "x-ms-request-id": "20757fa2-b002-001b-7a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "8521a1b1-9997-e506-6641-d1c4946e305a"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableozez0d6s\u0027)",
- "odata.editLink": "Tables(\u0027testtableozez0d6s\u0027)",
- "TableName": "testtableozez0d6s"
+ "TableName": "testtableozez0d6s",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-685f143c5d884142bab8048bf1e77a77-e1da2b2f9f31dd43-00",
+ "traceparent": "00-82bad004ab9b6143a2d47465e508e562-801985e895a6e34c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "19b039d9761311e4f5cccaf814905f10",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:59:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -428,43 +357,35 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:38 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablepahkxktq\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:59:03 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A59%3A03.2090632Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablepahkxktq\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "19b039d9761311e4f5cccaf814905f10",
- "x-ms-request-id": "20757fb4-b002-001b-0721-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "19b039d9-7613-11e4-f5cc-caf814905f10"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablepahkxktq\u0027)",
- "odata.editLink": "Tables(\u0027testtablepahkxktq\u0027)",
- "TableName": "testtablepahkxktq"
+ "TableName": "testtablepahkxktq",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-5bb7c9af9ab21a4796c8c0d797493f0a-b0320507170bb94d-00",
+ "traceparent": "00-da0759646a653c4189ca5b2f1a250110-a04865f6004adb42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "992ce84f015ee1839386ab5ee8ecd2f0",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:59:03 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -473,438 +394,342 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:38 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablevrxf9chv\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:59:03 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A59%3A03.6677128Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablevrxf9chv\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "992ce84f015ee1839386ab5ee8ecd2f0",
- "x-ms-request-id": "20757fb9-b002-001b-0a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "992ce84f-015e-e183-9386-ab5ee8ecd2f0"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablevrxf9chv\u0027)",
- "odata.editLink": "Tables(\u0027testtablevrxf9chv\u0027)",
- "TableName": "testtablevrxf9chv"
+ "TableName": "testtablevrxf9chv",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=TableName%20eq%20%27testtableyd57teqd%27",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=TableName%20eq%20%27testtableyd57teqd%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c8cfc05c38a44b451e767da686794d05",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:59:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:38 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:59:04 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c8cfc05c38a44b451e767da686794d05",
- "x-ms-request-id": "20757fbd-b002-001b-0d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "c8cfc05c-38a4-4b45-1e76-7da686794d05"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables",
"value": [
{
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableyd57teqd\u0027)",
- "odata.editLink": "Tables(\u0027testtableyd57teqd\u0027)",
"TableName": "testtableyd57teqd"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablexbcla30h\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablexbcla30h\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-fd324edba5985c43a983d9326747f26a-adb53d1fff18874a-00",
+ "traceparent": "00-94dbdfc60c73f143b160ca2c1437771f-ebee3253d69ff244-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2acac61c4a4af3b248e8648ee401273d",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:59:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:38 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "2acac61c4a4af3b248e8648ee401273d",
- "x-ms-request-id": "20757fc1-b002-001b-1121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:59:04 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "2acac61c-4a4a-f3b2-48e8-648ee401273d"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable7tnk657v\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable7tnk657v\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-6d70202831b0164aa31c572ca1187a9f-1ef3ab2bd82aac42-00",
+ "traceparent": "00-6049db49d789844b8da37107e4bb7dd2-a7952fc9ccba3948-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8c3759b555041744a3e17be883dd5a1a",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:59:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:38 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "8c3759b555041744a3e17be883dd5a1a",
- "x-ms-request-id": "20757fcc-b002-001b-1b21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:59:04 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "8c3759b5-5504-1744-a3e1-7be883dd5a1a"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable1y1bk28e\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtable1y1bk28e\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-bd03628cdba2f54ab6de220afb054b37-85d738a459ed8446-00",
+ "traceparent": "00-6496b19666b74b46bee71360fbe06b2d-37ccf08b5c88e64f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2242a539a72211a50ddc7fbbd3b6661c",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:59:04 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:38 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "2242a539a72211a50ddc7fbbd3b6661c",
- "x-ms-request-id": "20757fd4-b002-001b-2321-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:59:04 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "2242a539-a722-11a5-0ddc-7fbbd3b6661c"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableyc1nmu3t\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableyc1nmu3t\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-fd84284ddefe4f4f8a6257414666a032-c566718b77c5d840-00",
+ "traceparent": "00-d06362b3bf879248bfc53de557d138bd-7c9045c74b59fc40-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2df0404ec042c70181b28769cfca6f6a",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:59:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:38 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "2df0404ec042c70181b28769cfca6f6a",
- "x-ms-request-id": "20757fde-b002-001b-2c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:59:05 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "2df0404e-c042-c701-81b2-8769cfca6f6a"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableqrtpc5yl\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableqrtpc5yl\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-700562cef41b774991579abe492b3e78-d8058ea38da5a045-00",
+ "traceparent": "00-06b9a86613bd664fbbce66564f2a4758-cdc02cad8ccda741-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3e55498e05bf0d1ab3257f28d58943ec",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:59:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:38 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "3e55498e05bf0d1ab3257f28d58943ec",
- "x-ms-request-id": "20757fef-b002-001b-3921-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:59:05 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "3e55498e-05bf-0d1a-b325-7f28d58943ec"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablevostswnd\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablevostswnd\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-24b9ef0b667df14780f4d3562c75c43c-29d1fce03430fb45-00",
+ "traceparent": "00-1ac5eac72f84d541b255f0fd0d2a167a-d5445e5a11fc2543-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "43995e7a2dec78d8a47ba070203c4242",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:59:05 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:38 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "43995e7a2dec78d8a47ba070203c4242",
- "x-ms-request-id": "20757ff7-b002-001b-4121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:59:05 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "43995e7a-2dec-78d8-a47b-a070203c4242"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablen7a6p4po\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablen7a6p4po\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-2a45e8646f5ebc428f853fc1fd0e7a93-dc119513fdbbaf43-00",
+ "traceparent": "00-d03c24150b01b9428b581de870ed2170-57120c454682c744-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "892d146c2761485d25e3791c41d9f1f8",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:59:06 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:38 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "892d146c2761485d25e3791c41d9f1f8",
- "x-ms-request-id": "20757ffc-b002-001b-4621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:59:05 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "892d146c-2761-485d-25e3-791c41d9f1f8"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableozez0d6s\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableozez0d6s\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-b9b1a6a7cb5bdd43b208bcc130963a73-0c7cf2f9269a2d4b-00",
+ "traceparent": "00-8b907bf9ec17d642abd03969e9f1f85e-76c8eb38098fd44e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "70ef9a6e2b30607e71dc9a4365aaed77",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:59:06 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:38 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "70ef9a6e2b30607e71dc9a4365aaed77",
- "x-ms-request-id": "20758006-b002-001b-4f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:59:06 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "70ef9a6e-2b30-607e-71dc-9a4365aaed77"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablepahkxktq\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablepahkxktq\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-124867589b2f87469a9c63383a7206f7-030fb30ea6888f43-00",
+ "traceparent": "00-7216f0563241b841a5460252d50a7e22-0748c5b756c70543-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c0bb3ce2ba5b528a00511e09b3bb37ca",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:59:06 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:38 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c0bb3ce2ba5b528a00511e09b3bb37ca",
- "x-ms-request-id": "20758016-b002-001b-5d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:59:06 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "c0bb3ce2-ba5b-528a-0051-1e09b3bb37ca"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablevrxf9chv\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablevrxf9chv\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-d1a28598f9da3840a1aaa44223715ee5-48dc263391d53741-00",
+ "traceparent": "00-8121b697a0008b48bec33c2d156140fd-6b90d06463501944-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8601a789d14d401296cc17858d19e37a",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:59:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:38 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "8601a789d14d401296cc17858d19e37a",
- "x-ms-request-id": "2075801a-b002-001b-6121-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:59:06 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "8601a789-d14d-4012-96cc-17858d19e37a"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableyd57teqd\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtableyd57teqd\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-e00bd2806ea4124d94f9a0c2d5d022eb-e26f8a26e5af0447-00",
+ "traceparent": "00-09fd4843796fc144b6f6197d0c8867ff-711ec7487307214d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "043902f5311db49c0f9c6fdf0d74adb6",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:59:07 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:39 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "043902f5311db49c0f9c6fdf0d74adb6",
- "x-ms-request-id": "2075801e-b002-001b-6521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:59:06 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "043902f5-311d-b49c-0f9c-6fdf0d74adb6"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "2133231202",
- "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
- "TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": ""
}
}
\ No newline at end of file
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/ValidateAccountSasCredentialsWithPermissions.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/ValidateAccountSasCredentialsWithPermissions.json
index 59e946493283..25540b92c795 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/ValidateAccountSasCredentialsWithPermissions.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/ValidateAccountSasCredentialsWithPermissions.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-3b599c47488a0b418bbf54f0418decaa-24a6717cb4feb145-00",
+ "traceparent": "00-8582914910acd8409a05d2f6ec3fad8d-eee2e97cdb279245-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5b1dbe6221390a9bf434e11f2876557b",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:50 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:40:23 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,39 +24,31 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:50 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablefxyur886\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:40:23 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A40%3A23.3269256Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablefxyur886\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "5b1dbe6221390a9bf434e11f2876557b",
- "x-ms-request-id": "20755cae-b002-001b-5621-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "5b1dbe62-2139-0a9b-f434-e11f2876557b"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablefxyur886\u0027)",
- "odata.editLink": "Tables(\u0027testtablefxyur886\u0027)",
- "TableName": "testtablefxyur886"
+ "TableName": "testtablefxyur886",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?sv=2019-02-02\u0026ss=t\u0026srt=sco\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=d\u0026sig=Sanitized\u0026$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-2bf22e5722788c45b18197b77410756f-dd9178b7d1316c4b-00",
+ "traceparent": "00-90db60a1c167b44fa10fe31257045e93-2ef726b2b058ec4f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0e757448582f61fb067b7ca90b3162e5",
"x-ms-return-client-request-id": "true",
@@ -68,7 +61,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:50 GMT",
+ "Date": "Fri, 17 Jul 2020 19:40:23 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -76,7 +69,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0e757448582f61fb067b7ca90b3162e5",
- "x-ms-request-id": "20755cb5-b002-001b-5c21-5aea7a000000",
+ "x-ms-request-id": "9228d23c-6002-0030-2172-5c9ec2000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -84,7 +77,7 @@
"code": "AuthorizationPermissionMismatch",
"message": {
"lang": "en-US",
- "value": "This request is not authorized to perform this operation using this permission.\nRequestId:20755cb5-b002-001b-5c21-5aea7a000000\nTime:2020-07-14T20:57:50.6173158Z"
+ "value": "This request is not authorized to perform this operation using this permission.\nRequestId:9228d23c-6002-0030-2172-5c9ec2000000\nTime:2020-07-17T19:40:24.2398656Z"
}
}
}
@@ -93,13 +86,14 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?sv=2019-02-02\u0026ss=t\u0026srt=sco\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=w\u0026sig=Sanitized\u0026$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d5f126e2cfb3cf4fbb492224b71c9605-5e5da3e900f74e4f-00",
+ "traceparent": "00-7c2fb8e7d803f848bf95991be4bdd944-b0ae97e2d7904a47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "89d420faecf4c6e8a4cc4f28014c667d",
"x-ms-return-client-request-id": "true",
@@ -112,7 +106,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:50 GMT",
+ "Date": "Fri, 17 Jul 2020 19:40:23 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableugyvzxrt\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -121,7 +115,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "89d420faecf4c6e8a4cc4f28014c667d",
- "x-ms-request-id": "20755cbc-b002-001b-6221-5aea7a000000",
+ "x-ms-request-id": "9228d245-6002-0030-2972-5c9ec2000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -137,10 +131,10 @@
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
- "traceparent": "00-0e8a796224a05f4aaf851d3c11feb923-dee62819b3221e47-00",
+ "traceparent": "00-a4397d7389628a4891b02c812819cf24-2fc606876ed58847-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c51312678dac9cdb397f18adfaac70c8",
"x-ms-return-client-request-id": "true",
@@ -151,54 +145,49 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:50 GMT",
+ "Date": "Fri, 17 Jul 2020 19:40:23 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "c51312678dac9cdb397f18adfaac70c8",
- "x-ms-request-id": "20755cc5-b002-001b-6921-5aea7a000000",
+ "x-ms-request-id": "9228d24b-6002-0030-2e72-5c9ec2000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablefxyur886\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablefxyur886\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-3a3a2dfb9530f045baa96a7cb35f85db-7e5d767cde08094d-00",
+ "traceparent": "00-407a08db3dbfb64ca45888e731b463b4-f764b05226711e49-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "50f490bdce105b168baf696209d260ba",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:51 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:40:24 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:50 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "50f490bdce105b168baf696209d260ba",
- "x-ms-request-id": "20755cd2-b002-001b-7421-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:40:24 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "50f490bd-ce10-5b16-8baf-696209d260ba"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1545362515",
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": "",
"TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
"TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
}
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/ValidateAccountSasCredentialsWithPermissionsAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/ValidateAccountSasCredentialsWithPermissionsAsync.json
index 6d521ee76f45..67a32f409ac7 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/ValidateAccountSasCredentialsWithPermissionsAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/ValidateAccountSasCredentialsWithPermissionsAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-5de71f48acaaf74788d105328794023c-527946a8929f9a43-00",
+ "traceparent": "00-a258596af81afc4a94fbc479d8f6c830-7767079a0837dc4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2db811388cdc7421b45838e7aad68093",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:41:26 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,39 +24,31 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:39 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablezxq97nfe\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:41:26 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A41%3A25.8025992Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablezxq97nfe\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "2db811388cdc7421b45838e7aad68093",
- "x-ms-request-id": "20758024-b002-001b-6a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "2db81138-8cdc-7421-b458-38e7aad68093"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablezxq97nfe\u0027)",
- "odata.editLink": "Tables(\u0027testtablezxq97nfe\u0027)",
- "TableName": "testtablezxq97nfe"
+ "TableName": "testtablezxq97nfe",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?sv=2019-02-02\u0026ss=t\u0026srt=sco\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=d\u0026sig=Sanitized\u0026$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6925684fc0a68f419d25ffb0a1239c69-a85e046ca5d97040-00",
+ "traceparent": "00-35a94615dc06f64d94558633eb1515a6-befe692f56f0b941-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "dd5dc846627bb12a01ca02f82f7aab0e",
"x-ms-return-client-request-id": "true",
@@ -68,7 +61,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:39 GMT",
+ "Date": "Fri, 17 Jul 2020 19:41:45 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -76,7 +69,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "dd5dc846627bb12a01ca02f82f7aab0e",
- "x-ms-request-id": "2075802f-b002-001b-7421-5aea7a000000",
+ "x-ms-request-id": "eb6d8e7e-d002-0083-2772-5c6445000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -84,7 +77,7 @@
"code": "AuthorizationPermissionMismatch",
"message": {
"lang": "en-US",
- "value": "This request is not authorized to perform this operation using this permission.\nRequestId:2075802f-b002-001b-7421-5aea7a000000\nTime:2020-07-14T20:58:39.4728724Z"
+ "value": "This request is not authorized to perform this operation using this permission.\nRequestId:eb6d8e7e-d002-0083-2772-5c6445000000\nTime:2020-07-17T19:41:45.7977817Z"
}
}
}
@@ -93,13 +86,14 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?sv=2019-02-02\u0026ss=t\u0026srt=sco\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=w\u0026sig=Sanitized\u0026$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-717eb2006677f34b85d22206dcbe8d44-9fa2469ac82c4245-00",
+ "traceparent": "00-24140e58d334da4793d95e422502bb60-b6b13bd2ec225944-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e3f2626da801c95c1f0c8111d28fbc19",
"x-ms-return-client-request-id": "true",
@@ -112,7 +106,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:39 GMT",
+ "Date": "Fri, 17 Jul 2020 19:41:45 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable5toqmvgu\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -121,7 +115,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "e3f2626da801c95c1f0c8111d28fbc19",
- "x-ms-request-id": "20758038-b002-001b-7d21-5aea7a000000",
+ "x-ms-request-id": "eb6d8e9a-d002-0083-3e72-5c6445000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -137,10 +131,10 @@
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
- "traceparent": "00-02e4b604fdd07d44a63c16afe5bfbd07-04fd56fa7b596d49-00",
+ "traceparent": "00-0bc02d77e99a9549b979af6e56cb3cbb-9eb7b41f254c4f47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "13e6dda6442f52f82d87e6dfd48864ad",
"x-ms-return-client-request-id": "true",
@@ -151,54 +145,49 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:39 GMT",
+ "Date": "Fri, 17 Jul 2020 19:41:45 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "13e6dda6442f52f82d87e6dfd48864ad",
- "x-ms-request-id": "20758047-b002-001b-0b21-5aea7a000000",
+ "x-ms-request-id": "eb6d8ea5-d002-0083-4872-5c6445000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablezxq97nfe\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablezxq97nfe\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-5a1dda0b418f3845a545a15db24c0d98-0985484d8bf20a4f-00",
+ "traceparent": "00-b07ea489e782ff44ac3533a93727567c-8b48bede47e5224c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7d452534862d9eda6c93bd6fe119de71",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:41:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:39 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "7d452534862d9eda6c93bd6fe119de71",
- "x-ms-request-id": "20758051-b002-001b-1521-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:41:46 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "7d452534-862d-9eda-6c93-bd6fe119de71"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "962174947",
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": "",
"TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
"TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
}
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/ValidateAccountSasCredentialsWithResourceTypes.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/ValidateAccountSasCredentialsWithResourceTypes.json
index a7b6a5b7720c..46b5bc7b7a3a 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/ValidateAccountSasCredentialsWithResourceTypes.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/ValidateAccountSasCredentialsWithResourceTypes.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8322004cb0d9b64d9a9145b6ae040b92-da837b1a5a5c7f4d-00",
+ "traceparent": "00-0a2451dee4aed9479558bddd9b02b2a7-063684ad1c7fca43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5038f8da02b0081c5fab1ea1153511d4",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:51 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:46:20 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,39 +24,31 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:50 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablexioo1bjy\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 20:46:21 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T20%3A46%3A21.1909640Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablexioo1bjy\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "5038f8da02b0081c5fab1ea1153511d4",
- "x-ms-request-id": "20755ce5-b002-001b-0221-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "5038f8da-02b0-081c-5fab-1ea1153511d4"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablexioo1bjy\u0027)",
- "odata.editLink": "Tables(\u0027testtablexioo1bjy\u0027)",
- "TableName": "testtablexioo1bjy"
+ "TableName": "testtablexioo1bjy",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?sv=2019-02-02\u0026ss=t\u0026srt=s\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=rwdlau\u0026sig=Sanitized\u0026$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-846a53f2427768418725376db522df5a-a17bf4cf9fc5f944-00",
+ "traceparent": "00-80dd1326719aba45ad1d3268ba872445-a7084edbd91c9246-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "305c547925bd238d60018b489680d95f",
"x-ms-return-client-request-id": "true",
@@ -68,7 +61,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:50 GMT",
+ "Date": "Fri, 17 Jul 2020 20:46:21 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -76,7 +69,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "305c547925bd238d60018b489680d95f",
- "x-ms-request-id": "20755cf3-b002-001b-0d21-5aea7a000000",
+ "x-ms-request-id": "0419f2cf-a002-002d-177b-5c4728000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -84,7 +77,7 @@
"code": "AuthorizationResourceTypeMismatch",
"message": {
"lang": "en-US",
- "value": "This request is not authorized to perform this operation using this resource type.\nRequestId:20755cf3-b002-001b-0d21-5aea7a000000\nTime:2020-07-14T20:57:50.8625189Z"
+ "value": "This request is not authorized to perform this operation using this resource type.\nRequestId:0419f2cf-a002-002d-177b-5c4728000000\nTime:2020-07-17T20:46:21.9686527Z"
}
}
}
@@ -93,13 +86,14 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?sv=2019-02-02\u0026ss=t\u0026srt=sc\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=rwdlau\u0026sig=Sanitized\u0026$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-70f72b8b79b6194b82d8f60ee759e527-fb256c704fe42048-00",
+ "traceparent": "00-9918b3e43baac6428dc375c11a02aaa4-77aad229d533b44e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ac8e57c339abf4dd5c1c85569c270fdc",
"x-ms-return-client-request-id": "true",
@@ -112,7 +106,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:50 GMT",
+ "Date": "Fri, 17 Jul 2020 20:46:21 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabler737z72g\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -121,7 +115,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ac8e57c339abf4dd5c1c85569c270fdc",
- "x-ms-request-id": "20755cff-b002-001b-1721-5aea7a000000",
+ "x-ms-request-id": "0419f2d6-a002-002d-1c7b-5c4728000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -136,10 +130,10 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/?sv=2019-02-02\u0026ss=t\u0026srt=s\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=rwdlau\u0026sig=Sanitized\u0026restype=service\u0026comp=properties",
"RequestMethod": "GET",
"RequestHeaders": {
- "traceparent": "00-d99ee7bbbf66944d802a13d473b9f23d-f506f53b7276b24b-00",
+ "traceparent": "00-520921e3a7f63f4da7fb12a87e14ab15-08c8bc60e25dfd44-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5cd7f617eba5394a1dfa4014a9c83e57",
"x-ms-return-client-request-id": "true",
@@ -149,26 +143,26 @@
"StatusCode": 200,
"ResponseHeaders": {
"Content-Type": "application/xml",
- "Date": "Tue, 14 Jul 2020 20:57:50 GMT",
+ "Date": "Fri, 17 Jul 2020 20:46:21 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"Transfer-Encoding": "chunked",
"x-ms-client-request-id": "5cd7f617eba5394a1dfa4014a9c83e57",
- "x-ms-request-id": "20755d0f-b002-001b-2421-5aea7a000000",
+ "x-ms-request-id": "0419f2da-a002-002d-1f7b-5c4728000000",
"x-ms-version": "2019-02-02"
},
- "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CStorageServiceProperties\u003E\u003CLogging\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CRead\u003Etrue\u003C/Read\u003E\u003CWrite\u003Efalse\u003C/Write\u003E\u003CDelete\u003Efalse\u003C/Delete\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/Logging\u003E\u003CHourMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CIncludeAPIs\u003Etrue\u003C/IncludeAPIs\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CDays\u003E7\u003C/Days\u003E\u003C/RetentionPolicy\u003E\u003C/HourMetrics\u003E\u003CMinuteMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/MinuteMetrics\u003E\u003CCors /\u003E\u003C/StorageServiceProperties\u003E"
+ "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CStorageServiceProperties\u003E\u003CLogging\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CRead\u003Efalse\u003C/Read\u003E\u003CWrite\u003Efalse\u003C/Write\u003E\u003CDelete\u003Efalse\u003C/Delete\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/Logging\u003E\u003CHourMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CIncludeAPIs\u003Etrue\u003C/IncludeAPIs\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CDays\u003E7\u003C/Days\u003E\u003C/RetentionPolicy\u003E\u003C/HourMetrics\u003E\u003CMinuteMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/MinuteMetrics\u003E\u003CCors /\u003E\u003C/StorageServiceProperties\u003E"
},
{
"RequestUri": "https://chrissscratch.table.core.windows.net/?sv=2019-02-02\u0026ss=t\u0026srt=s\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=rwdlau\u0026sig=Sanitized\u0026restype=service\u0026comp=properties",
"RequestMethod": "GET",
"RequestHeaders": {
- "traceparent": "00-b330ee25acddd242bf02f69b465fa69f-b86a6139d018f642-00",
+ "traceparent": "00-a343072d0f5e1541b8834986d6a42480-bd7561c7a7d81c4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "62062373346f40967668d3a19f368739",
"x-ms-return-client-request-id": "true",
@@ -178,27 +172,27 @@
"StatusCode": 200,
"ResponseHeaders": {
"Content-Type": "application/xml",
- "Date": "Tue, 14 Jul 2020 20:57:50 GMT",
+ "Date": "Fri, 17 Jul 2020 20:46:21 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"Transfer-Encoding": "chunked",
"x-ms-client-request-id": "62062373346f40967668d3a19f368739",
- "x-ms-request-id": "20755d1e-b002-001b-3321-5aea7a000000",
+ "x-ms-request-id": "0419f2df-a002-002d-227b-5c4728000000",
"x-ms-version": "2019-02-02"
},
- "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CStorageServiceProperties\u003E\u003CLogging\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CRead\u003Etrue\u003C/Read\u003E\u003CWrite\u003Efalse\u003C/Write\u003E\u003CDelete\u003Efalse\u003C/Delete\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/Logging\u003E\u003CHourMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CIncludeAPIs\u003Etrue\u003C/IncludeAPIs\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CDays\u003E7\u003C/Days\u003E\u003C/RetentionPolicy\u003E\u003C/HourMetrics\u003E\u003CMinuteMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/MinuteMetrics\u003E\u003CCors /\u003E\u003C/StorageServiceProperties\u003E"
+ "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CStorageServiceProperties\u003E\u003CLogging\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CRead\u003Efalse\u003C/Read\u003E\u003CWrite\u003Efalse\u003C/Write\u003E\u003CDelete\u003Efalse\u003C/Delete\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/Logging\u003E\u003CHourMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CIncludeAPIs\u003Etrue\u003C/IncludeAPIs\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CDays\u003E7\u003C/Days\u003E\u003C/RetentionPolicy\u003E\u003C/HourMetrics\u003E\u003CMinuteMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/MinuteMetrics\u003E\u003CCors /\u003E\u003C/StorageServiceProperties\u003E"
},
{
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabler737z72g\u0027)?sv=2019-02-02\u0026ss=t\u0026srt=sc\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=rwdlau\u0026sig=Sanitized",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
- "traceparent": "00-0851eb9c317bc748a01a2989d14be5e8-991d018b15b6404b-00",
+ "traceparent": "00-bf9090f792eb124bb02217fab5fbe320-dddb0b7f33d79a4f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9f30aef17ca9d8b90c548eb0f8c84a94",
"x-ms-return-client-request-id": "true",
@@ -209,54 +203,49 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:50 GMT",
+ "Date": "Fri, 17 Jul 2020 20:46:21 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "9f30aef17ca9d8b90c548eb0f8c84a94",
- "x-ms-request-id": "20755d24-b002-001b-3921-5aea7a000000",
+ "x-ms-request-id": "0419f2e1-a002-002d-247b-5c4728000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablexioo1bjy\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablexioo1bjy\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-c4dabfd7c1af2d4eaf489296deee9a75-a84cfbefc3c5a946-00",
+ "traceparent": "00-8009937cbbdacb41899bd627e94158b8-f701dfc2ad7dd941-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "78e32eddad20e36d5f96e53d17a99ae6",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:51 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 20:46:22 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:57:50 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "78e32eddad20e36d5f96e53d17a99ae6",
- "x-ms-request-id": "20755d28-b002-001b-3d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 20:46:22 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "78e32edd-ad20-e36d-5f96-e53d17a99ae6"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1679606698",
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": "",
"TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
"TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
}
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/ValidateAccountSasCredentialsWithResourceTypesAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/ValidateAccountSasCredentialsWithResourceTypesAsync.json
index 529d94365dfb..4dd77429d60f 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/ValidateAccountSasCredentialsWithResourceTypesAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(CosmosTable)/ValidateAccountSasCredentialsWithResourceTypesAsync.json
@@ -1,20 +1,21 @@
{
"Entries": [
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-51a49d561032344ea50cc024a5dee246-0a5094f626b1ce4d-00",
+ "traceparent": "00-f832fe336fd6f446a7730fe90cbc5ce4-a067ece2d9c49b47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "cd154a20939e3f582538a48b5481f996",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:39 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:41:46 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -23,39 +24,31 @@
},
"StatusCode": 201,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:39 GMT",
- "Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablemxjcho2y\u0027)",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
+ "Content-Type": "application/json",
+ "Date": "Fri, 17 Jul 2020 19:41:46 GMT",
+ "ETag": "W/\u0022datetime\u00272020-07-17T19%3A41%3A46.3161864Z\u0027\u0022",
+ "Location": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablemxjcho2y\u0027)",
+ "Server": "Microsoft-HTTPAPI/2.0",
"Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "cd154a20939e3f582538a48b5481f996",
- "x-ms-request-id": "20758058-b002-001b-1c21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "x-ms-request-id": "cd154a20-939e-3f58-2538-a48b5481f996"
},
"ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables/@Element",
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablemxjcho2y\u0027)",
- "odata.editLink": "Tables(\u0027testtablemxjcho2y\u0027)",
- "TableName": "testtablemxjcho2y"
+ "TableName": "testtablemxjcho2y",
+ "odata.metadata": "https://chrissprim.table.cosmos.azure.com/$metadata#Tables/@Element"
}
},
{
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?sv=2019-02-02\u0026ss=t\u0026srt=s\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=rwdlau\u0026sig=Sanitized\u0026$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-75274ae83797934c89ffce7ed6be8346-5ce88d1a1309a24b-00",
+ "traceparent": "00-c0f4f99c4b0736408a075e3c3e220d54-734f4be8fa4e1b44-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ea5b9afe82e58a43f4588c7f38c33b7e",
"x-ms-return-client-request-id": "true",
@@ -68,7 +61,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:39 GMT",
+ "Date": "Fri, 17 Jul 2020 19:41:46 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -76,7 +69,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ea5b9afe82e58a43f4588c7f38c33b7e",
- "x-ms-request-id": "20758067-b002-001b-2a21-5aea7a000000",
+ "x-ms-request-id": "eb6d8f9f-d002-0083-3872-5c6445000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -84,7 +77,7 @@
"code": "AuthorizationResourceTypeMismatch",
"message": {
"lang": "en-US",
- "value": "This request is not authorized to perform this operation using this resource type.\nRequestId:20758067-b002-001b-2a21-5aea7a000000\nTime:2020-07-14T20:58:39.7130713Z"
+ "value": "This request is not authorized to perform this operation using this resource type.\nRequestId:eb6d8f9f-d002-0083-3872-5c6445000000\nTime:2020-07-17T19:41:46.8476594Z"
}
}
}
@@ -93,13 +86,14 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?sv=2019-02-02\u0026ss=t\u0026srt=sc\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=rwdlau\u0026sig=Sanitized\u0026$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-568474dd781b6d4e9b25e54ba71b28e6-f85830007b956140-00",
+ "traceparent": "00-8440400373994943a9c863ca4b503638-b485483cf95a8d4b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0d2bcabb72ad9b08ebdbc30cdc0407df",
"x-ms-return-client-request-id": "true",
@@ -112,7 +106,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:39 GMT",
+ "Date": "Fri, 17 Jul 2020 19:41:46 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableszh903fq\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -121,7 +115,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0d2bcabb72ad9b08ebdbc30cdc0407df",
- "x-ms-request-id": "20758070-b002-001b-3321-5aea7a000000",
+ "x-ms-request-id": "eb6d8fab-d002-0083-4472-5c6445000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -136,10 +130,10 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/?sv=2019-02-02\u0026ss=t\u0026srt=s\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=rwdlau\u0026sig=Sanitized\u0026restype=service\u0026comp=properties",
"RequestMethod": "GET",
"RequestHeaders": {
- "traceparent": "00-d2c32a52286f604ba5d7778c279221eb-8d142aa6f355a741-00",
+ "traceparent": "00-7da5f5c35ccff94ea56a3a8520914197-3e12fa10c75e0e43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "04cf50976d37a25af41a97fbf57a5d41",
"x-ms-return-client-request-id": "true",
@@ -149,26 +143,26 @@
"StatusCode": 200,
"ResponseHeaders": {
"Content-Type": "application/xml",
- "Date": "Tue, 14 Jul 2020 20:58:39 GMT",
+ "Date": "Fri, 17 Jul 2020 19:41:46 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"Transfer-Encoding": "chunked",
"x-ms-client-request-id": "04cf50976d37a25af41a97fbf57a5d41",
- "x-ms-request-id": "2075807c-b002-001b-3e21-5aea7a000000",
+ "x-ms-request-id": "eb6d8fb9-d002-0083-5172-5c6445000000",
"x-ms-version": "2019-02-02"
},
- "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CStorageServiceProperties\u003E\u003CLogging\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CRead\u003Etrue\u003C/Read\u003E\u003CWrite\u003Efalse\u003C/Write\u003E\u003CDelete\u003Efalse\u003C/Delete\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/Logging\u003E\u003CHourMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CIncludeAPIs\u003Etrue\u003C/IncludeAPIs\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CDays\u003E7\u003C/Days\u003E\u003C/RetentionPolicy\u003E\u003C/HourMetrics\u003E\u003CMinuteMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/MinuteMetrics\u003E\u003CCors /\u003E\u003C/StorageServiceProperties\u003E"
+ "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CStorageServiceProperties\u003E\u003CLogging\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CRead\u003Efalse\u003C/Read\u003E\u003CWrite\u003Efalse\u003C/Write\u003E\u003CDelete\u003Efalse\u003C/Delete\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/Logging\u003E\u003CHourMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CIncludeAPIs\u003Etrue\u003C/IncludeAPIs\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CDays\u003E7\u003C/Days\u003E\u003C/RetentionPolicy\u003E\u003C/HourMetrics\u003E\u003CMinuteMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/MinuteMetrics\u003E\u003CCors /\u003E\u003C/StorageServiceProperties\u003E"
},
{
"RequestUri": "https://chrissscratch.table.core.windows.net/?sv=2019-02-02\u0026ss=t\u0026srt=s\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=rwdlau\u0026sig=Sanitized\u0026restype=service\u0026comp=properties",
"RequestMethod": "GET",
"RequestHeaders": {
- "traceparent": "00-2fd4d749c7c13d4db1003161912c84c3-8185ab70aa7f144b-00",
+ "traceparent": "00-5d9bf7236f2a8a44a3aa0153607ed1db-d3838220b8f94446-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "afb662cea4148b1892bffe0abf37aeef",
"x-ms-return-client-request-id": "true",
@@ -178,27 +172,27 @@
"StatusCode": 200,
"ResponseHeaders": {
"Content-Type": "application/xml",
- "Date": "Tue, 14 Jul 2020 20:58:39 GMT",
+ "Date": "Fri, 17 Jul 2020 19:41:46 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"Transfer-Encoding": "chunked",
"x-ms-client-request-id": "afb662cea4148b1892bffe0abf37aeef",
- "x-ms-request-id": "20758087-b002-001b-4921-5aea7a000000",
+ "x-ms-request-id": "eb6d8fc3-d002-0083-5b72-5c6445000000",
"x-ms-version": "2019-02-02"
},
- "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CStorageServiceProperties\u003E\u003CLogging\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CRead\u003Etrue\u003C/Read\u003E\u003CWrite\u003Efalse\u003C/Write\u003E\u003CDelete\u003Efalse\u003C/Delete\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/Logging\u003E\u003CHourMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CIncludeAPIs\u003Etrue\u003C/IncludeAPIs\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CDays\u003E7\u003C/Days\u003E\u003C/RetentionPolicy\u003E\u003C/HourMetrics\u003E\u003CMinuteMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/MinuteMetrics\u003E\u003CCors /\u003E\u003C/StorageServiceProperties\u003E"
+ "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CStorageServiceProperties\u003E\u003CLogging\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CRead\u003Efalse\u003C/Read\u003E\u003CWrite\u003Efalse\u003C/Write\u003E\u003CDelete\u003Efalse\u003C/Delete\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/Logging\u003E\u003CHourMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CIncludeAPIs\u003Etrue\u003C/IncludeAPIs\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CDays\u003E7\u003C/Days\u003E\u003C/RetentionPolicy\u003E\u003C/HourMetrics\u003E\u003CMinuteMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/MinuteMetrics\u003E\u003CCors /\u003E\u003C/StorageServiceProperties\u003E"
},
{
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableszh903fq\u0027)?sv=2019-02-02\u0026ss=t\u0026srt=sc\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=rwdlau\u0026sig=Sanitized",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
- "traceparent": "00-a3317fe3a06d924780c385f92c051883-1e7c044e1e4cdb42-00",
+ "traceparent": "00-b34c982254ca4242ade3a86aa29efd10-ceced7d081860740-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e8e7ad5136f34d4670881993db0ca671",
"x-ms-return-client-request-id": "true",
@@ -209,54 +203,49 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:39 GMT",
+ "Date": "Fri, 17 Jul 2020 19:41:46 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "e8e7ad5136f34d4670881993db0ca671",
- "x-ms-request-id": "2075808d-b002-001b-4f21-5aea7a000000",
+ "x-ms-request-id": "eb6d8fcc-d002-0083-6472-5c6445000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablemxjcho2y\u0027)",
+ "RequestUri": "https://chrissprim.table.cosmos.azure.com/Tables(\u0027testtablemxjcho2y\u0027)",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-0735fbe887ce5b439859bc7edba4b1b5-4cacfa2bf61e2041-00",
+ "traceparent": "00-1fadb2635adccc46bb7dc719eafe40b1-a05d86ac1aa52043-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "793e827d584ef3ca384472776f50e3bd",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:40 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 19:41:47 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": null,
"StatusCode": 204,
"ResponseHeaders": {
- "Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:39 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "793e827d584ef3ca384472776f50e3bd",
- "x-ms-request-id": "20758098-b002-001b-5a21-5aea7a000000",
- "x-ms-version": "2019-02-02"
+ "Date": "Fri, 17 Jul 2020 19:41:47 GMT",
+ "Server": "Microsoft-HTTPAPI/2.0",
+ "x-ms-request-id": "793e827d-584e-f3ca-3844-72776f50e3bd"
},
"ResponseBody": []
}
],
"Variables": {
"RandomSeed": "1961028985",
+ "TABLES_COSMOS_ACCOUNT_NAME": "chrissprim",
+ "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY": "",
"TABLES_PRIMARY_STORAGE_ACCOUNT_KEY": "",
"TABLES_STORAGE_ACCOUNT_NAME": "chrissscratch"
}
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetPropertiesReturnsProperties.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetPropertiesReturnsProperties.json
index 25d8cc2d5dba..6c8802dbb2e2 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetPropertiesReturnsProperties.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetPropertiesReturnsProperties.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6e8974501b9e59429144eca2e928ee7f-baaeb096156a344c-00",
+ "traceparent": "00-c1977dcca61e1a4dbc8cd3a466f14a4a-e5799d175ac4dd4c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c6987e219d3580bd6ed12a9c20445987",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:53 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:57:53 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:27 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablensh1v1gm\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "c6987e219d3580bd6ed12a9c20445987",
- "x-ms-request-id": "20755f67-b002-001b-4621-5aea7a000000",
+ "x-ms-request-id": "9b332d4c-4002-002c-4686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -50,13 +51,13 @@
"RequestMethod": "GET",
"RequestHeaders": {
"Authorization": "Sanitized",
- "traceparent": "00-64b053f09eba184a9f6ba25a5ca6ae04-95376dcfcd04d742-00",
+ "traceparent": "00-a82493244ca5ce4f9c94fc4a7df8d681-9f64b24c850a344f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8a44e9a0fa39f45e391da84080f2047f",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:53 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -64,46 +65,47 @@
"StatusCode": 200,
"ResponseHeaders": {
"Content-Type": "application/xml",
- "Date": "Tue, 14 Jul 2020 20:57:53 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:27 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"Transfer-Encoding": "chunked",
"x-ms-client-request-id": "8a44e9a0fa39f45e391da84080f2047f",
- "x-ms-request-id": "20755f6d-b002-001b-4b21-5aea7a000000",
+ "x-ms-request-id": "9b332d5c-4002-002c-5586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
- "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CStorageServiceProperties\u003E\u003CLogging\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CRead\u003Etrue\u003C/Read\u003E\u003CWrite\u003Efalse\u003C/Write\u003E\u003CDelete\u003Efalse\u003C/Delete\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/Logging\u003E\u003CHourMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CIncludeAPIs\u003Etrue\u003C/IncludeAPIs\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CDays\u003E7\u003C/Days\u003E\u003C/RetentionPolicy\u003E\u003C/HourMetrics\u003E\u003CMinuteMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/MinuteMetrics\u003E\u003CCors /\u003E\u003C/StorageServiceProperties\u003E"
+ "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CStorageServiceProperties\u003E\u003CLogging\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CRead\u003Efalse\u003C/Read\u003E\u003CWrite\u003Efalse\u003C/Write\u003E\u003CDelete\u003Efalse\u003C/Delete\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/Logging\u003E\u003CHourMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CIncludeAPIs\u003Etrue\u003C/IncludeAPIs\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CDays\u003E7\u003C/Days\u003E\u003C/RetentionPolicy\u003E\u003C/HourMetrics\u003E\u003CMinuteMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/MinuteMetrics\u003E\u003CCors /\u003E\u003C/StorageServiceProperties\u003E"
},
{
"RequestUri": "https://chrissscratch.table.core.windows.net/?restype=service\u0026comp=properties",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/xml",
"Authorization": "Sanitized",
- "Content-Length": "535",
+ "Content-Length": "534",
"Content-Type": "application/xml",
- "traceparent": "00-fecee1ae3148fd4b94eb54e047c50bd6-bda774ca0d968f4d-00",
+ "traceparent": "00-de7f9e002545b145817b20938a2fee03-85944197b07bcc4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f183366c50cf8e748155f2daf9eb7840",
- "x-ms-date": "Tue, 14 Jul 2020 20:57:53 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:28 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
- "RequestBody": "\uFEFF\u003CStorageServiceProperties\u003E\u003CLogging\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CDelete\u003Efalse\u003C/Delete\u003E\u003CRead\u003Efalse\u003C/Read\u003E\u003CWrite\u003Efalse\u003C/Write\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/Logging\u003E\u003CHourMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CIncludeAPIs\u003Etrue\u003C/IncludeAPIs\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CDays\u003E7\u003C/Days\u003E\u003C/RetentionPolicy\u003E\u003C/HourMetrics\u003E\u003CMinuteMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/MinuteMetrics\u003E\u003CCors /\u003E\u003C/StorageServiceProperties\u003E",
+ "RequestBody": "\uFEFF\u003CStorageServiceProperties\u003E\u003CLogging\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CDelete\u003Efalse\u003C/Delete\u003E\u003CRead\u003Etrue\u003C/Read\u003E\u003CWrite\u003Efalse\u003C/Write\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/Logging\u003E\u003CHourMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CIncludeAPIs\u003Etrue\u003C/IncludeAPIs\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CDays\u003E7\u003C/Days\u003E\u003C/RetentionPolicy\u003E\u003C/HourMetrics\u003E\u003CMinuteMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/MinuteMetrics\u003E\u003CCors /\u003E\u003C/StorageServiceProperties\u003E",
"StatusCode": 202,
"ResponseHeaders": {
- "Date": "Tue, 14 Jul 2020 20:57:53 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:28 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"Transfer-Encoding": "chunked",
"x-ms-client-request-id": "f183366c50cf8e748155f2daf9eb7840",
- "x-ms-request-id": "20755f73-b002-001b-5121-5aea7a000000",
+ "x-ms-request-id": "9b332d6c-4002-002c-6386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -113,13 +115,13 @@
"RequestMethod": "GET",
"RequestHeaders": {
"Authorization": "Sanitized",
- "traceparent": "00-a2e553644f1d8f4a8d47cb2c5427a657-1145687accdf6c45-00",
+ "traceparent": "00-50ab8135fa40e44d9a0b2a61b9a0b0f9-827a9704e3ce8f46-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "48b9aa751fa226d920a48d18f47c007b",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -127,17 +129,17 @@
"StatusCode": 200,
"ResponseHeaders": {
"Content-Type": "application/xml",
- "Date": "Tue, 14 Jul 2020 20:58:13 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:48 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"Transfer-Encoding": "chunked",
"x-ms-client-request-id": "48b9aa751fa226d920a48d18f47c007b",
- "x-ms-request-id": "20756d33-b002-001b-4321-5aea7a000000",
+ "x-ms-request-id": "9b333bf0-4002-002c-7886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
- "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CStorageServiceProperties\u003E\u003CLogging\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CRead\u003Efalse\u003C/Read\u003E\u003CWrite\u003Efalse\u003C/Write\u003E\u003CDelete\u003Efalse\u003C/Delete\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/Logging\u003E\u003CHourMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CIncludeAPIs\u003Etrue\u003C/IncludeAPIs\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CDays\u003E7\u003C/Days\u003E\u003C/RetentionPolicy\u003E\u003C/HourMetrics\u003E\u003CMinuteMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/MinuteMetrics\u003E\u003CCors /\u003E\u003C/StorageServiceProperties\u003E"
+ "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CStorageServiceProperties\u003E\u003CLogging\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CRead\u003Etrue\u003C/Read\u003E\u003CWrite\u003Efalse\u003C/Write\u003E\u003CDelete\u003Efalse\u003C/Delete\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/Logging\u003E\u003CHourMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CIncludeAPIs\u003Etrue\u003C/IncludeAPIs\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CDays\u003E7\u003C/Days\u003E\u003C/RetentionPolicy\u003E\u003C/HourMetrics\u003E\u003CMinuteMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/MinuteMetrics\u003E\u003CCors /\u003E\u003C/StorageServiceProperties\u003E"
},
{
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablensh1v1gm\u0027)",
@@ -145,13 +147,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-a80f45da26f69149b3200dedb867c3c8-d5f7a00178c98548-00",
+ "traceparent": "00-a1a0151183b9b54ea12249ae38793803-36020e51f88c1349-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e92faacd67c150b874b609e30883fa4d",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -160,14 +162,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:13 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:48 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "e92faacd67c150b874b609e30883fa4d",
- "x-ms-request-id": "20756d40-b002-001b-4f21-5aea7a000000",
+ "x-ms-request-id": "9b333bf9-4002-002c-7f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetPropertiesReturnsPropertiesAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetPropertiesReturnsPropertiesAsync.json
index bac54e4eb84a..0755f2d8bb0c 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetPropertiesReturnsPropertiesAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetPropertiesReturnsPropertiesAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-acffa696ad59c94e982dc74acc64ba03-75635233a4261e4f-00",
+ "traceparent": "00-6680dd5583b749458cbab5127c313575-ebfd4344911af348-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ca66b25519f0e632c91ad825a1fa86b4",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:42 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:42 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:52 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable82g9519r\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ca66b25519f0e632c91ad825a1fa86b4",
- "x-ms-request-id": "207582a5-b002-001b-3f21-5aea7a000000",
+ "x-ms-request-id": "9b333f93-4002-002c-5d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -50,13 +51,13 @@
"RequestMethod": "GET",
"RequestHeaders": {
"Authorization": "Sanitized",
- "traceparent": "00-9b18e7e651459c46bd227eeccc13232f-07f3d030aa51004e-00",
+ "traceparent": "00-01a643421546a841985b2fe09455f863-6011b613d112c746-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "432150fd4b16df2d5c225791654d765b",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:42 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -64,14 +65,14 @@
"StatusCode": 200,
"ResponseHeaders": {
"Content-Type": "application/xml",
- "Date": "Tue, 14 Jul 2020 20:58:42 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:52 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"Transfer-Encoding": "chunked",
"x-ms-client-request-id": "432150fd4b16df2d5c225791654d765b",
- "x-ms-request-id": "207582af-b002-001b-4721-5aea7a000000",
+ "x-ms-request-id": "9b333f9e-4002-002c-6686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CStorageServiceProperties\u003E\u003CLogging\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CRead\u003Etrue\u003C/Read\u003E\u003CWrite\u003Efalse\u003C/Write\u003E\u003CDelete\u003Efalse\u003C/Delete\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/Logging\u003E\u003CHourMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CIncludeAPIs\u003Etrue\u003C/IncludeAPIs\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CDays\u003E7\u003C/Days\u003E\u003C/RetentionPolicy\u003E\u003C/HourMetrics\u003E\u003CMinuteMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/MinuteMetrics\u003E\u003CCors /\u003E\u003C/StorageServiceProperties\u003E"
@@ -80,30 +81,31 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/?restype=service\u0026comp=properties",
"RequestMethod": "PUT",
"RequestHeaders": {
+ "Accept": "application/xml",
"Authorization": "Sanitized",
"Content-Length": "535",
"Content-Type": "application/xml",
- "traceparent": "00-08915298b0d0ea4f90f2a07b5cba450f-6f594e292b108042-00",
+ "traceparent": "00-1419c798f813e34da5b5afd71e39b267-d626cf206532a84b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "70f6615f181e143897caa89c72c2258d",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:42 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:54 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
"RequestBody": "\uFEFF\u003CStorageServiceProperties\u003E\u003CLogging\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CDelete\u003Efalse\u003C/Delete\u003E\u003CRead\u003Efalse\u003C/Read\u003E\u003CWrite\u003Efalse\u003C/Write\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/Logging\u003E\u003CHourMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CIncludeAPIs\u003Etrue\u003C/IncludeAPIs\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CDays\u003E7\u003C/Days\u003E\u003C/RetentionPolicy\u003E\u003C/HourMetrics\u003E\u003CMinuteMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/MinuteMetrics\u003E\u003CCors /\u003E\u003C/StorageServiceProperties\u003E",
"StatusCode": 202,
"ResponseHeaders": {
- "Date": "Tue, 14 Jul 2020 20:58:42 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:53 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"Transfer-Encoding": "chunked",
"x-ms-client-request-id": "70f6615f181e143897caa89c72c2258d",
- "x-ms-request-id": "207582b8-b002-001b-5021-5aea7a000000",
+ "x-ms-request-id": "9b333fa6-4002-002c-6e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -113,13 +115,13 @@
"RequestMethod": "GET",
"RequestHeaders": {
"Authorization": "Sanitized",
- "traceparent": "00-d92095927ea5eb4b805a92d91afcb70d-517f967f47e67240-00",
+ "traceparent": "00-6729b1dc5c3e8d4f8ff9485f6ba0da23-b1dde802e7a7e14b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "51f389fe02be0af485866dcec1a0807b",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:02 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -127,14 +129,14 @@
"StatusCode": 200,
"ResponseHeaders": {
"Content-Type": "application/xml",
- "Date": "Tue, 14 Jul 2020 20:59:02 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:13 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"Transfer-Encoding": "chunked",
"x-ms-client-request-id": "51f389fe02be0af485866dcec1a0807b",
- "x-ms-request-id": "2075920b-b002-001b-5821-5aea7a000000",
+ "x-ms-request-id": "9b334ce6-4002-002c-0487-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CStorageServiceProperties\u003E\u003CLogging\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CRead\u003Efalse\u003C/Read\u003E\u003CWrite\u003Efalse\u003C/Write\u003E\u003CDelete\u003Efalse\u003C/Delete\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/Logging\u003E\u003CHourMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CIncludeAPIs\u003Etrue\u003C/IncludeAPIs\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CDays\u003E7\u003C/Days\u003E\u003C/RetentionPolicy\u003E\u003C/HourMetrics\u003E\u003CMinuteMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/MinuteMetrics\u003E\u003CCors /\u003E\u003C/StorageServiceProperties\u003E"
@@ -145,13 +147,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-31895fcc3dd5064eb7a536184815c7ce-dd7aef360761614d-00",
+ "traceparent": "00-901c3de4c15fe0498c2c4bc4e58b6543-3dfb12d88d8c924f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3fc67da31504e596170cab4ba2916d99",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:02 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -160,14 +162,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:02 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:13 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "3fc67da31504e596170cab4ba2916d99",
- "x-ms-request-id": "20759212-b002-001b-5e21-5aea7a000000",
+ "x-ms-request-id": "9b334cf4-4002-002c-1187-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetTableServiceStatsReturnsStats.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetTableServiceStatsReturnsStats.json
index 1cb7a1808a33..4e33cf3c5eae 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetTableServiceStatsReturnsStats.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetTableServiceStatsReturnsStats.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-870ca201cbbe914da0344122e4f2ca24-90ad848f7093c74d-00",
+ "traceparent": "00-1af161fdd05dba4eaa2472c6916d090d-19570f41b1bbe04d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "dfd4ef11cd67a47bfe218887165ba0ed",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:13 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:48 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablegmm3nqid\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "dfd4ef11cd67a47bfe218887165ba0ed",
- "x-ms-request-id": "20756d4c-b002-001b-5a21-5aea7a000000",
+ "x-ms-request-id": "9b333bfc-4002-002c-0286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -50,13 +51,13 @@
"RequestMethod": "GET",
"RequestHeaders": {
"Authorization": "Sanitized",
- "traceparent": "00-e1f3fc649091864b91329cf4d0b0ffde-39c2555b6980b042-00",
+ "traceparent": "00-89f0d0ac982b85458aaa30a462b7d571-827a239bb3dc1140-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "03bf080c5d02d4f8d50e2c07a4f62924",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -64,17 +65,17 @@
"StatusCode": 200,
"ResponseHeaders": {
"Content-Type": "application/xml",
- "Date": "Tue, 14 Jul 2020 20:58:13 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:49 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"Transfer-Encoding": "chunked",
"x-ms-client-request-id": "03bf080c5d02d4f8d50e2c07a4f62924",
- "x-ms-request-id": "248def27-f002-0011-7321-5a8676000000",
+ "x-ms-request-id": "b8024fc9-9002-0023-7486-5cdea6000000",
"x-ms-version": "2019-02-02"
},
- "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CStorageServiceStats\u003E\u003CGeoReplication\u003E\u003CStatus\u003Elive\u003C/Status\u003E\u003CLastSyncTime\u003ETue, 14 Jul 2020 20:55:36 GMT\u003C/LastSyncTime\u003E\u003C/GeoReplication\u003E\u003C/StorageServiceStats\u003E"
+ "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CStorageServiceStats\u003E\u003CGeoReplication\u003E\u003CStatus\u003Elive\u003C/Status\u003E\u003CLastSyncTime\u003EFri, 17 Jul 2020 22:07:22 GMT\u003C/LastSyncTime\u003E\u003C/GeoReplication\u003E\u003C/StorageServiceStats\u003E"
},
{
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablegmm3nqid\u0027)",
@@ -82,13 +83,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-580fab0dd38c7341b6bceadacc2e749b-ec0a995abed12647-00",
+ "traceparent": "00-2ff30cb1b49ab54398eb5034298c48e4-a3284ca761debc42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ec520416d16bfb5a5cfd4e442d78b871",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -97,14 +98,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:13 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:48 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ec520416d16bfb5a5cfd4e442d78b871",
- "x-ms-request-id": "20756d5b-b002-001b-6621-5aea7a000000",
+ "x-ms-request-id": "9b333c69-4002-002c-6d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetTableServiceStatsReturnsStatsAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetTableServiceStatsReturnsStatsAsync.json
index bb1c059ba05f..1d0f9a0c46a5 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetTableServiceStatsReturnsStatsAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetTableServiceStatsReturnsStatsAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-05bf1a7b8dcc2b48be18f8f2b2cb32d3-4b05325c22d26f41-00",
+ "traceparent": "00-e44960c9b3363948a5a7be06ae01691e-214b1575e008be47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "63a0e650f2db3646869e163f0ca75ca1",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:02 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:02 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:13 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableejhi28f8\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "63a0e650f2db3646869e163f0ca75ca1",
- "x-ms-request-id": "20759217-b002-001b-6321-5aea7a000000",
+ "x-ms-request-id": "9b334cfe-4002-002c-1b87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -50,13 +51,13 @@
"RequestMethod": "GET",
"RequestHeaders": {
"Authorization": "Sanitized",
- "traceparent": "00-1f593a1db342064a8e688f41faa718bd-fd8e08880dbc844b-00",
+ "traceparent": "00-6c6ccfc6b6465648bae22daba971ecc7-787fd00a5e8fc046-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f81ad0d4b6657ec9fc1e9237134fcc8c",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -64,17 +65,17 @@
"StatusCode": 200,
"ResponseHeaders": {
"Content-Type": "application/xml",
- "Date": "Tue, 14 Jul 2020 20:59:02 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:14 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"Transfer-Encoding": "chunked",
"x-ms-client-request-id": "f81ad0d4b6657ec9fc1e9237134fcc8c",
- "x-ms-request-id": "248def78-f002-0011-7f21-5a8676000000",
+ "x-ms-request-id": "b8024ffb-9002-0023-7a87-5cdea6000000",
"x-ms-version": "2019-02-02"
},
- "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CStorageServiceStats\u003E\u003CGeoReplication\u003E\u003CStatus\u003Elive\u003C/Status\u003E\u003CLastSyncTime\u003ETue, 14 Jul 2020 20:55:36 GMT\u003C/LastSyncTime\u003E\u003C/GeoReplication\u003E\u003C/StorageServiceStats\u003E"
+ "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CStorageServiceStats\u003E\u003CGeoReplication\u003E\u003CStatus\u003Elive\u003C/Status\u003E\u003CLastSyncTime\u003EFri, 17 Jul 2020 22:07:22 GMT\u003C/LastSyncTime\u003E\u003C/GeoReplication\u003E\u003C/StorageServiceStats\u003E"
},
{
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableejhi28f8\u0027)",
@@ -82,13 +83,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-bd5a2593252b2a429915d9979228a157-f6cd126e1966c240-00",
+ "traceparent": "00-c50c1bf4df14294e88fe700a28310695-24dbe263e5c91049-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9a0772a38ab372367e7ec5b2a27b920a",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -97,14 +98,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:02 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:13 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "9a0772a38ab372367e7ec5b2a27b920a",
- "x-ms-request-id": "20759235-b002-001b-7e21-5aea7a000000",
+ "x-ms-request-id": "9b334d14-4002-002c-2f87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetTablesReturnsTablesWithAndWithoutPagination(5).json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetTablesReturnsTablesWithAndWithoutPagination(5).json
index b6e6e2f4651c..32bba0797361 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetTablesReturnsTablesWithAndWithoutPagination(5).json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetTablesReturnsTablesWithAndWithoutPagination(5).json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-39ca52ef90b1fb4aa380e6f4f83bfff5-ce94f2532a46bd41-00",
+ "traceparent": "00-717f48095c07c543b4c587e5fd5743b0-3bbc9f232ec78f4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5d5a77dd692f6733a29612d20caf5b61",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:51 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableom98i6w7\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "5d5a77dd692f6733a29612d20caf5b61",
- "x-ms-request-id": "20756fa3-b002-001b-0121-5aea7a000000",
+ "x-ms-request-id": "9b333eba-4002-002c-1486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e19753a61378a54590e09881757122db-33ad7114da3ed943-00",
+ "traceparent": "00-fee030c87511824886701e67127cf4ae-9d9a8619e524b94f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d0d2031a64d0e04daa1f15d795bd0374",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -70,7 +72,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:51 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableug02ed3p\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -79,7 +81,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d0d2031a64d0e04daa1f15d795bd0374",
- "x-ms-request-id": "20756fae-b002-001b-0921-5aea7a000000",
+ "x-ms-request-id": "9b333ec3-4002-002c-1c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -94,17 +96,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e67e2c09c5e368459ed2ed648ff816fd-a4a8018ff13fdf42-00",
+ "traceparent": "00-fe9edbb0990dc14fb83319ad842980f9-4ad328f257f8374f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "883c0beeea2da7a92c58422c9763963d",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -115,7 +118,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:51 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablex5iqmdsp\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -124,7 +127,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "883c0beeea2da7a92c58422c9763963d",
- "x-ms-request-id": "20756fbd-b002-001b-1621-5aea7a000000",
+ "x-ms-request-id": "9b333ec8-4002-002c-2086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -139,17 +142,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-5979ba60d3e053458c5b34101854fd95-36d17bfe4a23e844-00",
+ "traceparent": "00-fc15f908ec011a44b7b681042453182c-30c878d73bfc5042-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7ee278e85e03c0ba512de1c528c5b3bf",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -160,7 +164,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:51 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable25cx3mvm\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -169,7 +173,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "7ee278e85e03c0ba512de1c528c5b3bf",
- "x-ms-request-id": "20756fc7-b002-001b-1f21-5aea7a000000",
+ "x-ms-request-id": "9b333ecf-4002-002c-2686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -184,17 +188,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c4597a12c0ea0a44af830fdfe436efb9-fee06bb78a30914a-00",
+ "traceparent": "00-b1bb8cd234ac1a44aba1fe4dba4880af-d058bb360e98754e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "16a4f47dc5326a0a3ef39fb5082ba3cd",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -205,7 +210,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:52 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablee59ynmvr\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -214,7 +219,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "16a4f47dc5326a0a3ef39fb5082ba3cd",
- "x-ms-request-id": "20756fd6-b002-001b-2c21-5aea7a000000",
+ "x-ms-request-id": "9b333ed9-4002-002c-2f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -229,17 +234,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-0a804d464a97354eba2830cc196ce737-58da674e08f3784d-00",
+ "traceparent": "00-4696093c3cd8d94086a74c79024b0ba2-7391f167b7953041-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2c76687e8fd911ce9a38000fb9a38e8b",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -250,7 +256,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:52 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablen1vzvior\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -259,7 +265,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "2c76687e8fd911ce9a38000fb9a38e8b",
- "x-ms-request-id": "20756fe4-b002-001b-3921-5aea7a000000",
+ "x-ms-request-id": "9b333edf-4002-002c-3486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -274,17 +280,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-23d7815d0592ff488b0e6cafbada233a-6d4db88b8fedea41-00",
+ "traceparent": "00-d6f733dd98eca748a0e43f2ab615b49e-85bd8f83ecd57d46-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f79eddca73fcac27de2197c94fdd91ae",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -295,7 +302,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:52 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable170tbe0v\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -304,7 +311,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f79eddca73fcac27de2197c94fdd91ae",
- "x-ms-request-id": "20756ff1-b002-001b-4521-5aea7a000000",
+ "x-ms-request-id": "9b333ee4-4002-002c-3786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -319,17 +326,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ee20d7ea95dda741b483f325041e483d-2d16e3a1dfc15641-00",
+ "traceparent": "00-3bcb6e4e4d8bf54cb28d0ecb531204ef-12f1e538fd709640-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0a464ff4df4a805db12b62fcf1d71426",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -340,7 +348,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:52 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableb3xav580\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -349,7 +357,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0a464ff4df4a805db12b62fcf1d71426",
- "x-ms-request-id": "20756ffb-b002-001b-4d21-5aea7a000000",
+ "x-ms-request-id": "9b333eed-4002-002c-3f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -364,17 +372,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ae081e2cac73df409d5fbc7f92a3a579-e76c7fa5508aa445-00",
+ "traceparent": "00-c90bfd18d2825b498f9e5814ce0465b2-0d9beb8c9503e14a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9811d8e5e6e33620c9a302ad2c1d61ff",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -385,7 +394,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:52 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable14yr3zhe\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -394,7 +403,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "9811d8e5e6e33620c9a302ad2c1d61ff",
- "x-ms-request-id": "20757001-b002-001b-5221-5aea7a000000",
+ "x-ms-request-id": "9b333ef5-4002-002c-4686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -409,17 +418,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-51e87d594c500e4791388e379fa6695d-5df8e3ae89b07647-00",
+ "traceparent": "00-2039519c90a82348b2bc88233975a6d1-3062b355c5bb1e4d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d5bff4797b632fee12012572cec59dcb",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -430,7 +440,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:52 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable1lqodlcx\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -439,7 +449,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d5bff4797b632fee12012572cec59dcb",
- "x-ms-request-id": "2075700e-b002-001b-5b21-5aea7a000000",
+ "x-ms-request-id": "9b333efd-4002-002c-4d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -454,17 +464,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-000f309bdacf9e42ab69379865f680ac-850381f879c42647-00",
+ "traceparent": "00-33249ef9f4cfd6488c1e7ce2bb6419ff-1077519eb8072046-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f4d431f318ad50ca1ac41fef274ad34d",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -475,7 +486,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:52 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable79wbq7vt\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -484,7 +495,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f4d431f318ad50ca1ac41fef274ad34d",
- "x-ms-request-id": "20757017-b002-001b-6321-5aea7a000000",
+ "x-ms-request-id": "9b333f08-4002-002c-5686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -499,14 +510,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2b9ad2b4eff8fe307a4c174f626f7812",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:17 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -515,7 +527,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:52 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -523,8 +535,8 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "2b9ad2b4eff8fe307a4c174f626f7812",
- "x-ms-continuation-NextTableName": "1!48!dGVzdHRhYmxlNTFrcG03ejQBMDFkNjVhMjE3ZGMwNGJmOA--",
- "x-ms-request-id": "2075701f-b002-001b-6921-5aea7a000000",
+ "x-ms-continuation-NextTableName": "1!48!dGVzdHRhYmxlN3ptamxsdzEBMDFkNjVjODZmZGYwZWI5ZA--",
+ "x-ms-request-id": "9b333f11-4002-002c-5e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -554,95 +566,28 @@
"odata.editLink": "Tables(\u0027testtable25cx3mvm\u0027)",
"TableName": "testtable25cx3mvm"
},
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable4ns9b5g3\u0027)",
- "odata.editLink": "Tables(\u0027testtable4ns9b5g3\u0027)",
- "TableName": "testtable4ns9b5g3"
- }
- ]
- }
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextTableName=1%2148%21dGVzdHRhYmxlNTFrcG03ejQBMDFkNjVhMjE3ZGMwNGJmOA--",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "DataServiceVersion": "3.0",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "31e2cbfafaa6f98237d45709a6ada3c1",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:17 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:16 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "31e2cbfafaa6f98237d45709a6ada3c1",
- "x-ms-continuation-NextTableName": "1!48!dGVzdHRhYmxlYThqN2VteHgBMDFkNjVhMjE3MDkxZWVlZQ--",
- "x-ms-request-id": "20757025-b002-001b-6f21-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables",
- "value": [
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable5iefecvu\u0027)",
- "odata.editLink": "Tables(\u0027testtable5iefecvu\u0027)",
- "TableName": "testtable5iefecvu"
- },
{
"odata.type": "chrissscratch.Tables",
"odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable79wbq7vt\u0027)",
"odata.editLink": "Tables(\u0027testtable79wbq7vt\u0027)",
"TableName": "testtable79wbq7vt"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable7psww12c\u0027)",
- "odata.editLink": "Tables(\u0027testtable7psww12c\u0027)",
- "TableName": "testtable7psww12c"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable9szyhhkm\u0027)",
- "odata.editLink": "Tables(\u0027testtable9szyhhkm\u0027)",
- "TableName": "testtable9szyhhkm"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable9txmuphm\u0027)",
- "odata.editLink": "Tables(\u0027testtable9txmuphm\u0027)",
- "TableName": "testtable9txmuphm"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextTableName=1%2148%21dGVzdHRhYmxlYThqN2VteHgBMDFkNjVhMjE3MDkxZWVlZQ--",
+ "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextTableName=1%2148%21dGVzdHRhYmxlN3ptamxsdzEBMDFkNjVjODZmZGYwZWI5ZA--",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "0199e458cecc04fb00d67a60017aedab",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:17 GMT",
+ "x-ms-client-request-id": "31e2cbfafaa6f98237d45709a6ada3c1",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -651,16 +596,16 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:52 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "0199e458cecc04fb00d67a60017aedab",
- "x-ms-continuation-NextTableName": "1!48!dGVzdHRhYmxlZnh5dXI4ODYBMDFkNjVhMjE2Zjg4MGVmZQ--",
- "x-ms-request-id": "2075702c-b002-001b-7621-5aea7a000000",
+ "x-ms-client-request-id": "31e2cbfafaa6f98237d45709a6ada3c1",
+ "x-ms-continuation-NextTableName": "1!48!dGVzdHRhYmxldm85bHd1dngBMDFkNjVjODZlZmZlZTIzOQ--",
+ "x-ms-request-id": "9b333f16-4002-002c-6386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -672,80 +617,12 @@
"odata.editLink": "Tables(\u0027testtableb3xav580\u0027)",
"TableName": "testtableb3xav580"
},
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableb8qgukae\u0027)",
- "odata.editLink": "Tables(\u0027testtableb8qgukae\u0027)",
- "TableName": "testtableb8qgukae"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabledxymqs21\u0027)",
- "odata.editLink": "Tables(\u0027testtabledxymqs21\u0027)",
- "TableName": "testtabledxymqs21"
- },
{
"odata.type": "chrissscratch.Tables",
"odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablee59ynmvr\u0027)",
"odata.editLink": "Tables(\u0027testtablee59ynmvr\u0027)",
"TableName": "testtablee59ynmvr"
},
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablefvgwmg7c\u0027)",
- "odata.editLink": "Tables(\u0027testtablefvgwmg7c\u0027)",
- "TableName": "testtablefvgwmg7c"
- }
- ]
- }
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextTableName=1%2148%21dGVzdHRhYmxlZnh5dXI4ODYBMDFkNjVhMjE2Zjg4MGVmZQ--",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "DataServiceVersion": "3.0",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "5bf40c4ca167baa750a0f323972758cc",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:17 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:16 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "5bf40c4ca167baa750a0f323972758cc",
- "x-ms-continuation-NextTableName": "1!48!dGVzdHRhYmxlcGozYTN4YXUBMDFkNjVhMjE3ZTQxN2UyNg--",
- "x-ms-request-id": "20757034-b002-001b-7d21-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables",
- "value": [
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablekumj2pc7\u0027)",
- "odata.editLink": "Tables(\u0027testtablekumj2pc7\u0027)",
- "TableName": "testtablekumj2pc7"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablem4bhqtqv\u0027)",
- "odata.editLink": "Tables(\u0027testtablem4bhqtqv\u0027)",
- "TableName": "testtablem4bhqtqv"
- },
{
"odata.type": "chrissscratch.Tables",
"odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablen1vzvior\u0027)",
@@ -758,95 +635,28 @@
"odata.editLink": "Tables(\u0027testtableom98i6w7\u0027)",
"TableName": "testtableom98i6w7"
},
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablepdprm1am\u0027)",
- "odata.editLink": "Tables(\u0027testtablepdprm1am\u0027)",
- "TableName": "testtablepdprm1am"
- }
- ]
- }
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextTableName=1%2148%21dGVzdHRhYmxlcGozYTN4YXUBMDFkNjVhMjE3ZTQxN2UyNg--",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "DataServiceVersion": "3.0",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "7df655a876d52c46d0de30d08021f8bc",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:17 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:17 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "7df655a876d52c46d0de30d08021f8bc",
- "x-ms-continuation-NextTableName": "1!48!dGVzdHRhYmxlejRtNG5tdzQBMDFkNjVhMjE2ZWUyZjk5MQ--",
- "x-ms-request-id": "2075703b-b002-001b-0421-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables",
- "value": [
{
"odata.type": "chrissscratch.Tables",
"odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableug02ed3p\u0027)",
"odata.editLink": "Tables(\u0027testtableug02ed3p\u0027)",
"TableName": "testtableug02ed3p"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablev9pwhgv8\u0027)",
- "odata.editLink": "Tables(\u0027testtablev9pwhgv8\u0027)",
- "TableName": "testtablev9pwhgv8"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablex5iqmdsp\u0027)",
- "odata.editLink": "Tables(\u0027testtablex5iqmdsp\u0027)",
- "TableName": "testtablex5iqmdsp"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablexvcatiga\u0027)",
- "odata.editLink": "Tables(\u0027testtablexvcatiga\u0027)",
- "TableName": "testtablexvcatiga"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablez4asskk8\u0027)",
- "odata.editLink": "Tables(\u0027testtablez4asskk8\u0027)",
- "TableName": "testtablez4asskk8"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextTableName=1%2148%21dGVzdHRhYmxlejRtNG5tdzQBMDFkNjVhMjE2ZWUyZjk5MQ--",
+ "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextTableName=1%2148%21dGVzdHRhYmxldm85bHd1dngBMDFkNjVjODZlZmZlZTIzOQ--",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "99bcabe747b8b6593ddfb12bdbd76cd9",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:17 GMT",
+ "x-ms-client-request-id": "0199e458cecc04fb00d67a60017aedab",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -855,15 +665,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:17 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:52 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "99bcabe747b8b6593ddfb12bdbd76cd9",
- "x-ms-request-id": "20757047-b002-001b-1021-5aea7a000000",
+ "x-ms-client-request-id": "0199e458cecc04fb00d67a60017aedab",
+ "x-ms-request-id": "9b333f1c-4002-002c-6986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -871,9 +681,9 @@
"value": [
{
"odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablezjkkt2i8\u0027)",
- "odata.editLink": "Tables(\u0027testtablezjkkt2i8\u0027)",
- "TableName": "testtablezjkkt2i8"
+ "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablex5iqmdsp\u0027)",
+ "odata.editLink": "Tables(\u0027testtablex5iqmdsp\u0027)",
+ "TableName": "testtablex5iqmdsp"
}
]
}
@@ -884,13 +694,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-2e630855da2e1a4e9fb875f42b90e8e3-ce7132a6dae9ab40-00",
+ "traceparent": "00-eca996d1b573094d86ce40ab3f623d17-7e81af0c3924a04d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "abb8ad7d6f84d5d6c6c88b8971d63a2e",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:17 GMT",
+ "x-ms-client-request-id": "5bf40c4ca167baa750a0f323972758cc",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -899,14 +709,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:17 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:52 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "abb8ad7d6f84d5d6c6c88b8971d63a2e",
- "x-ms-request-id": "2075704d-b002-001b-1521-5aea7a000000",
+ "x-ms-client-request-id": "5bf40c4ca167baa750a0f323972758cc",
+ "x-ms-request-id": "9b333f21-4002-002c-6d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -917,13 +727,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-d8b5ca461263224b9b7544f8c9a73057-ab989fe03c24f149-00",
+ "traceparent": "00-281e1adea9e45b4c8bb2572a698d548c-6f3e2c31dfb76b47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "ec3c36a8bf6a6014fc3f40f6c51b50f8",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:17 GMT",
+ "x-ms-client-request-id": "7df655a876d52c46d0de30d08021f8bc",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -932,14 +742,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:17 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:52 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "ec3c36a8bf6a6014fc3f40f6c51b50f8",
- "x-ms-request-id": "20757050-b002-001b-1821-5aea7a000000",
+ "x-ms-client-request-id": "7df655a876d52c46d0de30d08021f8bc",
+ "x-ms-request-id": "9b333f24-4002-002c-7086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -950,13 +760,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-decbc7268ca7a74aba29e74ca02b483f-bf6e3c7e61fd0b4f-00",
+ "traceparent": "00-34d1ae3eceb1d74e93995d284161e3e6-1bc3bd3950f37c48-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "d25256714d697738d5e6d2efbcd04566",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:17 GMT",
+ "x-ms-client-request-id": "99bcabe747b8b6593ddfb12bdbd76cd9",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -965,14 +775,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:17 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:52 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "d25256714d697738d5e6d2efbcd04566",
- "x-ms-request-id": "20757054-b002-001b-1c21-5aea7a000000",
+ "x-ms-client-request-id": "99bcabe747b8b6593ddfb12bdbd76cd9",
+ "x-ms-request-id": "9b333f2e-4002-002c-7a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -983,13 +793,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-8217620a03ef9446823b9a3900585e9f-e813c4711c07c642-00",
+ "traceparent": "00-9f97d6f390c2d045bf9bcc629a72210a-5d5b0362edb96145-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "a48282a4809bbe6f9957af442fdf10ab",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:17 GMT",
+ "x-ms-client-request-id": "abb8ad7d6f84d5d6c6c88b8971d63a2e",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -998,14 +808,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:17 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:52 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a48282a4809bbe6f9957af442fdf10ab",
- "x-ms-request-id": "2075705d-b002-001b-2521-5aea7a000000",
+ "x-ms-client-request-id": "abb8ad7d6f84d5d6c6c88b8971d63a2e",
+ "x-ms-request-id": "9b333f3a-4002-002c-0686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -1016,13 +826,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-cae71ce189c3bc4fa7c47d739fda4258-b3fb87cf226f6144-00",
+ "traceparent": "00-4a3842a9c47ddc44b08534757578b693-052f3812d117ff40-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "1a17937867835bc5fdc41683ec24a42b",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:17 GMT",
+ "x-ms-client-request-id": "ec3c36a8bf6a6014fc3f40f6c51b50f8",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1031,14 +841,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:17 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:52 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "1a17937867835bc5fdc41683ec24a42b",
- "x-ms-request-id": "20757069-b002-001b-3021-5aea7a000000",
+ "x-ms-client-request-id": "ec3c36a8bf6a6014fc3f40f6c51b50f8",
+ "x-ms-request-id": "9b333f4b-4002-002c-1786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -1049,13 +859,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-b5bc46db9c28194b992935cb68e88d06-eadb23e516800f4d-00",
+ "traceparent": "00-5ed605d2d81676438df3ef73d318332f-0900f3d058f8cf47-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "4251d9faac98f15ce79439119df348f5",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:17 GMT",
+ "x-ms-client-request-id": "d25256714d697738d5e6d2efbcd04566",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1064,14 +874,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:17 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:52 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "4251d9faac98f15ce79439119df348f5",
- "x-ms-request-id": "2075706f-b002-001b-3621-5aea7a000000",
+ "x-ms-client-request-id": "d25256714d697738d5e6d2efbcd04566",
+ "x-ms-request-id": "9b333f5c-4002-002c-2886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -1082,13 +892,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-f17e68737cafec4b8d5225bf98c20a37-66b13ecf06e55c46-00",
+ "traceparent": "00-53c5f66ab8223b469b22ca67ef3abe3b-e87fa39dfe008f4b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "297726d62bb83de3bd27a6d669ebd175",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:18 GMT",
+ "x-ms-client-request-id": "a48282a4809bbe6f9957af442fdf10ab",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1097,14 +907,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:17 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:52 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "297726d62bb83de3bd27a6d669ebd175",
- "x-ms-request-id": "20757075-b002-001b-3b21-5aea7a000000",
+ "x-ms-client-request-id": "a48282a4809bbe6f9957af442fdf10ab",
+ "x-ms-request-id": "9b333f6e-4002-002c-3a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -1115,13 +925,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-03c21a30b643ed4cbd7b2d0b37c2db57-8e30c05367dd8b4a-00",
+ "traceparent": "00-c053aa1489590c479b9e038e2557e99c-09e476a9f7243b4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "554a83b3ce8dcb13362632ef2eb3bd0a",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:18 GMT",
+ "x-ms-client-request-id": "1a17937867835bc5fdc41683ec24a42b",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1130,14 +940,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:17 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:52 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "554a83b3ce8dcb13362632ef2eb3bd0a",
- "x-ms-request-id": "20757079-b002-001b-3f21-5aea7a000000",
+ "x-ms-client-request-id": "1a17937867835bc5fdc41683ec24a42b",
+ "x-ms-request-id": "9b333f77-4002-002c-4186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -1148,13 +958,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-73853cb093d2b34797f707592884158b-b91946dee18b454d-00",
+ "traceparent": "00-e02c77338df3b2478b205ea30ebd01e8-31a0181e38621844-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "c5ad217c7aacce73f6148470058588fb",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:18 GMT",
+ "x-ms-client-request-id": "4251d9faac98f15ce79439119df348f5",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1163,14 +973,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:17 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:52 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c5ad217c7aacce73f6148470058588fb",
- "x-ms-request-id": "2075707f-b002-001b-4521-5aea7a000000",
+ "x-ms-client-request-id": "4251d9faac98f15ce79439119df348f5",
+ "x-ms-request-id": "9b333f80-4002-002c-4a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -1181,13 +991,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-fc8170331fd2f449bc18d13bea3aca14-246fd08af0c4d146-00",
+ "traceparent": "00-8a6d6192db4e9842afe5c141a4182dbf-d720713544029644-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "195dc3c2f2a9086713abf392f8f30e0a",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:18 GMT",
+ "x-ms-client-request-id": "297726d62bb83de3bd27a6d669ebd175",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1196,14 +1006,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:17 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:52 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "195dc3c2f2a9086713abf392f8f30e0a",
- "x-ms-request-id": "20757088-b002-001b-4d21-5aea7a000000",
+ "x-ms-client-request-id": "297726d62bb83de3bd27a6d669ebd175",
+ "x-ms-request-id": "9b333f85-4002-002c-4f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -1214,13 +1024,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-728eee1867751c459d1f47475609e333-3df248b7b6c69941-00",
+ "traceparent": "00-29f68bbdfd51da4eaf9712430cb016e2-5f6d6d71538c1549-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "475a9c6a0c3e38c8107c5f7949a2c6b0",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:18 GMT",
+ "x-ms-client-request-id": "554a83b3ce8dcb13362632ef2eb3bd0a",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:53 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1229,14 +1039,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:17 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:52 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "475a9c6a0c3e38c8107c5f7949a2c6b0",
- "x-ms-request-id": "20757094-b002-001b-5821-5aea7a000000",
+ "x-ms-client-request-id": "554a83b3ce8dcb13362632ef2eb3bd0a",
+ "x-ms-request-id": "9b333f8e-4002-002c-5886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetTablesReturnsTablesWithAndWithoutPagination(5)Async.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetTablesReturnsTablesWithAndWithoutPagination(5)Async.json
index 6e7776342293..d53d7f96d6e9 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetTablesReturnsTablesWithAndWithoutPagination(5)Async.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetTablesReturnsTablesWithAndWithoutPagination(5)Async.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-7288b85e95b65247997df35b4151ada0-5b8712285a46f141-00",
+ "traceparent": "00-3ba14a521a67a141b5d7b91762c32aad-c3c304c0f220704b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "23b24d96a377ce1cb365315cc55b269f",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:16 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable8sut6xez\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "23b24d96a377ce1cb365315cc55b269f",
- "x-ms-request-id": "207594a5-b002-001b-2b21-5aea7a000000",
+ "x-ms-request-id": "9b334f3d-4002-002c-0987-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d098ee60a78a664e9eecc1d16cad591e-c62dee53889c754f-00",
+ "traceparent": "00-1923f357a4cf6845b4ee2af3930248c1-499dbd3795d2ef4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "792821ad7b1fb7f8ccb71db0aff8eaed",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -70,7 +72,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:16 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablextisucyf\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -79,7 +81,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "792821ad7b1fb7f8ccb71db0aff8eaed",
- "x-ms-request-id": "207594b4-b002-001b-3721-5aea7a000000",
+ "x-ms-request-id": "9b334f49-4002-002c-1487-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -94,17 +96,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c2bc0c794c9d8f42b435cf50db3192d2-b6e7a1a1a44c374c-00",
+ "traceparent": "00-342dfd4f54df3a4983d6a2d8b1fc91b5-d9af215ad87dba42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0105f33b7522fb778d0e76557aa3ae38",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -115,7 +118,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:16 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabler2jje6kn\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -124,7 +127,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0105f33b7522fb778d0e76557aa3ae38",
- "x-ms-request-id": "207594c6-b002-001b-4721-5aea7a000000",
+ "x-ms-request-id": "9b334f52-4002-002c-1c87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -139,17 +142,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-3d89f108934403419ba5c0fa4e49b1b4-5efba3458b48c047-00",
+ "traceparent": "00-b80b417ece1bc647836055a3ae78ca42-01fe7d4ce9ebc641-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d8e999e5dccc67f958413d2b75f69557",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -160,7 +164,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:16 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableo4ckbs23\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -169,7 +173,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d8e999e5dccc67f958413d2b75f69557",
- "x-ms-request-id": "207594d5-b002-001b-5321-5aea7a000000",
+ "x-ms-request-id": "9b334f59-4002-002c-2287-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -184,17 +188,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-90e149d20fc14941b592c4214e954270-09a5f807b98d2b4b-00",
+ "traceparent": "00-444765a807fe6843b57fa8851c5ca240-43d15af232c33343-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "307595cabbb5c5a902691c898c9e2fb1",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:06 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -205,7 +210,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:16 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablefzxgkuso\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -214,7 +219,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "307595cabbb5c5a902691c898c9e2fb1",
- "x-ms-request-id": "207594da-b002-001b-5721-5aea7a000000",
+ "x-ms-request-id": "9b334f62-4002-002c-2a87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -229,17 +234,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-0f6ef10d77a8d94a95b0647c116191cb-a261428098aade46-00",
+ "traceparent": "00-c635fba511f0ef4281003045ae63d7e6-494b6852adfdcb4c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1cce39e45053501a25600e3666c8b19d",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:06 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -250,7 +256,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:16 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable7aqbk6kz\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -259,7 +265,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "1cce39e45053501a25600e3666c8b19d",
- "x-ms-request-id": "207594e4-b002-001b-5e21-5aea7a000000",
+ "x-ms-request-id": "9b334f68-4002-002c-2f87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -274,17 +280,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d14b836335808048a0faaa82c54f52ef-449617a1474cc649-00",
+ "traceparent": "00-710dbf65c91e7142878d10eaa0249130-aaeeadfd1526b045-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "738a71f23a974723d2ff4b7cec8d71b2",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:06 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -295,7 +302,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:16 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable9x9dtmr3\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -304,7 +311,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "738a71f23a974723d2ff4b7cec8d71b2",
- "x-ms-request-id": "207594ec-b002-001b-6521-5aea7a000000",
+ "x-ms-request-id": "9b334f74-4002-002c-3987-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -319,17 +326,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f704e1ad4d10cf40a8c73379c7d7c171-da785486fdccaf45-00",
+ "traceparent": "00-781112ba4df5f54898ad86afb1fc0c39-56809e9a393e4b41-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "eca1605db759d89c6e2c29e2c6a7b9eb",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:06 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -340,7 +348,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:16 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabletsi6xc0f\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -349,7 +357,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "eca1605db759d89c6e2c29e2c6a7b9eb",
- "x-ms-request-id": "207594fa-b002-001b-7121-5aea7a000000",
+ "x-ms-request-id": "9b334f7f-4002-002c-4287-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -364,17 +372,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-8c36e51ebfd69d47a2216a3790d42ead-b0ff54a5ca96bd43-00",
+ "traceparent": "00-6048e88c89482048addbbe0dffa8a148-67c57fc148b9d44b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0fbd76079ea9fa12263d16369936ed1b",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:06 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -385,7 +394,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:16 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabletsqo88n9\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -394,7 +403,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0fbd76079ea9fa12263d16369936ed1b",
- "x-ms-request-id": "20759500-b002-001b-7621-5aea7a000000",
+ "x-ms-request-id": "9b334f8c-4002-002c-4e87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -409,17 +418,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6560c273f14f7048b15d1c5e2430fa6a-acae1486a261664c-00",
+ "traceparent": "00-c2119b408cc9c446bf66a26ffa882451-fdd052734da7d24b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c8ee7711e39328d0af96e5e3f98d2fd0",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:06 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -430,7 +440,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:16 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable9ygwn13k\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -439,7 +449,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "c8ee7711e39328d0af96e5e3f98d2fd0",
- "x-ms-request-id": "2075950d-b002-001b-0221-5aea7a000000",
+ "x-ms-request-id": "9b334f97-4002-002c-5887-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -454,17 +464,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-fa5034dc3405d24eae2df4aca53db688-d15c2e20586e4844-00",
+ "traceparent": "00-205c7450b0adb845b2e8d90ea0778339-443df5db5fdb1e43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "090449daef2678a78a16fd31b04a6743",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:06 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -475,7 +486,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:16 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableeb5kiv8c\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -484,7 +495,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "090449daef2678a78a16fd31b04a6743",
- "x-ms-request-id": "20759516-b002-001b-0a21-5aea7a000000",
+ "x-ms-request-id": "9b334fa0-4002-002c-6087-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -499,14 +510,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0387ed6c0a51d521443ea634d262168f",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:06 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -515,7 +527,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:16 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -523,92 +535,24 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0387ed6c0a51d521443ea634d262168f",
- "x-ms-continuation-NextTableName": "1!48!dGVzdHRhYmxlOWNxZDZ1dDkBMDFkNjVhMjE5YTk5NjI1ZQ--",
- "x-ms-request-id": "20759521-b002-001b-1421-5aea7a000000",
+ "x-ms-continuation-NextTableName": "1!48!dGVzdHRhYmxlZWpoaTI4ZjgBMDFkNjVjODcwYmMwYmZhOA--",
+ "x-ms-request-id": "9b334fa9-4002-002c-6887-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
"odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables",
"value": [
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable4ns9b5g3\u0027)",
- "odata.editLink": "Tables(\u0027testtable4ns9b5g3\u0027)",
- "TableName": "testtable4ns9b5g3"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable5iefecvu\u0027)",
- "odata.editLink": "Tables(\u0027testtable5iefecvu\u0027)",
- "TableName": "testtable5iefecvu"
- },
{
"odata.type": "chrissscratch.Tables",
"odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable7aqbk6kz\u0027)",
"odata.editLink": "Tables(\u0027testtable7aqbk6kz\u0027)",
"TableName": "testtable7aqbk6kz"
},
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable7psww12c\u0027)",
- "odata.editLink": "Tables(\u0027testtable7psww12c\u0027)",
- "TableName": "testtable7psww12c"
- },
{
"odata.type": "chrissscratch.Tables",
"odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable8sut6xez\u0027)",
"odata.editLink": "Tables(\u0027testtable8sut6xez\u0027)",
"TableName": "testtable8sut6xez"
- }
- ]
- }
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextTableName=1%2148%21dGVzdHRhYmxlOWNxZDZ1dDkBMDFkNjVhMjE5YTk5NjI1ZQ--",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "DataServiceVersion": "3.0",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "4aede725c6debf01ee6c58e390fd1fd0",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:06 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:05 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "4aede725c6debf01ee6c58e390fd1fd0",
- "x-ms-continuation-NextTableName": "1!48!dGVzdHRhYmxlY2hhcWxpNzcBMDFkNjVhMjE4ZDExNjA3Mw--",
- "x-ms-request-id": "2075952f-b002-001b-1e21-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables",
- "value": [
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable9szyhhkm\u0027)",
- "odata.editLink": "Tables(\u0027testtable9szyhhkm\u0027)",
- "TableName": "testtable9szyhhkm"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable9txmuphm\u0027)",
- "odata.editLink": "Tables(\u0027testtable9txmuphm\u0027)",
- "TableName": "testtable9txmuphm"
},
{
"odata.type": "chrissscratch.Tables",
@@ -622,95 +566,28 @@
"odata.editLink": "Tables(\u0027testtable9ygwn13k\u0027)",
"TableName": "testtable9ygwn13k"
},
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableb8qgukae\u0027)",
- "odata.editLink": "Tables(\u0027testtableb8qgukae\u0027)",
- "TableName": "testtableb8qgukae"
- }
- ]
- }
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextTableName=1%2148%21dGVzdHRhYmxlY2hhcWxpNzcBMDFkNjVhMjE4ZDExNjA3Mw--",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "DataServiceVersion": "3.0",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "a31c78c84efbd0b5272ec4e84973a528",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:06 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:05 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "a31c78c84efbd0b5272ec4e84973a528",
- "x-ms-continuation-NextTableName": "1!48!dGVzdHRhYmxlbHJ2eW83MjQBMDFkNjVhMjE5YmNkMWE0Mw--",
- "x-ms-request-id": "20759536-b002-001b-2521-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables",
- "value": [
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabledxymqs21\u0027)",
- "odata.editLink": "Tables(\u0027testtabledxymqs21\u0027)",
- "TableName": "testtabledxymqs21"
- },
{
"odata.type": "chrissscratch.Tables",
"odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableeb5kiv8c\u0027)",
"odata.editLink": "Tables(\u0027testtableeb5kiv8c\u0027)",
"TableName": "testtableeb5kiv8c"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablefvgwmg7c\u0027)",
- "odata.editLink": "Tables(\u0027testtablefvgwmg7c\u0027)",
- "TableName": "testtablefvgwmg7c"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablefzxgkuso\u0027)",
- "odata.editLink": "Tables(\u0027testtablefzxgkuso\u0027)",
- "TableName": "testtablefzxgkuso"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablekumj2pc7\u0027)",
- "odata.editLink": "Tables(\u0027testtablekumj2pc7\u0027)",
- "TableName": "testtablekumj2pc7"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextTableName=1%2148%21dGVzdHRhYmxlbHJ2eW83MjQBMDFkNjVhMjE5YmNkMWE0Mw--",
+ "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextTableName=1%2148%21dGVzdHRhYmxlZWpoaTI4ZjgBMDFkNjVjODcwYmMwYmZhOA--",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "c80b6d001c5ca664ecc714e4b13e4546",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:06 GMT",
+ "x-ms-client-request-id": "4aede725c6debf01ee6c58e390fd1fd0",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -719,16 +596,16 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:16 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "c80b6d001c5ca664ecc714e4b13e4546",
- "x-ms-continuation-NextTableName": "1!48!dGVzdHRhYmxldHNxbzg4bjkBMDFkNjVhMjE5Yzc1YjJkYQ--",
- "x-ms-request-id": "2075953b-b002-001b-2a21-5aea7a000000",
+ "x-ms-client-request-id": "4aede725c6debf01ee6c58e390fd1fd0",
+ "x-ms-continuation-NextTableName": "1!48!dGVzdHRhYmxldWcwMmVkM3ABMDFkNjVjODZmZWZlZWMwNw--",
+ "x-ms-request-id": "9b334fb1-4002-002c-7087-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -736,9 +613,9 @@
"value": [
{
"odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablem4bhqtqv\u0027)",
- "odata.editLink": "Tables(\u0027testtablem4bhqtqv\u0027)",
- "TableName": "testtablem4bhqtqv"
+ "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablefzxgkuso\u0027)",
+ "odata.editLink": "Tables(\u0027testtablefzxgkuso\u0027)",
+ "TableName": "testtablefzxgkuso"
},
{
"odata.type": "chrissscratch.Tables",
@@ -746,12 +623,6 @@
"odata.editLink": "Tables(\u0027testtableo4ckbs23\u0027)",
"TableName": "testtableo4ckbs23"
},
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablepdprm1am\u0027)",
- "odata.editLink": "Tables(\u0027testtablepdprm1am\u0027)",
- "TableName": "testtablepdprm1am"
- },
{
"odata.type": "chrissscratch.Tables",
"odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabler2jje6kn\u0027)",
@@ -763,90 +634,29 @@
"odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabletsi6xc0f\u0027)",
"odata.editLink": "Tables(\u0027testtabletsi6xc0f\u0027)",
"TableName": "testtabletsi6xc0f"
- }
- ]
- }
- },
- {
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextTableName=1%2148%21dGVzdHRhYmxldHNxbzg4bjkBMDFkNjVhMjE5Yzc1YjJkYQ--",
- "RequestMethod": "GET",
- "RequestHeaders": {
- "Authorization": "Sanitized",
- "DataServiceVersion": "3.0",
- "User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
- ],
- "x-ms-client-request-id": "5a6cd61e7246d793311d23b00219767b",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:06 GMT",
- "x-ms-return-client-request-id": "true",
- "x-ms-version": "2019-02-02"
- },
- "RequestBody": null,
- "StatusCode": 200,
- "ResponseHeaders": {
- "Cache-Control": "no-cache",
- "Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:05 GMT",
- "Server": [
- "Windows-Azure-Table/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "Transfer-Encoding": "chunked",
- "X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "5a6cd61e7246d793311d23b00219767b",
- "x-ms-continuation-NextTableName": "1!48!dGVzdHRhYmxlempra3QyaTgBMDFkNjNhOWQ2NzM5NWFiNw--",
- "x-ms-request-id": "20759544-b002-001b-3321-5aea7a000000",
- "x-ms-version": "2019-02-02"
- },
- "ResponseBody": {
- "odata.metadata": "https://chrissscratch.table.core.windows.net/$metadata#Tables",
- "value": [
+ },
{
"odata.type": "chrissscratch.Tables",
"odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabletsqo88n9\u0027)",
"odata.editLink": "Tables(\u0027testtabletsqo88n9\u0027)",
"TableName": "testtabletsqo88n9"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablev9pwhgv8\u0027)",
- "odata.editLink": "Tables(\u0027testtablev9pwhgv8\u0027)",
- "TableName": "testtablev9pwhgv8"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablextisucyf\u0027)",
- "odata.editLink": "Tables(\u0027testtablextisucyf\u0027)",
- "TableName": "testtablextisucyf"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablexvcatiga\u0027)",
- "odata.editLink": "Tables(\u0027testtablexvcatiga\u0027)",
- "TableName": "testtablexvcatiga"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablez4asskk8\u0027)",
- "odata.editLink": "Tables(\u0027testtablez4asskk8\u0027)",
- "TableName": "testtablez4asskk8"
}
]
}
},
{
- "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextTableName=1%2148%21dGVzdHRhYmxlempra3QyaTgBMDFkNjNhOWQ2NzM5NWFiNw--",
+ "RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$top=5\u0026NextTableName=1%2148%21dGVzdHRhYmxldWcwMmVkM3ABMDFkNjVjODZmZWZlZWMwNw--",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "22e32fc656f2ab731476b73439d11ee9",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:06 GMT",
+ "x-ms-client-request-id": "a31c78c84efbd0b5272ec4e84973a528",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -855,15 +665,15 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:16 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "22e32fc656f2ab731476b73439d11ee9",
- "x-ms-request-id": "20759549-b002-001b-3721-5aea7a000000",
+ "x-ms-client-request-id": "a31c78c84efbd0b5272ec4e84973a528",
+ "x-ms-request-id": "9b334fb5-4002-002c-7487-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -871,9 +681,9 @@
"value": [
{
"odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablezjkkt2i8\u0027)",
- "odata.editLink": "Tables(\u0027testtablezjkkt2i8\u0027)",
- "TableName": "testtablezjkkt2i8"
+ "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablextisucyf\u0027)",
+ "odata.editLink": "Tables(\u0027testtablextisucyf\u0027)",
+ "TableName": "testtablextisucyf"
}
]
}
@@ -884,13 +694,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-5254f4c042e60146ba22d52ae4f08650-b8b5a4ec0d137147-00",
+ "traceparent": "00-45053d4ef20ecb4d9f7961eeb88243f5-df57c521c4ba8b48-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "72ca7de84b078de2d934973ef9b3a3d3",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:06 GMT",
+ "x-ms-client-request-id": "c80b6d001c5ca664ecc714e4b13e4546",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -899,14 +709,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:16 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "72ca7de84b078de2d934973ef9b3a3d3",
- "x-ms-request-id": "2075954a-b002-001b-3821-5aea7a000000",
+ "x-ms-client-request-id": "c80b6d001c5ca664ecc714e4b13e4546",
+ "x-ms-request-id": "9b334fbc-4002-002c-7b87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -917,13 +727,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-4836460542937448aa169b81ef912c93-5ba5055122598647-00",
+ "traceparent": "00-59608a0780e11845bfda8399fa4491ec-6f49654bddf08e4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "821d9950235bc75462c046cfbb5f9d60",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:06 GMT",
+ "x-ms-client-request-id": "5a6cd61e7246d793311d23b00219767b",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -932,14 +742,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:16 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "821d9950235bc75462c046cfbb5f9d60",
- "x-ms-request-id": "2075954e-b002-001b-3c21-5aea7a000000",
+ "x-ms-client-request-id": "5a6cd61e7246d793311d23b00219767b",
+ "x-ms-request-id": "9b334fc8-4002-002c-0787-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -950,13 +760,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-7776e732181e8743b934c3b6cd95d37d-9082cfcf515a7640-00",
+ "traceparent": "00-e3da41612f6c4c4c824e3d1602216767-005d71414e935442-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "84c739ff034e7b744d5548bebf35b260",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:06 GMT",
+ "x-ms-client-request-id": "22e32fc656f2ab731476b73439d11ee9",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -965,14 +775,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:06 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:16 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "84c739ff034e7b744d5548bebf35b260",
- "x-ms-request-id": "20759554-b002-001b-4121-5aea7a000000",
+ "x-ms-client-request-id": "22e32fc656f2ab731476b73439d11ee9",
+ "x-ms-request-id": "9b334fd0-4002-002c-0f87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -983,13 +793,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-de9675bcc1c90c4c9610f6481d34c569-4043c6c1e07e2242-00",
+ "traceparent": "00-4156e922c14eb647a8b3efbd330fb514-cc521e2d6d57e944-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "9fe3e4d29cb3c58d290210460512d27a",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:06 GMT",
+ "x-ms-client-request-id": "72ca7de84b078de2d934973ef9b3a3d3",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -998,14 +808,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:06 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:16 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "9fe3e4d29cb3c58d290210460512d27a",
- "x-ms-request-id": "2075955e-b002-001b-4921-5aea7a000000",
+ "x-ms-client-request-id": "72ca7de84b078de2d934973ef9b3a3d3",
+ "x-ms-request-id": "9b334fd7-4002-002c-1687-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -1016,13 +826,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-db4d4eb4216006458f7389bf71ba985a-61929f756b80d442-00",
+ "traceparent": "00-efb09b856c0fee4b855f56385f79f600-387adc65d8a41043-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "bf3f37961fec4c8425a23405da96082d",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:06 GMT",
+ "x-ms-client-request-id": "821d9950235bc75462c046cfbb5f9d60",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1031,14 +841,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:06 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:16 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "bf3f37961fec4c8425a23405da96082d",
- "x-ms-request-id": "20759567-b002-001b-5121-5aea7a000000",
+ "x-ms-client-request-id": "821d9950235bc75462c046cfbb5f9d60",
+ "x-ms-request-id": "9b334fe0-4002-002c-1f87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -1049,13 +859,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-0b2c2ba650f0e44897b1df9ae43c6ae0-da0c2f5cb7c18c43-00",
+ "traceparent": "00-1acced721386aa4b8befb1ae317f76b5-5218a1c9d50dbf40-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "d6fde50efd7b63acac025b4cf32d763b",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:06 GMT",
+ "x-ms-client-request-id": "84c739ff034e7b744d5548bebf35b260",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1064,14 +874,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:06 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:17 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "d6fde50efd7b63acac025b4cf32d763b",
- "x-ms-request-id": "2075956f-b002-001b-5721-5aea7a000000",
+ "x-ms-client-request-id": "84c739ff034e7b744d5548bebf35b260",
+ "x-ms-request-id": "9b334fe4-4002-002c-2387-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -1082,13 +892,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-d4fb5d811769ff4f92d05e9470755ebe-7242628684de2443-00",
+ "traceparent": "00-f53745508576cb4491f6aea294471ded-2c3aa9759642da4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "8727ce82f2f6b37360977a116788ea92",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:06 GMT",
+ "x-ms-client-request-id": "9fe3e4d29cb3c58d290210460512d27a",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1097,14 +907,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:06 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:17 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "8727ce82f2f6b37360977a116788ea92",
- "x-ms-request-id": "20759576-b002-001b-5e21-5aea7a000000",
+ "x-ms-client-request-id": "9fe3e4d29cb3c58d290210460512d27a",
+ "x-ms-request-id": "9b334fec-4002-002c-2a87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -1115,13 +925,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-40783efd7e035a4a80c6af45671b997d-e76590bf84184e4d-00",
+ "traceparent": "00-96180e1bab43794cba1eafe19ce04823-e3d9768ab28fe64a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "1f37e3fafc1598fe8adc13e9c33758f7",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:06 GMT",
+ "x-ms-client-request-id": "bf3f37961fec4c8425a23405da96082d",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1130,14 +940,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:06 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:17 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "1f37e3fafc1598fe8adc13e9c33758f7",
- "x-ms-request-id": "20759581-b002-001b-6921-5aea7a000000",
+ "x-ms-client-request-id": "bf3f37961fec4c8425a23405da96082d",
+ "x-ms-request-id": "9b334ff3-4002-002c-3187-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -1148,13 +958,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-62256eb2625f0347953138759f4a6232-d55e52849e170e45-00",
+ "traceparent": "00-11e9f0ee69e6cb4f90c17f866d70a25a-d40e8c42b82be840-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "0c82f92c806e1c37724976e4839bfb23",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:06 GMT",
+ "x-ms-client-request-id": "d6fde50efd7b63acac025b4cf32d763b",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1163,14 +973,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:06 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:17 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "0c82f92c806e1c37724976e4839bfb23",
- "x-ms-request-id": "20759588-b002-001b-7021-5aea7a000000",
+ "x-ms-client-request-id": "d6fde50efd7b63acac025b4cf32d763b",
+ "x-ms-request-id": "9b334ff6-4002-002c-3487-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -1181,13 +991,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-b2455838fd741d40bd3e965c001c5445-08b7d00a5f217348-00",
+ "traceparent": "00-d0dcb05da6af4142bf9a97ae77ca1af0-d2757f4119f87f42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "1051c81856f68625d08efc19df89ef28",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:07 GMT",
+ "x-ms-client-request-id": "8727ce82f2f6b37360977a116788ea92",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1196,14 +1006,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:06 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:17 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "1051c81856f68625d08efc19df89ef28",
- "x-ms-request-id": "2075958e-b002-001b-7621-5aea7a000000",
+ "x-ms-client-request-id": "8727ce82f2f6b37360977a116788ea92",
+ "x-ms-request-id": "9b335004-4002-002c-4087-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -1214,13 +1024,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-a313cc3ab091b5449954047ce5535c0a-699062e134b6be43-00",
+ "traceparent": "00-17016e7e00cb474a91cb8659bcd7d082-0edc52d0fe72e041-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
- "x-ms-client-request-id": "6ee5823edd057a24ab1badcb851915ef",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:07 GMT",
+ "x-ms-client-request-id": "1f37e3fafc1598fe8adc13e9c33758f7",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:18 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1229,14 +1039,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:06 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:17 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
- "x-ms-client-request-id": "6ee5823edd057a24ab1badcb851915ef",
- "x-ms-request-id": "2075959b-b002-001b-7f21-5aea7a000000",
+ "x-ms-client-request-id": "1f37e3fafc1598fe8adc13e9c33758f7",
+ "x-ms-request-id": "9b33500a-4002-002c-4687-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetTablesReturnsTablesWithAndWithoutPagination(null).json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetTablesReturnsTablesWithAndWithoutPagination(null).json
index 24efe986483d..7d10854dc3fb 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetTablesReturnsTablesWithAndWithoutPagination(null).json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetTablesReturnsTablesWithAndWithoutPagination(null).json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-926f2edee330ce498e56d5f0044e08ab-d9c667d2df050b49-00",
+ "traceparent": "00-7a90ec6f8f8926419a72b4ae7075ea53-a3f43bdbd5586d45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f2fc50a5959914481344fd76c6df9a18",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:15 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:50 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablen1bo90iu\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f2fc50a5959914481344fd76c6df9a18",
- "x-ms-request-id": "20756ecc-b002-001b-3e21-5aea7a000000",
+ "x-ms-request-id": "9b333dc4-4002-002c-3186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-6c9761cb98ca6c4494e01ee395ee267c-3fbc527d8581ce4a-00",
+ "traceparent": "00-6e5f55cfa8aeba41941689cb9a831953-43f5a5e21a81e14c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d2456b293272616721d49d24d4600afe",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -70,7 +72,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:15 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:50 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablep5fiujqy\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -79,7 +81,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d2456b293272616721d49d24d4600afe",
- "x-ms-request-id": "20756ed5-b002-001b-4421-5aea7a000000",
+ "x-ms-request-id": "9b333dcd-4002-002c-3986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -94,17 +96,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-0aba38fe9ede5d49b712fc12987059e8-0f68a1d1079ea246-00",
+ "traceparent": "00-7b1a1bcd8a22c04784d26a93d925b1fa-28154b1178728a45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6346f7a3ef93a76469e6c92d5075a2e0",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -115,7 +118,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:15 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:50 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableczmy5hsf\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -124,7 +127,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "6346f7a3ef93a76469e6c92d5075a2e0",
- "x-ms-request-id": "20756ede-b002-001b-4a21-5aea7a000000",
+ "x-ms-request-id": "9b333dd1-4002-002c-3c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -139,17 +142,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-66b05a4742668c44bdcd27c4809851fb-501d42db46a4994a-00",
+ "traceparent": "00-e2bb9964ac79224ebf37a086b9b63873-88323941970a414a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5784d35c2002ff71f9e02f7aeb04ce32",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -160,7 +164,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:15 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:50 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabledoy9qdhh\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -169,7 +173,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "5784d35c2002ff71f9e02f7aeb04ce32",
- "x-ms-request-id": "20756eeb-b002-001b-5621-5aea7a000000",
+ "x-ms-request-id": "9b333dd9-4002-002c-4386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -184,17 +188,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-38cc4fe035dbde4fb0e2d513977cdbfe-b11e71bb553e0746-00",
+ "traceparent": "00-d6ae60b690ce3c44b989b312935df487-dc30aef89ad5294e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "09ea193b80d42e22b3fe06bf6a0ca448",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -205,7 +210,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:15 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:50 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablez62aze2r\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -214,7 +219,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "09ea193b80d42e22b3fe06bf6a0ca448",
- "x-ms-request-id": "20756ef5-b002-001b-5e21-5aea7a000000",
+ "x-ms-request-id": "9b333deb-4002-002c-5186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -229,17 +234,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-95e154e5eae54a41a6f1fc7b9a7234a9-4987acfb47002d4b-00",
+ "traceparent": "00-eac7d0b0d5159b46b1186243b483829f-f6ecdb70ab1dc74d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4b8121cd56b97fb125d71ce936682b78",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -250,7 +256,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:15 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:50 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableqy4xq48i\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -259,7 +265,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "4b8121cd56b97fb125d71ce936682b78",
- "x-ms-request-id": "20756f00-b002-001b-6821-5aea7a000000",
+ "x-ms-request-id": "9b333df1-4002-002c-5686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -274,17 +280,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-14ac8321da7fa844a46f30e0bcb0c42f-cd78509acf198048-00",
+ "traceparent": "00-75f09b06262b554585037f1d8dd7e89a-b1f379a70b1ca54d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "cd7973503ea9136624133cb2ffd7755d",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -295,7 +302,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:15 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:50 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablejskfljdt\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -304,7 +311,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "cd7973503ea9136624133cb2ffd7755d",
- "x-ms-request-id": "20756f08-b002-001b-6f21-5aea7a000000",
+ "x-ms-request-id": "9b333dfb-4002-002c-5f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -319,17 +326,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1bb46a8ef4c54b4a8bbe6d1a3c2508e2-2736c0a58d228a4f-00",
+ "traceparent": "00-1420dfe005b4ba40b8795aa126dc8966-ec6fe25db3be6c43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "45b1bb9e0760bfd8591cfa45dce4d6e7",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -340,7 +348,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:15 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:50 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablekf4fuoge\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -349,7 +357,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "45b1bb9e0760bfd8591cfa45dce4d6e7",
- "x-ms-request-id": "20756f15-b002-001b-7b21-5aea7a000000",
+ "x-ms-request-id": "9b333dfe-4002-002c-6186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -364,17 +372,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-d356af7a9255c34fa42ffcd1b9f97648-fc6a9133e1e3de4c-00",
+ "traceparent": "00-c76249ba61e4f1489e39f3fabbd47468-a30c43751e9de14e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "779f6a8b34749574616d2eee8c20b21c",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -385,7 +394,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:15 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:51 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableyhb6gvue\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -394,7 +403,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "779f6a8b34749574616d2eee8c20b21c",
- "x-ms-request-id": "20756f22-b002-001b-0721-5aea7a000000",
+ "x-ms-request-id": "9b333e05-4002-002c-6686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -409,17 +418,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-264ce2d2e209564faeece15a4a87e615-47f4500439384940-00",
+ "traceparent": "00-93ea7534218e6e4aa0702c91307516e5-0df0d810083d6140-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e621b2b1eff625df41cabaf667614a24",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -430,7 +440,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:15 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:51 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablepcdttnq4\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -439,7 +449,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "e621b2b1eff625df41cabaf667614a24",
- "x-ms-request-id": "20756f2f-b002-001b-1321-5aea7a000000",
+ "x-ms-request-id": "9b333e17-4002-002c-7686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -454,17 +464,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-0b9471fb8fdef642afb97688c6c61d34-a5a84294537c8c4a-00",
+ "traceparent": "00-40248688463caa45bbabe2b6af4bb0e7-a050d59ee91d5d4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "afe8a856971f5b0ae937c6c2138e9f71",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -475,7 +486,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:15 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:51 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable1azj06bv\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -484,7 +495,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "afe8a856971f5b0ae937c6c2138e9f71",
- "x-ms-request-id": "20756f3a-b002-001b-1d21-5aea7a000000",
+ "x-ms-request-id": "9b333e1d-4002-002c-7b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -499,14 +510,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c2ac088dbc65d8b432343a774a11b3c9",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -515,7 +527,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:15 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:51 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -523,7 +535,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "c2ac088dbc65d8b432343a774a11b3c9",
- "x-ms-request-id": "20756f41-b002-001b-2321-5aea7a000000",
+ "x-ms-request-id": "9b333e23-4002-002c-8086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -535,42 +547,6 @@
"odata.editLink": "Tables(\u0027testtable1azj06bv\u0027)",
"TableName": "testtable1azj06bv"
},
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable4ns9b5g3\u0027)",
- "odata.editLink": "Tables(\u0027testtable4ns9b5g3\u0027)",
- "TableName": "testtable4ns9b5g3"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable5iefecvu\u0027)",
- "odata.editLink": "Tables(\u0027testtable5iefecvu\u0027)",
- "TableName": "testtable5iefecvu"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable7psww12c\u0027)",
- "odata.editLink": "Tables(\u0027testtable7psww12c\u0027)",
- "TableName": "testtable7psww12c"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable9szyhhkm\u0027)",
- "odata.editLink": "Tables(\u0027testtable9szyhhkm\u0027)",
- "TableName": "testtable9szyhhkm"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable9txmuphm\u0027)",
- "odata.editLink": "Tables(\u0027testtable9txmuphm\u0027)",
- "TableName": "testtable9txmuphm"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableb8qgukae\u0027)",
- "odata.editLink": "Tables(\u0027testtableb8qgukae\u0027)",
- "TableName": "testtableb8qgukae"
- },
{
"odata.type": "chrissscratch.Tables",
"odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableczmy5hsf\u0027)",
@@ -583,18 +559,6 @@
"odata.editLink": "Tables(\u0027testtabledoy9qdhh\u0027)",
"TableName": "testtabledoy9qdhh"
},
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabledxymqs21\u0027)",
- "odata.editLink": "Tables(\u0027testtabledxymqs21\u0027)",
- "TableName": "testtabledxymqs21"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablefvgwmg7c\u0027)",
- "odata.editLink": "Tables(\u0027testtablefvgwmg7c\u0027)",
- "TableName": "testtablefvgwmg7c"
- },
{
"odata.type": "chrissscratch.Tables",
"odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablejskfljdt\u0027)",
@@ -607,18 +571,6 @@
"odata.editLink": "Tables(\u0027testtablekf4fuoge\u0027)",
"TableName": "testtablekf4fuoge"
},
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablekumj2pc7\u0027)",
- "odata.editLink": "Tables(\u0027testtablekumj2pc7\u0027)",
- "TableName": "testtablekumj2pc7"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablem4bhqtqv\u0027)",
- "odata.editLink": "Tables(\u0027testtablem4bhqtqv\u0027)",
- "TableName": "testtablem4bhqtqv"
- },
{
"odata.type": "chrissscratch.Tables",
"odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablen1bo90iu\u0027)",
@@ -637,53 +589,23 @@
"odata.editLink": "Tables(\u0027testtablepcdttnq4\u0027)",
"TableName": "testtablepcdttnq4"
},
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablepdprm1am\u0027)",
- "odata.editLink": "Tables(\u0027testtablepdprm1am\u0027)",
- "TableName": "testtablepdprm1am"
- },
{
"odata.type": "chrissscratch.Tables",
"odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableqy4xq48i\u0027)",
"odata.editLink": "Tables(\u0027testtableqy4xq48i\u0027)",
"TableName": "testtableqy4xq48i"
},
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablev9pwhgv8\u0027)",
- "odata.editLink": "Tables(\u0027testtablev9pwhgv8\u0027)",
- "TableName": "testtablev9pwhgv8"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablexvcatiga\u0027)",
- "odata.editLink": "Tables(\u0027testtablexvcatiga\u0027)",
- "TableName": "testtablexvcatiga"
- },
{
"odata.type": "chrissscratch.Tables",
"odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableyhb6gvue\u0027)",
"odata.editLink": "Tables(\u0027testtableyhb6gvue\u0027)",
"TableName": "testtableyhb6gvue"
},
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablez4asskk8\u0027)",
- "odata.editLink": "Tables(\u0027testtablez4asskk8\u0027)",
- "TableName": "testtablez4asskk8"
- },
{
"odata.type": "chrissscratch.Tables",
"odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablez62aze2r\u0027)",
"odata.editLink": "Tables(\u0027testtablez62aze2r\u0027)",
"TableName": "testtablez62aze2r"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablezjkkt2i8\u0027)",
- "odata.editLink": "Tables(\u0027testtablezjkkt2i8\u0027)",
- "TableName": "testtablezjkkt2i8"
}
]
}
@@ -694,13 +616,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-808424dc60cd554494933fcba25431e8-d8ba2f28a55cf742-00",
+ "traceparent": "00-e9b6e5b792db1540a93c7ff109ee6092-14a97e984baf454d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4d90cf563006aa06bf5e0c309b881119",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -709,14 +631,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:15 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:51 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "4d90cf563006aa06bf5e0c309b881119",
- "x-ms-request-id": "20756f4e-b002-001b-3021-5aea7a000000",
+ "x-ms-request-id": "9b333e30-4002-002c-0d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -727,13 +649,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-ed49617c5ae21b4cbee653459346b85b-b99b1a900c83ba48-00",
+ "traceparent": "00-0fbab557db7492499901bf1395efb4d9-45d12d6f1e059d43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ace172c5983b99ecf30f7ceb5c9311d8",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -742,14 +664,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:15 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:51 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ace172c5983b99ecf30f7ceb5c9311d8",
- "x-ms-request-id": "20756f56-b002-001b-3521-5aea7a000000",
+ "x-ms-request-id": "9b333e3d-4002-002c-1986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -760,13 +682,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-42722c777f1fa74f9e8177dc25004b44-2bb6b97245c7924e-00",
+ "traceparent": "00-f9056954afbe9040ae8e7f1c38b81981-2c5aa83b03b44d49-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "436bfd8351fe5c6b02020206af833daa",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -775,14 +697,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:15 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:51 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "436bfd8351fe5c6b02020206af833daa",
- "x-ms-request-id": "20756f58-b002-001b-3721-5aea7a000000",
+ "x-ms-request-id": "9b333e44-4002-002c-2086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -793,13 +715,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-623f07f9e5f3c64abf18a72ee5bb5a90-6b5810fcc725a745-00",
+ "traceparent": "00-29c52059d49a4649b2fc03fb7cb5133f-dca65e52cf447042-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d7b12123062fbe8de3f65af7b41b4e2c",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -808,14 +730,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:15 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:51 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d7b12123062fbe8de3f65af7b41b4e2c",
- "x-ms-request-id": "20756f62-b002-001b-4021-5aea7a000000",
+ "x-ms-request-id": "9b333e4e-4002-002c-2a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -826,13 +748,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-7039609b59c4494fb600ca679f99ab3f-e4fa01bc0ea07d48-00",
+ "traceparent": "00-975fcd2b8731824fa8b6386edfbc443b-1d39535e2c000447-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9eac344dcd1c741a0785aa3895e5ea6f",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -841,14 +763,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:51 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "9eac344dcd1c741a0785aa3895e5ea6f",
- "x-ms-request-id": "20756f67-b002-001b-4521-5aea7a000000",
+ "x-ms-request-id": "9b333e5a-4002-002c-3586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -859,13 +781,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-48f334e3d5dd0d45b908bf2cdd2e0298-140f143c85a82842-00",
+ "traceparent": "00-6d8577a9a2a359419e09933d68e338c8-70ce0d8db3acf144-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3ac7d2d239e17da96fad5f08f674a8e7",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -874,14 +796,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:51 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "3ac7d2d239e17da96fad5f08f674a8e7",
- "x-ms-request-id": "20756f6e-b002-001b-4c21-5aea7a000000",
+ "x-ms-request-id": "9b333e65-4002-002c-4086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -892,13 +814,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-842210e55c0b1547a21ed7a3d797dadd-a9ffe28310af2c47-00",
+ "traceparent": "00-24e7aefbc37bf24d9e206a158fc64d41-8b60dfe9c9bb1846-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7bb8d6b49ed6558d073dd0aa5c5528fd",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -907,14 +829,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:51 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "7bb8d6b49ed6558d073dd0aa5c5528fd",
- "x-ms-request-id": "20756f77-b002-001b-5521-5aea7a000000",
+ "x-ms-request-id": "9b333e7d-4002-002c-5886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -925,13 +847,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-b959a0929231df4695e6bbf6c358cab7-3f4ecae09f4f6b4e-00",
+ "traceparent": "00-4ac455e30e1a684c93ca001709a89818-ac3a82a6bbed514b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e124ea0b1353144b8b2f2f6f6d127d93",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -940,14 +862,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:51 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "e124ea0b1353144b8b2f2f6f6d127d93",
- "x-ms-request-id": "20756f7e-b002-001b-5c21-5aea7a000000",
+ "x-ms-request-id": "9b333e95-4002-002c-7086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -958,13 +880,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-35037756f8a79549a66c1ea3dbec1afd-9730c8317ebc6248-00",
+ "traceparent": "00-494f57577e85c646884f9f18fb7ba641-0e195e0768a6974b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "bf84c2dc6e2c3498457233a469fe211a",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -973,14 +895,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:51 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "bf84c2dc6e2c3498457233a469fe211a",
- "x-ms-request-id": "20756f82-b002-001b-6021-5aea7a000000",
+ "x-ms-request-id": "9b333ea3-4002-002c-7e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -991,13 +913,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-7a9b4a04ca4d4243bb6ff2e0f665ee63-3791e155879da44a-00",
+ "traceparent": "00-72d17a87abc5214ea0e4644ec5eb01c8-bdd62df6fde10e4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0cfc6284c64fa0948aa4f0a76f1de7f4",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1006,14 +928,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:51 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0cfc6284c64fa0948aa4f0a76f1de7f4",
- "x-ms-request-id": "20756f8b-b002-001b-6921-5aea7a000000",
+ "x-ms-request-id": "9b333eae-4002-002c-0886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -1024,13 +946,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-0bea717d2dc67046946b3e352063a931-bcf8d684c197aa48-00",
+ "traceparent": "00-e26c48e1c2ac4144bdc744cdb2930603-1d382c36e9cdc84a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "99cd3cbf69d09dd151f09ce0dfa7aa8c",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:52 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1039,14 +961,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:16 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:51 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "99cd3cbf69d09dd151f09ce0dfa7aa8c",
- "x-ms-request-id": "20756f97-b002-001b-7521-5aea7a000000",
+ "x-ms-request-id": "9b333eb2-4002-002c-0c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetTablesReturnsTablesWithAndWithoutPagination(null)Async.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetTablesReturnsTablesWithAndWithoutPagination(null)Async.json
index 258355a2b635..29b61ccac606 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetTablesReturnsTablesWithAndWithoutPagination(null)Async.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetTablesReturnsTablesWithAndWithoutPagination(null)Async.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-b2fa96587473ee4e94782017bfc356e4-c33a7f07871d6b4c-00",
+ "traceparent": "00-c943dca91f2b524cb15bda9c2d5df55b-9025f65ce807ee46-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b98adcbd389a143ccc7bfa6510606ba2",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:04 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:14 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable3hf7eht5\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "b98adcbd389a143ccc7bfa6510606ba2",
- "x-ms-request-id": "20759378-b002-001b-2121-5aea7a000000",
+ "x-ms-request-id": "9b334e4d-4002-002c-3687-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-76fafa6b848fc741982e7a580b8a2ca5-441af0653e2df14d-00",
+ "traceparent": "00-f0fa22b85e2a6741a088a9731c814290-983087cc5ce61748-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5bb7fd121705abdf04a1d8782bdfb5ba",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -70,7 +72,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:04 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:15 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableqo1mnqt6\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -79,7 +81,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "5bb7fd121705abdf04a1d8782bdfb5ba",
- "x-ms-request-id": "20759388-b002-001b-3021-5aea7a000000",
+ "x-ms-request-id": "9b334e54-4002-002c-3a87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -94,17 +96,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1ee8f68821b4c44488ce0ed710bf0fa3-5757c8bfd890df4d-00",
+ "traceparent": "00-80700297f8291a49b938343e2d89083e-c360b43f87117149-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6d2c0d9046341fba8116a79d80e10eb5",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -115,7 +118,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:04 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:15 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableoj6d5468\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -124,7 +127,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "6d2c0d9046341fba8116a79d80e10eb5",
- "x-ms-request-id": "2075939b-b002-001b-4221-5aea7a000000",
+ "x-ms-request-id": "9b334e5a-4002-002c-3f87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -139,17 +142,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a28e234c39e484459028c3622e394bfd-e59eca255750f447-00",
+ "traceparent": "00-5b8451bc79f47d4cb100fb9d7275a5f1-d9b6957e27643a4b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "214fa5b8b1610a6bae6dcaf7eb7176be",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -160,7 +164,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:04 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:15 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable603is0h4\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -169,7 +173,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "214fa5b8b1610a6bae6dcaf7eb7176be",
- "x-ms-request-id": "207593a9-b002-001b-4f21-5aea7a000000",
+ "x-ms-request-id": "9b334e61-4002-002c-4587-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -184,17 +188,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-7310486244434b4ca940f21702697ac1-492fd766a78f0e47-00",
+ "traceparent": "00-298366f2199a6f49994c2dea7274ea06-ee756e427b143b43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ba0d867ddfa79ec19603b48ff699becf",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -205,7 +210,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:04 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:15 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable9qb43ra6\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -214,7 +219,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ba0d867ddfa79ec19603b48ff699becf",
- "x-ms-request-id": "207593bc-b002-001b-6121-5aea7a000000",
+ "x-ms-request-id": "9b334e6c-4002-002c-4e87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -229,17 +234,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1c7885e44e429e41b5141b11dd50e534-767823d23a0d7349-00",
+ "traceparent": "00-fbf60e4301aac84eb537369f9b4bd554-88e03ce06ed4b24c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d088a2d762fba0f16ba2a3daa4b063cf",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -250,7 +256,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:04 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:15 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablevtnpij3v\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -259,7 +265,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d088a2d762fba0f16ba2a3daa4b063cf",
- "x-ms-request-id": "207593c8-b002-001b-6c21-5aea7a000000",
+ "x-ms-request-id": "9b334e77-4002-002c-5787-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -274,17 +280,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-68bd2a53bbb1a44d9af0a1b1f8c93c06-4eede042933dd840-00",
+ "traceparent": "00-72055c1f2e723e42800ff6dd6953c859-44df5bc2dd509a4f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9a6927fa272a6696bde1e20457f1a233",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -295,7 +302,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:04 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:15 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabletanwm3ht\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -304,7 +311,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "9a6927fa272a6696bde1e20457f1a233",
- "x-ms-request-id": "207593d4-b002-001b-7721-5aea7a000000",
+ "x-ms-request-id": "9b334e88-4002-002c-6787-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -319,17 +326,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-dd1edfa79d0144498422468bf67e1ca7-5c353becc423c849-00",
+ "traceparent": "00-d9143484a521084195e19aaec8a5abb8-aedb7c08305f8641-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "eb651f3ae2b5ef6fda3ad5d4f9567643",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -340,7 +348,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:04 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:15 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablevy6iyyzz\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -349,7 +357,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "eb651f3ae2b5ef6fda3ad5d4f9567643",
- "x-ms-request-id": "207593d8-b002-001b-7a21-5aea7a000000",
+ "x-ms-request-id": "9b334e90-4002-002c-6e87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -364,17 +372,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-4e8ff0ff326ffd4ab0af7272701e50ee-95d09008658cd643-00",
+ "traceparent": "00-cbd544863429024e8e1bd738c0c3a04e-633fd60da59c184f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a7d52d8973c31657fb6e5f0ac1abb0da",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -385,7 +394,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:04 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:15 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablemxxyqrzf\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -394,7 +403,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "a7d52d8973c31657fb6e5f0ac1abb0da",
- "x-ms-request-id": "207593de-b002-001b-7f21-5aea7a000000",
+ "x-ms-request-id": "9b334e97-4002-002c-7487-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -409,17 +418,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-b81e98bc03a9014db3319544a3aacf7a-32b15ed433332f44-00",
+ "traceparent": "00-fd2d7a0756d0af4d8efb2d9e392e05a1-0b45f36f01e2b54d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b848e09e69c6db2ca7aa61880dc72b66",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -430,7 +440,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:04 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:15 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablelrvyo724\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -439,7 +449,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "b848e09e69c6db2ca7aa61880dc72b66",
- "x-ms-request-id": "207593e8-b002-001b-0821-5aea7a000000",
+ "x-ms-request-id": "9b334ea4-4002-002c-8087-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -454,17 +464,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-34d8a0b7e63c9040b5006963f6df92d6-f7d84e9dce02ea4b-00",
+ "traceparent": "00-b9cc72ed71f44f41ad96d6dfddf0b6d4-41f2748c6c5b3741-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "db50428d5b33bb9ff21909e32b9f5092",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -475,7 +486,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:04 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:15 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable4vju3l96\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -484,7 +495,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "db50428d5b33bb9ff21909e32b9f5092",
- "x-ms-request-id": "207593fc-b002-001b-1a21-5aea7a000000",
+ "x-ms-request-id": "9b334eb0-4002-002c-0b87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -499,14 +510,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "166384422749aacdc6c4395bf4b0c533",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -515,7 +527,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:04 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:15 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -523,7 +535,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "166384422749aacdc6c4395bf4b0c533",
- "x-ms-request-id": "2075940c-b002-001b-2721-5aea7a000000",
+ "x-ms-request-id": "9b334ec1-4002-002c-1887-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -535,90 +547,30 @@
"odata.editLink": "Tables(\u0027testtable3hf7eht5\u0027)",
"TableName": "testtable3hf7eht5"
},
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable4ns9b5g3\u0027)",
- "odata.editLink": "Tables(\u0027testtable4ns9b5g3\u0027)",
- "TableName": "testtable4ns9b5g3"
- },
{
"odata.type": "chrissscratch.Tables",
"odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable4vju3l96\u0027)",
"odata.editLink": "Tables(\u0027testtable4vju3l96\u0027)",
"TableName": "testtable4vju3l96"
},
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable5iefecvu\u0027)",
- "odata.editLink": "Tables(\u0027testtable5iefecvu\u0027)",
- "TableName": "testtable5iefecvu"
- },
{
"odata.type": "chrissscratch.Tables",
"odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable603is0h4\u0027)",
"odata.editLink": "Tables(\u0027testtable603is0h4\u0027)",
"TableName": "testtable603is0h4"
},
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable7psww12c\u0027)",
- "odata.editLink": "Tables(\u0027testtable7psww12c\u0027)",
- "TableName": "testtable7psww12c"
- },
{
"odata.type": "chrissscratch.Tables",
"odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable9qb43ra6\u0027)",
"odata.editLink": "Tables(\u0027testtable9qb43ra6\u0027)",
"TableName": "testtable9qb43ra6"
},
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable9szyhhkm\u0027)",
- "odata.editLink": "Tables(\u0027testtable9szyhhkm\u0027)",
- "TableName": "testtable9szyhhkm"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable9txmuphm\u0027)",
- "odata.editLink": "Tables(\u0027testtable9txmuphm\u0027)",
- "TableName": "testtable9txmuphm"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableb8qgukae\u0027)",
- "odata.editLink": "Tables(\u0027testtableb8qgukae\u0027)",
- "TableName": "testtableb8qgukae"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtabledxymqs21\u0027)",
- "odata.editLink": "Tables(\u0027testtabledxymqs21\u0027)",
- "TableName": "testtabledxymqs21"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablefvgwmg7c\u0027)",
- "odata.editLink": "Tables(\u0027testtablefvgwmg7c\u0027)",
- "TableName": "testtablefvgwmg7c"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablekumj2pc7\u0027)",
- "odata.editLink": "Tables(\u0027testtablekumj2pc7\u0027)",
- "TableName": "testtablekumj2pc7"
- },
{
"odata.type": "chrissscratch.Tables",
"odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablelrvyo724\u0027)",
"odata.editLink": "Tables(\u0027testtablelrvyo724\u0027)",
"TableName": "testtablelrvyo724"
},
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablem4bhqtqv\u0027)",
- "odata.editLink": "Tables(\u0027testtablem4bhqtqv\u0027)",
- "TableName": "testtablem4bhqtqv"
- },
{
"odata.type": "chrissscratch.Tables",
"odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablemxxyqrzf\u0027)",
@@ -631,12 +583,6 @@
"odata.editLink": "Tables(\u0027testtableoj6d5468\u0027)",
"TableName": "testtableoj6d5468"
},
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablepdprm1am\u0027)",
- "odata.editLink": "Tables(\u0027testtablepdprm1am\u0027)",
- "TableName": "testtablepdprm1am"
- },
{
"odata.type": "chrissscratch.Tables",
"odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableqo1mnqt6\u0027)",
@@ -649,12 +595,6 @@
"odata.editLink": "Tables(\u0027testtabletanwm3ht\u0027)",
"TableName": "testtabletanwm3ht"
},
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablev9pwhgv8\u0027)",
- "odata.editLink": "Tables(\u0027testtablev9pwhgv8\u0027)",
- "TableName": "testtablev9pwhgv8"
- },
{
"odata.type": "chrissscratch.Tables",
"odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablevtnpij3v\u0027)",
@@ -666,24 +606,6 @@
"odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablevy6iyyzz\u0027)",
"odata.editLink": "Tables(\u0027testtablevy6iyyzz\u0027)",
"TableName": "testtablevy6iyyzz"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablexvcatiga\u0027)",
- "odata.editLink": "Tables(\u0027testtablexvcatiga\u0027)",
- "TableName": "testtablexvcatiga"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablez4asskk8\u0027)",
- "odata.editLink": "Tables(\u0027testtablez4asskk8\u0027)",
- "TableName": "testtablez4asskk8"
- },
- {
- "odata.type": "chrissscratch.Tables",
- "odata.id": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablezjkkt2i8\u0027)",
- "odata.editLink": "Tables(\u0027testtablezjkkt2i8\u0027)",
- "TableName": "testtablezjkkt2i8"
}
]
}
@@ -694,13 +616,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-d04bb37280416e4687cac8c89e71325f-134fa8a5bf785446-00",
+ "traceparent": "00-c85c0e8d80152a4fa1937ee008eecf55-d2c75c2638d47047-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "832ae85e50184ca70aa695f3be483b42",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -709,14 +631,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:04 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:15 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "832ae85e50184ca70aa695f3be483b42",
- "x-ms-request-id": "20759423-b002-001b-3d21-5aea7a000000",
+ "x-ms-request-id": "9b334ed5-4002-002c-2b87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -727,13 +649,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-4fe8fd7dbdf6cd48850862107577c920-44a710973a634d4f-00",
+ "traceparent": "00-eae0ab9a07e1c0488b974bb6460439fc-8d77c6dbe4cd6e4d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7248466f6a08651675a5156f2143c642",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -742,14 +664,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:04 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:15 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "7248466f6a08651675a5156f2143c642",
- "x-ms-request-id": "20759432-b002-001b-4b21-5aea7a000000",
+ "x-ms-request-id": "9b334ee0-4002-002c-3687-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -760,13 +682,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-32622a2442255d4491379e039584980b-584fc72e3afe4342-00",
+ "traceparent": "00-eae19b59137dcd4a9ee978341589e78b-d6816db6f2ea7343-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4285d554cd75f279dc160ca391d9ec7e",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -775,14 +697,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:04 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:15 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "4285d554cd75f279dc160ca391d9ec7e",
- "x-ms-request-id": "20759445-b002-001b-5c21-5aea7a000000",
+ "x-ms-request-id": "9b334eed-4002-002c-4087-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -793,13 +715,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-dfe5ca45ae559a4393d9562fd7e7c203-8561923e578eaf4a-00",
+ "traceparent": "00-41750aee1cc85b4f90d727eda7e73a4b-1b0dd9d956d0fd4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "adecf6895267f32bd2c40e733a382bc7",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -808,14 +730,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:04 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:15 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "adecf6895267f32bd2c40e733a382bc7",
- "x-ms-request-id": "20759453-b002-001b-6821-5aea7a000000",
+ "x-ms-request-id": "9b334ef2-4002-002c-4587-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -826,13 +748,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-6ba2962db6fbfc4ea025d2f5b88200d5-c9915286367fc64b-00",
+ "traceparent": "00-b5065beb5ab7854fad3c137d5fa97c7a-6061f9849c8eb448-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e89f53dff8c2a2cdcd5696f15e72d39b",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -841,14 +763,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:04 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:15 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "e89f53dff8c2a2cdcd5696f15e72d39b",
- "x-ms-request-id": "2075945d-b002-001b-7121-5aea7a000000",
+ "x-ms-request-id": "9b334ef4-4002-002c-4787-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -859,13 +781,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-d01892a099598945b0b9d3c9345ba5ad-c66dd590b793c645-00",
+ "traceparent": "00-88b1e91ae9f0ff46881a8f18bf8ec359-ca3fa1d873a5e74b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2ae697b9195701daaa926fb0bf06b7a3",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -874,14 +796,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:04 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:15 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "2ae697b9195701daaa926fb0bf06b7a3",
- "x-ms-request-id": "20759466-b002-001b-7a21-5aea7a000000",
+ "x-ms-request-id": "9b334efb-4002-002c-4e87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -892,13 +814,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-0ab27f32336173429b21c5004887e553-b196d47f37f92246-00",
+ "traceparent": "00-1a08d43d2901e049830e169f65cd5c84-4ef17047e21f5d4f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3ec444eb033990bb294ae011bb399460",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -907,14 +829,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:04 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:15 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "3ec444eb033990bb294ae011bb399460",
- "x-ms-request-id": "20759472-b002-001b-0121-5aea7a000000",
+ "x-ms-request-id": "9b334f02-4002-002c-5387-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -925,13 +847,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-991dc4046e636a408bfe912f3b8323ce-b594ab10b06a9d41-00",
+ "traceparent": "00-0d9e36945469684bb74c03e2905b3d92-a1e40e516d596344-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a3b972f10052c66f789d3d30891de3c6",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -940,14 +862,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:04 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:15 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "a3b972f10052c66f789d3d30891de3c6",
- "x-ms-request-id": "2075947a-b002-001b-0821-5aea7a000000",
+ "x-ms-request-id": "9b334f09-4002-002c-5a87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -958,13 +880,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-6cf7f02006f7f5439634c3772ccae3fe-8f4e2f7e00e0e445-00",
+ "traceparent": "00-bc5721f7e176184e9cd475fe1473f0d5-e0961f174dfcae49-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1905f29e95aeb561db55010c38c84670",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:16 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -973,14 +895,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:04 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:15 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "1905f29e95aeb561db55010c38c84670",
- "x-ms-request-id": "20759486-b002-001b-1121-5aea7a000000",
+ "x-ms-request-id": "9b334f11-4002-002c-6287-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -991,13 +913,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-0047339497e05d4e9f361da257e6318c-692e42568f81244f-00",
+ "traceparent": "00-20adfe214881984bb7a1cb9a0da67d2a-4c4d736647acbc40-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4cbf0ffe134cea51d5fdc59bc68b060b",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1006,14 +928,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:16 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "4cbf0ffe134cea51d5fdc59bc68b060b",
- "x-ms-request-id": "2075948d-b002-001b-1621-5aea7a000000",
+ "x-ms-request-id": "9b334f23-4002-002c-7287-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -1024,13 +946,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-db0bc99109b6184da240ea5cb8d5e56c-c73a85b14193ce4c-00",
+ "traceparent": "00-11db721d24219842a8697a896387fa09-c9fb9de1291d6442-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c87219677a345cb11004c7fcff628db0",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:17 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -1039,14 +961,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:05 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:16 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "c87219677a345cb11004c7fcff628db0",
- "x-ms-request-id": "20759492-b002-001b-1b21-5aea7a000000",
+ "x-ms-request-id": "9b334f2e-4002-002c-7c87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetTablesReturnsTablesWithFilter.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetTablesReturnsTablesWithFilter.json
index 0f3a3bf3e70c..5620aab94c83 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetTablesReturnsTablesWithFilter.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetTablesReturnsTablesWithFilter.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ceb9ee8b6c84ca4f9026c6491e1b4fbe-abcedff71e8e3946-00",
+ "traceparent": "00-0243f0c334525543b4efd9aead813c72-371dbc0542166446-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "90b7b7b0a7650028b2f78e08a17e3925",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:13 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:48 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableylnxaps8\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "90b7b7b0a7650028b2f78e08a17e3925",
- "x-ms-request-id": "20756d63-b002-001b-6d21-5aea7a000000",
+ "x-ms-request-id": "9b333c75-4002-002c-7886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-0b6e3b242ff86b47a2e26822c4a4028c-10a9d7a725cd614e-00",
+ "traceparent": "00-584e4596dd9d2c449f64dbc136e4eddb-a93d4e93a5cffa4c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5264f88b4a87d6e4af20e1a1c399a502",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -70,7 +72,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:13 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:48 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablemtkoerz9\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -79,7 +81,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "5264f88b4a87d6e4af20e1a1c399a502",
- "x-ms-request-id": "20756d69-b002-001b-7221-5aea7a000000",
+ "x-ms-request-id": "9b333c7e-4002-002c-8086-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -94,17 +96,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-e460102065abd44c949f8dbc563a6dc5-dbd96da657c59748-00",
+ "traceparent": "00-8af6948147a3074bb9704387ce400273-640d59f771c0124d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "db53105abc08d02aedea046d42d57968",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -115,7 +118,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:13 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:48 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable20834isy\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -124,7 +127,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "db53105abc08d02aedea046d42d57968",
- "x-ms-request-id": "20756d74-b002-001b-7c21-5aea7a000000",
+ "x-ms-request-id": "9b333c86-4002-002c-0786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -139,17 +142,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-96cc80e4c2a57849a549aa0c38729612-55a73d776582924a-00",
+ "traceparent": "00-2042bbda916f8d4e83fddb37be18d52a-579dfd6933d09349-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f6e6ae1b68dda8ea8dbaf877f608cef3",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -160,7 +164,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:13 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:48 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablep3uulyar\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -169,7 +173,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f6e6ae1b68dda8ea8dbaf877f608cef3",
- "x-ms-request-id": "20756d85-b002-001b-0b21-5aea7a000000",
+ "x-ms-request-id": "9b333c8c-4002-002c-0c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -184,17 +188,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f64e8e4c06401e459fdea78f2b82def2-65a7aa289b429e4b-00",
+ "traceparent": "00-9681c769e226d840b2ce11311c5c37a3-0df440e530062943-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2b4d9a9de989c20eaebbc05ad534f284",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:49 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -205,7 +210,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:13 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:49 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableay6089wi\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -214,7 +219,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "2b4d9a9de989c20eaebbc05ad534f284",
- "x-ms-request-id": "20756d95-b002-001b-1821-5aea7a000000",
+ "x-ms-request-id": "9b333c97-4002-002c-1686-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -229,17 +234,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-677c95ed0ebaf9459e714df5d8fd2fd1-00ba19d383f0e443-00",
+ "traceparent": "00-3352e802d43d914eae34e393e69871ad-74c86dfc5823bb4c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8a8a66e988e3e302eebc58421bbf1ea3",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -250,7 +256,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:13 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:49 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable852se6jv\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -259,7 +265,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "8a8a66e988e3e302eebc58421bbf1ea3",
- "x-ms-request-id": "20756daa-b002-001b-2b21-5aea7a000000",
+ "x-ms-request-id": "9b333ca1-4002-002c-1f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -274,17 +280,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-af321009f4f2fb498b041869d0eaa56a-1721a7dbce2bb249-00",
+ "traceparent": "00-10a7e48762c2c342a589691864f41ef9-c324f08fd043d246-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "38d92f1f37589b4d294241235f83de26",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -295,7 +302,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:13 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:49 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablezcx8x1vu\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -304,7 +311,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "38d92f1f37589b4d294241235f83de26",
- "x-ms-request-id": "20756dbc-b002-001b-3c21-5aea7a000000",
+ "x-ms-request-id": "9b333cb0-4002-002c-2d86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -319,17 +326,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-683dfe9e99a60d4c837f1d7deb068de2-8b5dbacb7ed7284b-00",
+ "traceparent": "00-b564cf233f799c4493a4f1302be5119a-59eb5befc5079f4b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a7dc3c3e363974c148c86bb4aeca8bb7",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -340,7 +348,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:13 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:49 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablek5vdz4k2\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -349,7 +357,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "a7dc3c3e363974c148c86bb4aeca8bb7",
- "x-ms-request-id": "20756dc9-b002-001b-4821-5aea7a000000",
+ "x-ms-request-id": "9b333cb9-4002-002c-3586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -364,17 +372,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a76bab67a696364da6229bfee8e4af4b-222f3674ff6f2941-00",
+ "traceparent": "00-15296e2debff7c4381a1e94c89793816-72edd359b25ad148-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "6b81a25704096fe5c598f91b5aa662f3",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -385,7 +394,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:49 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablel78zfff8\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -394,7 +403,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "6b81a25704096fe5c598f91b5aa662f3",
- "x-ms-request-id": "20756dd5-b002-001b-5321-5aea7a000000",
+ "x-ms-request-id": "9b333cbf-4002-002c-3a86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -409,17 +418,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-a11c91a4cf750a4f88906fa41f555336-3945d9083a3ad04c-00",
+ "traceparent": "00-68408afd771e1f45ba2d56a81b7bfbc2-f7f82371196ec945-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1ea9b451909643c3f8b44f96b4566b44",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -430,7 +440,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:49 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable51kpm7z4\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -439,7 +449,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "1ea9b451909643c3f8b44f96b4566b44",
- "x-ms-request-id": "20756ddf-b002-001b-5a21-5aea7a000000",
+ "x-ms-request-id": "9b333cc8-4002-002c-4286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -454,17 +464,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c0f51a5811f5a74882f85768f029dfd1-7b8cb3b54e545242-00",
+ "traceparent": "00-1e78521f5845514b8bfb5b63c306a195-efc8f0a6685b8b4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "af57255aad202d0f2a921a545ac7d835",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -475,7 +486,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:49 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableeb4s6fak\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -484,7 +495,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "af57255aad202d0f2a921a545ac7d835",
- "x-ms-request-id": "20756de7-b002-001b-6121-5aea7a000000",
+ "x-ms-request-id": "9b333cd2-4002-002c-4986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -499,14 +510,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=TableName%20eq%20%27testtableylnxaps8%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a523b6d5cb562a3e6295b31c3b621de2",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -515,7 +527,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:49 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -523,7 +535,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "a523b6d5cb562a3e6295b31c3b621de2",
- "x-ms-request-id": "20756df6-b002-001b-6f21-5aea7a000000",
+ "x-ms-request-id": "9b333cea-4002-002c-5f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -544,13 +556,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-7b5dc16ed67e024586baaf24688921aa-0aea09bb4d509d40-00",
+ "traceparent": "00-9801cbfa91a4bd4999215a8bccface5b-8cb868eca450c145-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "71c4e05714384a22a5226c213c16e91c",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -559,14 +571,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:49 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "71c4e05714384a22a5226c213c16e91c",
- "x-ms-request-id": "20756dfd-b002-001b-7621-5aea7a000000",
+ "x-ms-request-id": "9b333cf8-4002-002c-6c86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -577,13 +589,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-4b2ed1a054bc1c448d191d008a53d5cd-ca4a47a9765ab14e-00",
+ "traceparent": "00-b96fcad7cfdce24f9dce387a3a3dfd8a-10d974f6fa700d4f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1a40b923b74b8e72e62d4c8afaf3f2c8",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -592,14 +604,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:49 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "1a40b923b74b8e72e62d4c8afaf3f2c8",
- "x-ms-request-id": "20756e03-b002-001b-7c21-5aea7a000000",
+ "x-ms-request-id": "9b333d01-4002-002c-7586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -610,13 +622,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-ca4e4f7288dc3744ac239fc10b040ec3-51f85489815df64f-00",
+ "traceparent": "00-d72fb893561be647898bed1dff6250a7-43d73969cdc7b545-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7afd37746702c1fc93d900345f1cee4c",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -625,14 +637,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:49 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "7afd37746702c1fc93d900345f1cee4c",
- "x-ms-request-id": "20756e0a-b002-001b-0321-5aea7a000000",
+ "x-ms-request-id": "9b333d1e-4002-002c-1286-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -643,13 +655,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-ee9e6c1ad0d22648b83af777f7130d1b-5c932f9329d55547-00",
+ "traceparent": "00-6501a96e8c23d6499b4f89df4ed614e9-f9f4b5dc90bdf540-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "81f897ac03229f976d358a0bc7974fb1",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -658,14 +670,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:49 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "81f897ac03229f976d358a0bc7974fb1",
- "x-ms-request-id": "20756e12-b002-001b-0b21-5aea7a000000",
+ "x-ms-request-id": "9b333d24-4002-002c-1886-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -676,13 +688,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-513612e1282b634f9b9dafa43edd3d89-eff69e704d5a5149-00",
+ "traceparent": "00-b41ddde006f1524f986b82b03e172ebd-e24b11a5a3affe43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "04aca32f6f18bc19bd7f8771b73e2ec9",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -691,14 +703,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:49 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "04aca32f6f18bc19bd7f8771b73e2ec9",
- "x-ms-request-id": "20756e16-b002-001b-0e21-5aea7a000000",
+ "x-ms-request-id": "9b333d2a-4002-002c-1e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -709,13 +721,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-acf608e1d3cef343885b01f50ce2afe3-4f7a4d1af417dd41-00",
+ "traceparent": "00-ddd1eb56aa512043b4132b93a0b73eb9-f3e21ce99a20524d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "63de003e70fa71a6a05e0cccdcf0f9fc",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -724,14 +736,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:49 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "63de003e70fa71a6a05e0cccdcf0f9fc",
- "x-ms-request-id": "20756e1c-b002-001b-1321-5aea7a000000",
+ "x-ms-request-id": "9b333d31-4002-002c-2586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -742,13 +754,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-afd8bb2bd99ac24fa4270c1a576c53ad-81cc15bf15c4ce47-00",
+ "traceparent": "00-6ab694432113564f9720f9879309dd93-f3da43a7c88dbe4c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "bc044e89e9703c347d3cc4a27c25e82f",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -757,14 +769,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:49 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "bc044e89e9703c347d3cc4a27c25e82f",
- "x-ms-request-id": "20756e25-b002-001b-1c21-5aea7a000000",
+ "x-ms-request-id": "9b333d39-4002-002c-2b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -775,13 +787,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-f2a2c8a3f41cc8489247e7d0914d1503-5ff5132133ca5446-00",
+ "traceparent": "00-683a595c76f97046a85b138e69602f13-573fa5bda94f9a43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c7cdc006ecb8beb7fc3b64ba624cdfcc",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -790,14 +802,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:49 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "c7cdc006ecb8beb7fc3b64ba624cdfcc",
- "x-ms-request-id": "20756e2b-b002-001b-2221-5aea7a000000",
+ "x-ms-request-id": "9b333d3f-4002-002c-3186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -808,13 +820,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-a9c451577549314daff85c7d175a0ded-7ad6be57cb81fb47-00",
+ "traceparent": "00-8b458627dc87d746a6072899688f1fc5-28f258a07ec63f4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "68e88a8572395459cba1e5beac03f57a",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -823,14 +835,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:49 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "68e88a8572395459cba1e5beac03f57a",
- "x-ms-request-id": "20756e3a-b002-001b-3121-5aea7a000000",
+ "x-ms-request-id": "9b333d42-4002-002c-3486-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -841,13 +853,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-d274abb9a4c7e14aaf60fd7a35ccba66-b9f2c1d4b1065e43-00",
+ "traceparent": "00-678aa93bff40ba4d9b55c14b5fe4a2fa-35c198716feaa248-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1bc6dd7532239c439746bf348579d931",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -856,14 +868,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:49 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "1bc6dd7532239c439746bf348579d931",
- "x-ms-request-id": "20756e41-b002-001b-3821-5aea7a000000",
+ "x-ms-request-id": "9b333d49-4002-002c-3b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -874,13 +886,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-733418afc9f4d748a6c54f0004d47536-ae2a5a3962a8664b-00",
+ "traceparent": "00-33acc1dca735ae49b39d4e0aaa203c70-ef6482596ec8304b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f11df75c7f3d94f56678fb1607f811f9",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -889,14 +901,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:49 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f11df75c7f3d94f56678fb1607f811f9",
- "x-ms-request-id": "20756e4c-b002-001b-4321-5aea7a000000",
+ "x-ms-request-id": "9b333d4f-4002-002c-4186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetTablesReturnsTablesWithFilterAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetTablesReturnsTablesWithFilterAsync.json
index 5aebed89f560..ab350198288c 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetTablesReturnsTablesWithFilterAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/GetTablesReturnsTablesWithFilterAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-933265c198c1c74fb5e1d4f2ec4984d0-d288c8b3e9f28b42-00",
+ "traceparent": "00-a78ec711ac5f0f4db807ecde9ac25e7f-53ec88ce45a7a345-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "49a8fb530e6b2a029ab3d9b3129aa6e3",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:02 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:13 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable9cqd6ut9\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "49a8fb530e6b2a029ab3d9b3129aa6e3",
- "x-ms-request-id": "20759242-b002-001b-0b21-5aea7a000000",
+ "x-ms-request-id": "9b334d1d-4002-002c-3887-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,17 +50,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-da5e351d0d4b3340905b75af01167f90-64a572f7bf105145-00",
+ "traceparent": "00-391c7caab79e6a49be3d2e3c27b042a4-91785ff5d6475741-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1797db478043b29a90da10d4e3903acc",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -70,7 +72,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:02 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:13 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablekudhucwx\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -79,7 +81,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "1797db478043b29a90da10d4e3903acc",
- "x-ms-request-id": "2075924a-b002-001b-1221-5aea7a000000",
+ "x-ms-request-id": "9b334d24-4002-002c-3e87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -94,17 +96,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-019512d4a5c17d49b1e4a9cde8308a3a-9e3cd852b191c642-00",
+ "traceparent": "00-07daa84e33d69646b8f70265da46a908-0c2435adcf869744-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ee2b54ab9c9f1ff20236018f77eae719",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -115,7 +118,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:02 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:13 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablevkcwdk2z\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -124,7 +127,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ee2b54ab9c9f1ff20236018f77eae719",
- "x-ms-request-id": "20759252-b002-001b-1921-5aea7a000000",
+ "x-ms-request-id": "9b334d32-4002-002c-4b87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -139,17 +142,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-27e19a2acc192f4094b2ec22f69c8184-f514c9282a92d140-00",
+ "traceparent": "00-4c87c6f3861ea14ca66a3453dd9095a9-79339e78546d6243-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "02652e9af6cff0d4bee16cee55ab13f3",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -160,7 +164,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:02 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:13 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablew8v0kzax\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -169,7 +173,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "02652e9af6cff0d4bee16cee55ab13f3",
- "x-ms-request-id": "20759258-b002-001b-1e21-5aea7a000000",
+ "x-ms-request-id": "9b334d3c-4002-002c-5387-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -184,17 +188,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-7aed94829cb61643869a103a281e765e-8510d4a3dc53af46-00",
+ "traceparent": "00-68dfe147d2eaab44aae2557e89e5b58c-3c95b653d679cb4a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "77e94abce533d92c5421547036f04f0b",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -205,7 +210,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:02 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:13 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablehiw8h3cq\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -214,7 +219,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "77e94abce533d92c5421547036f04f0b",
- "x-ms-request-id": "20759268-b002-001b-2c21-5aea7a000000",
+ "x-ms-request-id": "9b334d4d-4002-002c-5e87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -229,17 +234,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-9bf0fa4e6c1ad544810b856d71f8aa02-c87d2f27f2706246-00",
+ "traceparent": "00-122081b154ad9447a237363f06dfc729-9ef52b737feb6f49-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "984f2f1353ffef7bd98645850d5dbcd9",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -250,7 +256,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:02 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:13 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablewe6y0yh4\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -259,7 +265,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "984f2f1353ffef7bd98645850d5dbcd9",
- "x-ms-request-id": "20759270-b002-001b-3321-5aea7a000000",
+ "x-ms-request-id": "9b334d5a-4002-002c-6a87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -274,17 +280,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-84edb3515eac944e83f46060ecb12bb6-d57f256cf5825e4c-00",
+ "traceparent": "00-aa24b5c3a00ae04ea330f82993c3a211-dea470726477c146-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7e4bc7a1bfd9c461867b63039594da01",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -295,7 +302,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:02 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:13 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablehun9spbb\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -304,7 +311,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "7e4bc7a1bfd9c461867b63039594da01",
- "x-ms-request-id": "20759276-b002-001b-3721-5aea7a000000",
+ "x-ms-request-id": "9b334d60-4002-002c-6f87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -319,17 +326,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-fbe104ccb5344e4eb91d520fd4b0a751-ab073842e1ab6d48-00",
+ "traceparent": "00-d92be9fdb0028b46abf61e843df085f8-8911ebabf81ed149-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "ebe0f754905e71167257f63707fd151a",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -340,7 +348,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:02 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:13 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableyabu2sii\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -349,7 +357,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "ebe0f754905e71167257f63707fd151a",
- "x-ms-request-id": "2075927e-b002-001b-3d21-5aea7a000000",
+ "x-ms-request-id": "9b334d67-4002-002c-7587-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -364,17 +372,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-b47f8893ee71d5418ca9216e8f65d1a0-3a9635f059554648-00",
+ "traceparent": "00-02393aad6c33d9458791118619521d72-cf73fe8d1253f64a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "f28e99b70c0bd64dca4729e2de7665f6",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -385,7 +394,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:02 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:13 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablepfz3b0i2\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -394,7 +403,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "f28e99b70c0bd64dca4729e2de7665f6",
- "x-ms-request-id": "20759284-b002-001b-4121-5aea7a000000",
+ "x-ms-request-id": "9b334d70-4002-002c-7d87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -409,17 +418,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-4a2d24d2ff744c49812bd28653f4ae66-782734d29d3ea140-00",
+ "traceparent": "00-3b2a75e16994a64ca7b364460f8f598d-19c5118266fc8248-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "298c7c4f6acb9b0ab2bf33c501236566",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -430,7 +440,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:02 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:13 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable3ab94esl\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -439,7 +449,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "298c7c4f6acb9b0ab2bf33c501236566",
- "x-ms-request-id": "2075928b-b002-001b-4721-5aea7a000000",
+ "x-ms-request-id": "9b334d7b-4002-002c-0587-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -454,17 +464,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-4fceb4c0aa3eb2439b46342aab4f3985-8dc0c87d281f864f-00",
+ "traceparent": "00-7de570040367be44a5c3d64eb0930437-928de6482be7d04e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "082d081b062714829fe5a28e80230b5f",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -475,7 +486,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:02 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:13 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableiury2tn6\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -484,7 +495,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "082d081b062714829fe5a28e80230b5f",
- "x-ms-request-id": "20759294-b002-001b-4f21-5aea7a000000",
+ "x-ms-request-id": "9b334d87-4002-002c-0e87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -499,14 +510,15 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata\u0026$filter=TableName%20eq%20%27testtable9cqd6ut9%27",
"RequestMethod": "GET",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"DataServiceVersion": "3.0",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "1f2f8d3ca04341f48c2a337e3538d41d",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -515,7 +527,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:02 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:13 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -523,7 +535,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "1f2f8d3ca04341f48c2a337e3538d41d",
- "x-ms-request-id": "2075929d-b002-001b-5721-5aea7a000000",
+ "x-ms-request-id": "9b334d9c-4002-002c-1f87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -544,13 +556,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-57acca9fa29ad84ebbc7d2e803d91773-b60d83556bea9b47-00",
+ "traceparent": "00-00f6f9143e3e5d408552c9d534da5e68-ee57c216a3485645-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c30ede41023cac743c1e251b80d7e6e6",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -559,14 +571,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:02 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:13 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "c30ede41023cac743c1e251b80d7e6e6",
- "x-ms-request-id": "207592a7-b002-001b-6021-5aea7a000000",
+ "x-ms-request-id": "9b334da7-4002-002c-2a87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -577,13 +589,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-9f42fb8932041f40972acaf2781ea4e2-8d3959730ed68343-00",
+ "traceparent": "00-bacec4fe81114d46a66c98be5e9e7519-110ffced83dd124e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "46830d141c027a6a14ec7bfdd204df66",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:14 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -592,14 +604,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:13 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "46830d141c027a6a14ec7bfdd204df66",
- "x-ms-request-id": "207592af-b002-001b-6821-5aea7a000000",
+ "x-ms-request-id": "9b334dae-4002-002c-3087-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -610,13 +622,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-2043b909ed14284da532ed1f0c1f99d1-0cf96d97f235074a-00",
+ "traceparent": "00-c9d99080baed094eaaee1e958dd43a75-c62fd514a305f940-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a24d851147153a231983e2247bd8c0b4",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -625,14 +637,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:14 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "a24d851147153a231983e2247bd8c0b4",
- "x-ms-request-id": "207592bd-b002-001b-7621-5aea7a000000",
+ "x-ms-request-id": "9b334db5-4002-002c-3787-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -643,13 +655,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-4d9f2820f846644f86a8d3d4ce2f1174-b739bfa526240742-00",
+ "traceparent": "00-66ea3069bf1a274e917640326874ed27-ae4b5dd6f8f2244a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "27694d448eb5251a7393af4f8677da38",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -658,14 +670,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:14 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "27694d448eb5251a7393af4f8677da38",
- "x-ms-request-id": "207592c3-b002-001b-7b21-5aea7a000000",
+ "x-ms-request-id": "9b334db9-4002-002c-3b87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -676,13 +688,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-5ceb453a536f934381ab28c8e23f2c1e-e8a640682a433a48-00",
+ "traceparent": "00-f4a6d3a44bc7df4181bf3e755d97b6f6-9afef6c1a70f9b43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "fb0abe3f438accd1ea492c7f3946ff3b",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -691,14 +703,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:14 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "fb0abe3f438accd1ea492c7f3946ff3b",
- "x-ms-request-id": "207592ca-b002-001b-0221-5aea7a000000",
+ "x-ms-request-id": "9b334dc2-4002-002c-4487-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -709,13 +721,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-2801c10e3812dd4d9c7f644b48ec0bf0-dc554fe3a40c5c41-00",
+ "traceparent": "00-04f974005d5ee24aa13c6ed841d26578-c34471019f3a8242-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "85b8c72cb79a83b16b272e8198d3b4a2",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -724,14 +736,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:14 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "85b8c72cb79a83b16b272e8198d3b4a2",
- "x-ms-request-id": "207592d2-b002-001b-0a21-5aea7a000000",
+ "x-ms-request-id": "9b334dcd-4002-002c-4e87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -742,13 +754,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-e68ddd8bf3bb0b4c80f0495e3629a876-33dcd8c1862e634b-00",
+ "traceparent": "00-08992d2c4d58594d93fe738d6105c3bd-6da4ac43e7dae74b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "bce4aaa8c4cd002a7b9d3d6b629aeb2d",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -757,14 +769,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:14 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "bce4aaa8c4cd002a7b9d3d6b629aeb2d",
- "x-ms-request-id": "207592dc-b002-001b-1421-5aea7a000000",
+ "x-ms-request-id": "9b334dd7-4002-002c-5887-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -775,13 +787,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-02bf03762f3d9649984e4b0bbbf74914-2c4351f4fa51ac43-00",
+ "traceparent": "00-7ef1028af9535a44baee97a50917deb5-720fa52c09f90e45-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "be22739454be889d0d87906215503416",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -790,14 +802,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:14 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "be22739454be889d0d87906215503416",
- "x-ms-request-id": "207592e9-b002-001b-2121-5aea7a000000",
+ "x-ms-request-id": "9b334de0-4002-002c-5f87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -808,13 +820,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-d10cf3021947f84fb49d19b817459ecf-b08247f9e6a83249-00",
+ "traceparent": "00-7ddfbe68747fa24da8a9fe288cd83ae0-c825e520eaee5647-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8fd689944361686d9cb709fd794520d0",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -823,14 +835,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:14 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "8fd689944361686d9cb709fd794520d0",
- "x-ms-request-id": "207592f2-b002-001b-2a21-5aea7a000000",
+ "x-ms-request-id": "9b334de4-4002-002c-6187-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -841,13 +853,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-c0773c5914fee343b9ba7fc81a1a62fa-41bc36efdfec5f49-00",
+ "traceparent": "00-239326faab4d6545b78a6b25fcb05faf-76a6b419680e034a-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "24ed013cf5b154e30d5baf4634c8eb2b",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -856,14 +868,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:14 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "24ed013cf5b154e30d5baf4634c8eb2b",
- "x-ms-request-id": "207592f6-b002-001b-2e21-5aea7a000000",
+ "x-ms-request-id": "9b334dec-4002-002c-6787-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -874,13 +886,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-25f0b695980acf46be4d3b804cd4854c-2b911244bf98eb47-00",
+ "traceparent": "00-4d6e05184516cb4e9e1e276d770c419f-c3ce32f15f1b514e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d8d727685cc451cb05ba22074b9f0fc7",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -889,14 +901,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:14 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "d8d727685cc451cb05ba22074b9f0fc7",
- "x-ms-request-id": "207592fa-b002-001b-3221-5aea7a000000",
+ "x-ms-request-id": "9b334df2-4002-002c-6c87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/ValidateAccountSasCredentialsWithPermissions.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/ValidateAccountSasCredentialsWithPermissions.json
index 45eeddb221d2..1f42fdee9b7c 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/ValidateAccountSasCredentialsWithPermissions.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/ValidateAccountSasCredentialsWithPermissions.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-1099194215ca0f41ab9361b6dfe2ae58-f3e9516d59211143-00",
+ "traceparent": "00-71f6ea748b85074f87c14fc3e5b7ab71-e24d930ecb01c744-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7c54c9ca723c945c40686f4ad4f516a1",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:50 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:49 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablezwe1xlp0\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "7c54c9ca723c945c40686f4ad4f516a1",
- "x-ms-request-id": "20756e53-b002-001b-4a21-5aea7a000000",
+ "x-ms-request-id": "9b333d57-4002-002c-4986-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,13 +50,14 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?sv=2019-02-02\u0026ss=t\u0026srt=sco\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=d\u0026sig=Sanitized\u0026$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-b457ad53b6a57e4ea9f18811b3117efe-30c0856ef0aea140-00",
+ "traceparent": "00-ee97ff28e6dc454c8b317e4743f28a87-7f6f12b498060b41-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "cde361501c7cd0b4ede2b2259c9235ff",
"x-ms-return-client-request-id": "true",
@@ -68,7 +70,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:50 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -76,7 +78,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "cde361501c7cd0b4ede2b2259c9235ff",
- "x-ms-request-id": "20756e5b-b002-001b-5121-5aea7a000000",
+ "x-ms-request-id": "9b333d5a-4002-002c-4b86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -84,7 +86,7 @@
"code": "AuthorizationPermissionMismatch",
"message": {
"lang": "en-US",
- "value": "This request is not authorized to perform this operation using this permission.\nRequestId:20756e5b-b002-001b-5121-5aea7a000000\nTime:2020-07-14T20:58:15.0766198Z"
+ "value": "This request is not authorized to perform this operation using this permission.\nRequestId:9b333d5a-4002-002c-4b86-5c46d5000000\nTime:2020-07-17T22:09:50.9347099Z"
}
}
}
@@ -93,13 +95,14 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?sv=2019-02-02\u0026ss=t\u0026srt=sco\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=w\u0026sig=Sanitized\u0026$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-f41308113766824a906c293f8211aa30-36794c7eba81404a-00",
+ "traceparent": "00-2acd1251762a9e47a121e278880cd79b-f129f2346c670343-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "70c249692e9f485aa4224e2889156f24",
"x-ms-return-client-request-id": "true",
@@ -112,7 +115,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:50 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable7zmjllw1\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -121,7 +124,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "70c249692e9f485aa4224e2889156f24",
- "x-ms-request-id": "20756e69-b002-001b-5e21-5aea7a000000",
+ "x-ms-request-id": "9b333d5e-4002-002c-4f86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -137,10 +140,10 @@
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
- "traceparent": "00-12f4963cc191244d9d8ec3178bbb4aee-bfb5c074b035d548-00",
+ "traceparent": "00-30f93499327ddc479d8b61a0635e5b51-3e07bfc90f01764b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "db2bad2a8e8e2418b39e5cf142f10525",
"x-ms-return-client-request-id": "true",
@@ -151,14 +154,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:50 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "db2bad2a8e8e2418b39e5cf142f10525",
- "x-ms-request-id": "20756e76-b002-001b-6a21-5aea7a000000",
+ "x-ms-request-id": "9b333d61-4002-002c-5186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -169,13 +172,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-5128ae5bd153fd42bba4da46ef730dcf-bbcf5e110fbb0f42-00",
+ "traceparent": "00-f7dae65de9cbc644adbf0c194fc67f6c-415e53bba8963746-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "c5e0a7ff2ee32207069b2859cd8b46d8",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -184,14 +187,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:50 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "c5e0a7ff2ee32207069b2859cd8b46d8",
- "x-ms-request-id": "20756e80-b002-001b-7421-5aea7a000000",
+ "x-ms-request-id": "9b333d67-4002-002c-5786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/ValidateAccountSasCredentialsWithPermissionsAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/ValidateAccountSasCredentialsWithPermissionsAsync.json
index 8f0fd0147f06..030121d7faf4 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/ValidateAccountSasCredentialsWithPermissionsAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/ValidateAccountSasCredentialsWithPermissionsAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c05d2d976e95f8428ed551dbb98a4986-dc491718ed517443-00",
+ "traceparent": "00-ce4f450e58430349b1846f56ab8a8ba7-ab6b631318a38449-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "80d1f726de3e408f0831a314f90df24a",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:14 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablecitp75th\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "80d1f726de3e408f0831a314f90df24a",
- "x-ms-request-id": "20759305-b002-001b-3d21-5aea7a000000",
+ "x-ms-request-id": "9b334dfb-4002-002c-7487-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,13 +50,14 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?sv=2019-02-02\u0026ss=t\u0026srt=sco\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=d\u0026sig=Sanitized\u0026$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-659febc847d0d3469a6bcdf96240cc82-a803518f1ee3914c-00",
+ "traceparent": "00-5a7ea99395565f4d9a0bec1f7dc7ab9a-0d8ecc2da321444f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "8ef793705aef88ba797e782dd472a00b",
"x-ms-return-client-request-id": "true",
@@ -68,7 +70,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:14 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -76,7 +78,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "8ef793705aef88ba797e782dd472a00b",
- "x-ms-request-id": "20759310-b002-001b-4721-5aea7a000000",
+ "x-ms-request-id": "9b334dff-4002-002c-7787-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -84,7 +86,7 @@
"code": "AuthorizationPermissionMismatch",
"message": {
"lang": "en-US",
- "value": "This request is not authorized to perform this operation using this permission.\nRequestId:20759310-b002-001b-4721-5aea7a000000\nTime:2020-07-14T20:59:03.8851378Z"
+ "value": "This request is not authorized to perform this operation using this permission.\nRequestId:9b334dff-4002-002c-7787-5c46d5000000\nTime:2020-07-17T22:10:15.4080822Z"
}
}
}
@@ -93,13 +95,14 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?sv=2019-02-02\u0026ss=t\u0026srt=sco\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=w\u0026sig=Sanitized\u0026$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-c1298a966242224dbe9fee0c6ebd9c01-8d2752dcfa0aea49-00",
+ "traceparent": "00-8d02d09e7cb9e84bbc54f23f076d1cc2-44867bef71735e44-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "b63756382c0ed9f27a4d122e501dcbef",
"x-ms-return-client-request-id": "true",
@@ -112,7 +115,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:14 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableng449w66\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -121,7 +124,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "b63756382c0ed9f27a4d122e501dcbef",
- "x-ms-request-id": "20759315-b002-001b-4b21-5aea7a000000",
+ "x-ms-request-id": "9b334e03-4002-002c-7a87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -137,10 +140,10 @@
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
- "traceparent": "00-3b67b22778b17e4eb10d93e8990d21aa-fee32f3540f07343-00",
+ "traceparent": "00-6cda376a5c94b44e82287e61af40814c-4fc845c99e9f9746-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "aa10240501e6ae50771a9a7b94c47606",
"x-ms-return-client-request-id": "true",
@@ -151,14 +154,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:14 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "aa10240501e6ae50771a9a7b94c47606",
- "x-ms-request-id": "2075931d-b002-001b-5221-5aea7a000000",
+ "x-ms-request-id": "9b334e0d-4002-002c-0387-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -169,13 +172,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-bf0eb1bb630aac4082d2014a6d083816-62911d1da47bd647-00",
+ "traceparent": "00-11d89fc9b92e294b803b2cfe312c708f-61a2d97005eebb42-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "0bc34d8d3bfe439da11e13a2488b385c",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -184,14 +187,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:14 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "0bc34d8d3bfe439da11e13a2488b385c",
- "x-ms-request-id": "20759324-b002-001b-5921-5aea7a000000",
+ "x-ms-request-id": "9b334e14-4002-002c-0787-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/ValidateAccountSasCredentialsWithResourceTypes.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/ValidateAccountSasCredentialsWithResourceTypes.json
index ff1070fa4968..74d4233ee162 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/ValidateAccountSasCredentialsWithResourceTypes.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/ValidateAccountSasCredentialsWithResourceTypes.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-205b689fb1e72549bd6b367472a35f79-debbfc7be478334d-00",
+ "traceparent": "00-41476ffbb5708c49a3e409cc3aece2c8-481eb0b542f80d4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "3823a804f6a6d36911aab5226eb8732d",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:50 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablepj3a3xau\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "3823a804f6a6d36911aab5226eb8732d",
- "x-ms-request-id": "20756e8b-b002-001b-7f21-5aea7a000000",
+ "x-ms-request-id": "9b333d73-4002-002c-6386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,13 +50,14 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?sv=2019-02-02\u0026ss=t\u0026srt=s\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=rwdlau\u0026sig=Sanitized\u0026$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-702ad45d0d2db943aea03a4988e9147d-85d4490f181c7a4d-00",
+ "traceparent": "00-a217ef30e19a26449ae719e4d83010e0-6cf7a8462e99774e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "a3f6be10080e0ed5f524d238e2986a9a",
"x-ms-return-client-request-id": "true",
@@ -68,7 +70,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:14 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:50 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -76,7 +78,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "a3f6be10080e0ed5f524d238e2986a9a",
- "x-ms-request-id": "20756e99-b002-001b-0c21-5aea7a000000",
+ "x-ms-request-id": "9b333d78-4002-002c-6786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -84,7 +86,7 @@
"code": "AuthorizationResourceTypeMismatch",
"message": {
"lang": "en-US",
- "value": "This request is not authorized to perform this operation using this resource type.\nRequestId:20756e99-b002-001b-0c21-5aea7a000000\nTime:2020-07-14T20:58:15.3108151Z"
+ "value": "This request is not authorized to perform this operation using this resource type.\nRequestId:9b333d78-4002-002c-6786-5c46d5000000\nTime:2020-07-17T22:09:51.1899221Z"
}
}
}
@@ -93,13 +95,14 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?sv=2019-02-02\u0026ss=t\u0026srt=sc\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=rwdlau\u0026sig=Sanitized\u0026$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-3973286ab646654a9fc446b6b23f0651-23c501862fbddc41-00",
+ "traceparent": "00-3f5f6419d4e35241ada52ba0ecc70fb2-1313411c104c4644-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "4c46fd4300f8da41d66206a0a5888bea",
"x-ms-return-client-request-id": "true",
@@ -112,7 +115,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:58:15 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:50 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableyounu39i\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -121,7 +124,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "4c46fd4300f8da41d66206a0a5888bea",
- "x-ms-request-id": "20756e9f-b002-001b-1221-5aea7a000000",
+ "x-ms-request-id": "9b333d84-4002-002c-7386-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -136,10 +139,10 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/?sv=2019-02-02\u0026ss=t\u0026srt=s\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=rwdlau\u0026sig=Sanitized\u0026restype=service\u0026comp=properties",
"RequestMethod": "GET",
"RequestHeaders": {
- "traceparent": "00-0910c6ede08e084ea9788fba9e8ecbe0-08b1dbc3d34aec46-00",
+ "traceparent": "00-fdfde66a35a4e1409f14552442310bc3-a4e5f4b2dc18e64e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e728434cc60008c5d5a72c49e63b4a46",
"x-ms-return-client-request-id": "true",
@@ -149,26 +152,26 @@
"StatusCode": 200,
"ResponseHeaders": {
"Content-Type": "application/xml",
- "Date": "Tue, 14 Jul 2020 20:58:15 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:50 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"Transfer-Encoding": "chunked",
"x-ms-client-request-id": "e728434cc60008c5d5a72c49e63b4a46",
- "x-ms-request-id": "20756ea9-b002-001b-1b21-5aea7a000000",
+ "x-ms-request-id": "9b333d93-4002-002c-0186-5c46d5000000",
"x-ms-version": "2019-02-02"
},
- "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CStorageServiceProperties\u003E\u003CLogging\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CRead\u003Efalse\u003C/Read\u003E\u003CWrite\u003Efalse\u003C/Write\u003E\u003CDelete\u003Efalse\u003C/Delete\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/Logging\u003E\u003CHourMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CIncludeAPIs\u003Etrue\u003C/IncludeAPIs\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CDays\u003E7\u003C/Days\u003E\u003C/RetentionPolicy\u003E\u003C/HourMetrics\u003E\u003CMinuteMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/MinuteMetrics\u003E\u003CCors /\u003E\u003C/StorageServiceProperties\u003E"
+ "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CStorageServiceProperties\u003E\u003CLogging\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CRead\u003Etrue\u003C/Read\u003E\u003CWrite\u003Efalse\u003C/Write\u003E\u003CDelete\u003Efalse\u003C/Delete\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/Logging\u003E\u003CHourMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CIncludeAPIs\u003Etrue\u003C/IncludeAPIs\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CDays\u003E7\u003C/Days\u003E\u003C/RetentionPolicy\u003E\u003C/HourMetrics\u003E\u003CMinuteMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/MinuteMetrics\u003E\u003CCors /\u003E\u003C/StorageServiceProperties\u003E"
},
{
"RequestUri": "https://chrissscratch.table.core.windows.net/?sv=2019-02-02\u0026ss=t\u0026srt=s\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=rwdlau\u0026sig=Sanitized\u0026restype=service\u0026comp=properties",
"RequestMethod": "GET",
"RequestHeaders": {
- "traceparent": "00-63320fb7c8e6bd46891aab8b84dda509-fabfcd068b12044d-00",
+ "traceparent": "00-c057ba7b0dbf4d41b9548b020b58f67e-b839c3902c21ed4b-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "957c45c10fd30fe77d1bccac0234696c",
"x-ms-return-client-request-id": "true",
@@ -178,27 +181,27 @@
"StatusCode": 200,
"ResponseHeaders": {
"Content-Type": "application/xml",
- "Date": "Tue, 14 Jul 2020 20:58:15 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:50 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"Transfer-Encoding": "chunked",
"x-ms-client-request-id": "957c45c10fd30fe77d1bccac0234696c",
- "x-ms-request-id": "20756eb1-b002-001b-2321-5aea7a000000",
+ "x-ms-request-id": "9b333da0-4002-002c-0e86-5c46d5000000",
"x-ms-version": "2019-02-02"
},
- "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CStorageServiceProperties\u003E\u003CLogging\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CRead\u003Efalse\u003C/Read\u003E\u003CWrite\u003Efalse\u003C/Write\u003E\u003CDelete\u003Efalse\u003C/Delete\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/Logging\u003E\u003CHourMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CIncludeAPIs\u003Etrue\u003C/IncludeAPIs\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CDays\u003E7\u003C/Days\u003E\u003C/RetentionPolicy\u003E\u003C/HourMetrics\u003E\u003CMinuteMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/MinuteMetrics\u003E\u003CCors /\u003E\u003C/StorageServiceProperties\u003E"
+ "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CStorageServiceProperties\u003E\u003CLogging\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CRead\u003Etrue\u003C/Read\u003E\u003CWrite\u003Efalse\u003C/Write\u003E\u003CDelete\u003Efalse\u003C/Delete\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/Logging\u003E\u003CHourMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CIncludeAPIs\u003Etrue\u003C/IncludeAPIs\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CDays\u003E7\u003C/Days\u003E\u003C/RetentionPolicy\u003E\u003C/HourMetrics\u003E\u003CMinuteMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/MinuteMetrics\u003E\u003CCors /\u003E\u003C/StorageServiceProperties\u003E"
},
{
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtableyounu39i\u0027)?sv=2019-02-02\u0026ss=t\u0026srt=sc\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=rwdlau\u0026sig=Sanitized",
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
- "traceparent": "00-66886b9e3a46a048b5c7282f315a594d-0d7b61d368122b42-00",
+ "traceparent": "00-1484edae7343eb47be9c86a34c795b2c-048789f5af95de4e-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "9febe89982707c99383e7751d3f8f49b",
"x-ms-return-client-request-id": "true",
@@ -209,14 +212,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:15 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:50 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "9febe89982707c99383e7751d3f8f49b",
- "x-ms-request-id": "20756eba-b002-001b-2c21-5aea7a000000",
+ "x-ms-request-id": "9b333daa-4002-002c-1786-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -227,13 +230,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-456fb49c7bd98247bd668fce30bd2050-cb9d0aa1d96d124b-00",
+ "traceparent": "00-f9c8db8980793d44a463e306cd73cda2-2b1a4725ae0f6842-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5fdfc017f50c3d165c1869e4f91906a0",
- "x-ms-date": "Tue, 14 Jul 2020 20:58:15 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:09:51 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -242,14 +245,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:58:15 GMT",
+ "Date": "Fri, 17 Jul 2020 22:09:50 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "5fdfc017f50c3d165c1869e4f91906a0",
- "x-ms-request-id": "20756ec4-b002-001b-3621-5aea7a000000",
+ "x-ms-request-id": "9b333db8-4002-002c-2586-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/ValidateAccountSasCredentialsWithResourceTypesAsync.json b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/ValidateAccountSasCredentialsWithResourceTypesAsync.json
index 810974ec1430..2102e05a934b 100644
--- a/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/ValidateAccountSasCredentialsWithResourceTypesAsync.json
+++ b/sdk/tables/Azure.Data.Tables/tests/SessionRecords/TableServiceClientLiveTests(Storage)/ValidateAccountSasCredentialsWithResourceTypesAsync.json
@@ -4,17 +4,18 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Authorization": "Sanitized",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-3a03c97cf30d1848b19ff48a0553ef39-5131967baf1b6c4d-00",
+ "traceparent": "00-fb67e96b57b04a4cb4b8d52ed8808474-3b7ff73fc7f45a43-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "5ba737181172ad58274cfc164db0f4f1",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -25,7 +26,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:14 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtable3jylrf0v\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -34,7 +35,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "5ba737181172ad58274cfc164db0f4f1",
- "x-ms-request-id": "20759336-b002-001b-6a21-5aea7a000000",
+ "x-ms-request-id": "9b334e19-4002-002c-0c87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -49,13 +50,14 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?sv=2019-02-02\u0026ss=t\u0026srt=s\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=rwdlau\u0026sig=Sanitized\u0026$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-278b1894deeeac4ca16779d4c9c8c657-9398858bdfe9e648-00",
+ "traceparent": "00-5efd00a6f4d6ca408b2c380f40ac1a54-ca6ae43ade0efc4d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "e23cdb799f811369eaeb91cb171f3b85",
"x-ms-return-client-request-id": "true",
@@ -68,7 +70,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:14 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -76,7 +78,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "e23cdb799f811369eaeb91cb171f3b85",
- "x-ms-request-id": "20759345-b002-001b-7421-5aea7a000000",
+ "x-ms-request-id": "9b334e25-4002-002c-1487-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -84,7 +86,7 @@
"code": "AuthorizationResourceTypeMismatch",
"message": {
"lang": "en-US",
- "value": "This request is not authorized to perform this operation using this resource type.\nRequestId:20759345-b002-001b-7421-5aea7a000000\nTime:2020-07-14T20:59:04.1253367Z"
+ "value": "This request is not authorized to perform this operation using this resource type.\nRequestId:9b334e25-4002-002c-1487-5c46d5000000\nTime:2020-07-17T22:10:15.6332699Z"
}
}
}
@@ -93,13 +95,14 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/Tables?sv=2019-02-02\u0026ss=t\u0026srt=sc\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=rwdlau\u0026sig=Sanitized\u0026$format=application%2Fjson%3Bodata%3Dfullmetadata",
"RequestMethod": "POST",
"RequestHeaders": {
+ "Accept": "application/json",
"Content-Length": "33",
"Content-Type": "application/json; odata=nometadata",
"DataServiceVersion": "3.0",
- "traceparent": "00-ab2ef5bea2df9e49b7bd677bfa716f1b-169d96ffb8403843-00",
+ "traceparent": "00-ded87ab11e50d84391415569b0622d28-61af4ccf5a73304c-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "fdb12cdb07a765c034e94980e7a4167a",
"x-ms-return-client-request-id": "true",
@@ -112,7 +115,7 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Type": "application/json; odata=fullmetadata; streaming=true; charset=utf-8",
- "Date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:14 GMT",
"Location": "https://chrissscratch.table.core.windows.net/Tables(\u0027testtablef767jmq5\u0027)",
"Server": [
"Windows-Azure-Table/1.0",
@@ -121,7 +124,7 @@
"Transfer-Encoding": "chunked",
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "fdb12cdb07a765c034e94980e7a4167a",
- "x-ms-request-id": "2075934f-b002-001b-7e21-5aea7a000000",
+ "x-ms-request-id": "9b334e2d-4002-002c-1b87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": {
@@ -136,10 +139,10 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/?sv=2019-02-02\u0026ss=t\u0026srt=s\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=rwdlau\u0026sig=Sanitized\u0026restype=service\u0026comp=properties",
"RequestMethod": "GET",
"RequestHeaders": {
- "traceparent": "00-440a3620e71d69478a4346300fe7b49f-96a4f961b21a9a40-00",
+ "traceparent": "00-726a355ad29e2749adf942b03ec2afd0-de1195db9c2a5c4f-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "97e1991976d5882be2e92c611e28d907",
"x-ms-return-client-request-id": "true",
@@ -149,14 +152,14 @@
"StatusCode": 200,
"ResponseHeaders": {
"Content-Type": "application/xml",
- "Date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:14 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"Transfer-Encoding": "chunked",
"x-ms-client-request-id": "97e1991976d5882be2e92c611e28d907",
- "x-ms-request-id": "20759359-b002-001b-0521-5aea7a000000",
+ "x-ms-request-id": "9b334e32-4002-002c-1f87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CStorageServiceProperties\u003E\u003CLogging\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CRead\u003Efalse\u003C/Read\u003E\u003CWrite\u003Efalse\u003C/Write\u003E\u003CDelete\u003Efalse\u003C/Delete\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/Logging\u003E\u003CHourMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CIncludeAPIs\u003Etrue\u003C/IncludeAPIs\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CDays\u003E7\u003C/Days\u003E\u003C/RetentionPolicy\u003E\u003C/HourMetrics\u003E\u003CMinuteMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/MinuteMetrics\u003E\u003CCors /\u003E\u003C/StorageServiceProperties\u003E"
@@ -165,10 +168,10 @@
"RequestUri": "https://chrissscratch.table.core.windows.net/?sv=2019-02-02\u0026ss=t\u0026srt=s\u0026se=2040-01-01T01%3A01%3A00Z\u0026sp=rwdlau\u0026sig=Sanitized\u0026restype=service\u0026comp=properties",
"RequestMethod": "GET",
"RequestHeaders": {
- "traceparent": "00-c9eb01688aac954e8695758e1a1e70cf-8defc3e9a467f042-00",
+ "traceparent": "00-fbef78257834624989acdcdbbf389087-0e5e720db0375e49-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "d60cb9ae1fec72651bd6ad9855e92b45",
"x-ms-return-client-request-id": "true",
@@ -178,14 +181,14 @@
"StatusCode": 200,
"ResponseHeaders": {
"Content-Type": "application/xml",
- "Date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:14 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"Transfer-Encoding": "chunked",
"x-ms-client-request-id": "d60cb9ae1fec72651bd6ad9855e92b45",
- "x-ms-request-id": "2075935b-b002-001b-0721-5aea7a000000",
+ "x-ms-request-id": "9b334e3d-4002-002c-2787-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CStorageServiceProperties\u003E\u003CLogging\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CRead\u003Efalse\u003C/Read\u003E\u003CWrite\u003Efalse\u003C/Write\u003E\u003CDelete\u003Efalse\u003C/Delete\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/Logging\u003E\u003CHourMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CIncludeAPIs\u003Etrue\u003C/IncludeAPIs\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Etrue\u003C/Enabled\u003E\u003CDays\u003E7\u003C/Days\u003E\u003C/RetentionPolicy\u003E\u003C/HourMetrics\u003E\u003CMinuteMetrics\u003E\u003CVersion\u003E1.0\u003C/Version\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003CRetentionPolicy\u003E\u003CEnabled\u003Efalse\u003C/Enabled\u003E\u003C/RetentionPolicy\u003E\u003C/MinuteMetrics\u003E\u003CCors /\u003E\u003C/StorageServiceProperties\u003E"
@@ -195,10 +198,10 @@
"RequestMethod": "DELETE",
"RequestHeaders": {
"Accept": "application/json",
- "traceparent": "00-dd25fe364a166c448f8dfa4e7ff212fc-59da4506962e0c4c-00",
+ "traceparent": "00-2c53719b7ae6d749a30be33f980fa4c9-a3067bbc9d6ed149-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "7eb116d5a43d65af00281bbedb5e460b",
"x-ms-return-client-request-id": "true",
@@ -209,14 +212,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:14 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "7eb116d5a43d65af00281bbedb5e460b",
- "x-ms-request-id": "2075935f-b002-001b-0b21-5aea7a000000",
+ "x-ms-request-id": "9b334e45-4002-002c-2e87-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
@@ -227,13 +230,13 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-aa131e63c9c76044be55e62c17d20f59-1bcebaa6275cad4a-00",
+ "traceparent": "00-9f3a2815243aa54eba04bad1b15b8107-dbbb72cdf931654d-00",
"User-Agent": [
- "azsdk-net-Data.Tables/1.0.0-dev.20200713.1",
- "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.18363 )"
+ "azsdk-net-Data.Tables/1.0.0-dev.20200717.1",
+ "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.18363 )"
],
"x-ms-client-request-id": "2dd1420f3f98fa8d336e7bfec89333f9",
- "x-ms-date": "Tue, 14 Jul 2020 20:59:04 GMT",
+ "x-ms-date": "Fri, 17 Jul 2020 22:10:15 GMT",
"x-ms-return-client-request-id": "true",
"x-ms-version": "2019-02-02"
},
@@ -242,14 +245,14 @@
"ResponseHeaders": {
"Cache-Control": "no-cache",
"Content-Length": "0",
- "Date": "Tue, 14 Jul 2020 20:59:03 GMT",
+ "Date": "Fri, 17 Jul 2020 22:10:14 GMT",
"Server": [
"Windows-Azure-Table/1.0",
"Microsoft-HTTPAPI/2.0"
],
"X-Content-Type-Options": "nosniff",
"x-ms-client-request-id": "2dd1420f3f98fa8d336e7bfec89333f9",
- "x-ms-request-id": "2075936a-b002-001b-1321-5aea7a000000",
+ "x-ms-request-id": "9b334e49-4002-002c-3287-5c46d5000000",
"x-ms-version": "2019-02-02"
},
"ResponseBody": []
diff --git a/sdk/tables/Azure.Data.Tables/tests/TableClientLiveTests.cs b/sdk/tables/Azure.Data.Tables/tests/TableClientLiveTests.cs
index 5fcae1aff36e..69cf83c403d3 100644
--- a/sdk/tables/Azure.Data.Tables/tests/TableClientLiveTests.cs
+++ b/sdk/tables/Azure.Data.Tables/tests/TableClientLiveTests.cs
@@ -31,15 +31,20 @@ public void ValidateSasCredentials()
{
// Create a SharedKeyCredential that we can use to sign the SAS token
- var credential = new TableSharedKeyCredential(TestEnvironment.AccountName, TestEnvironment.PrimaryStorageAccountKey);
+ var credential = new TableSharedKeyCredential(AccountName, AccountKey);
// Build a shared access signature with only Read permissions.
TableSasBuilder sas = client.GetSasBuilder(TableSasPermissions.Read, new DateTime(2040, 1, 1, 1, 1, 0, DateTimeKind.Utc));
+ if (_endpointType == TableEndpointType.CosmosTable)
+ {
+ sas.Version = "2017-07-29";
+ }
+
string token = sas.Sign(credential);
// Build a SAS URI
- UriBuilder sasUri = new UriBuilder(TestEnvironment.StorageUri)
+ UriBuilder sasUri = new UriBuilder(ServiceUri)
{
Query = token
};
@@ -71,10 +76,7 @@ public async Task CreatedEntitiesCanBeQueriedWithAndWithoutPagination(int? pageC
// Create the new entities.
- foreach (var entity in entitiesToCreate)
- {
- await client.CreateEntityAsync(entity).ConfigureAwait(false);
- }
+ await CreateTestEntities(entitiesToCreate).ConfigureAwait(false);
// Query the entities.
@@ -95,10 +97,7 @@ public async Task CreatedEntitiesCanBeQueriedWithFilters()
// Create the new entities.
- foreach (var entity in entitiesToCreate)
- {
- await client.CreateEntityAsync(entity).ConfigureAwait(false);
- }
+ await CreateTestEntities(entitiesToCreate).ConfigureAwait(false);
// Query the entities with a filter specifying that to RowKey value must be greater than or equal to '10'.
@@ -207,6 +206,11 @@ public async Task EntityUpdateRespectsEtag()
[Test]
public async Task EntityMergeRespectsEtag()
{
+ if (_endpointType == TableEndpointType.CosmosTable)
+ {
+ Assert.Ignore("https://github.com/Azure/azure-sdk-for-net/issues/13555");
+ }
+
string tableName = $"testtable{Recording.GenerateId()}";
const string rowKeyValue = "1";
@@ -263,6 +267,11 @@ public async Task EntityMergeRespectsEtag()
[Test]
public async Task EntityMergeDoesPartialPropertyUpdates()
{
+ if (_endpointType == TableEndpointType.CosmosTable)
+ {
+ Assert.Ignore("https://github.com/Azure/azure-sdk-for-net/issues/13555");
+ }
+
string tableName = $"testtable{Recording.GenerateId()}";
const string rowKeyValue = "1";
@@ -395,10 +404,7 @@ public async Task CreatedEntitiesAreRoundtrippedWithProperOdataAnnoations()
// Create the new entities.
- foreach (var entity in entitiesToCreate)
- {
- await client.CreateEntityAsync(entity).ConfigureAwait(false);
- }
+ await CreateTestEntities(entitiesToCreate).ConfigureAwait(false);
// Query the entities with a filter specifying that to RowKey value must be greater than or equal to '10'.
@@ -409,7 +415,11 @@ public async Task CreatedEntitiesAreRoundtrippedWithProperOdataAnnoations()
Assert.That(entityResults.First()[GuidTypePropertyName], Is.TypeOf(), "The entity property should be of type Guid");
Assert.That(entityResults.First()[BinaryTypePropertyName], Is.TypeOf(), "The entity property should be of type byte[]");
Assert.That(entityResults.First()[Int64TypePropertyName], Is.TypeOf(), "The entity property should be of type int64");
- Assert.That(entityResults.First()[DoubleTypePropertyName], Is.TypeOf(), "The entity property should be of type double");
+ //TODO: Remove conditional after fixing https://github.com/Azure/azure-sdk-for-net/issues/13552
+ if (_endpointType != TableEndpointType.CosmosTable)
+ {
+ Assert.That(entityResults.First()[DoubleTypePropertyName], Is.TypeOf(), "The entity property should be of type double");
+ }
Assert.That(entityResults.First()[DoubleDecimalTypePropertyName], Is.TypeOf(), "The entity property should be of type double");
Assert.That(entityResults.First()[IntTypePropertyName], Is.TypeOf(), "The entity property should be of type int");
}
@@ -423,12 +433,9 @@ public async Task UpsertedEntitiesAreRoundtrippedWithProperOdataAnnoations()
List> entityResults;
List> entitiesToCreate = CreateTableEntities(PartitionKeyValue, 1);
- // Create the new entities.
+ // Upsert the new entities.
- foreach (var entity in entitiesToCreate)
- {
- await client.UpsertEntityAsync(entity, UpdateMode.Replace).ConfigureAwait(false);
- }
+ await UpsertTestEntities(entitiesToCreate, UpdateMode.Replace).ConfigureAwait(false);
// Query the entities with a filter specifying that to RowKey value must be greater than or equal to '10'.
@@ -439,7 +446,11 @@ public async Task UpsertedEntitiesAreRoundtrippedWithProperOdataAnnoations()
Assert.That(entityResults.First()[GuidTypePropertyName], Is.TypeOf(), "The entity property should be of type Guid");
Assert.That(entityResults.First()[BinaryTypePropertyName], Is.TypeOf(), "The entity property should be of type byte[]");
Assert.That(entityResults.First()[Int64TypePropertyName], Is.TypeOf(), "The entity property should be of type int64");
- Assert.That(entityResults.First()[DoubleTypePropertyName], Is.TypeOf(), "The entity property should be of type double");
+ //TODO: Remove conditional after fixing https://github.com/Azure/azure-sdk-for-net/issues/13552
+ if (_endpointType != TableEndpointType.CosmosTable)
+ {
+ Assert.That(entityResults.First()[DoubleTypePropertyName], Is.TypeOf(), "The entity property should be of type double");
+ }
Assert.That(entityResults.First()[DoubleDecimalTypePropertyName], Is.TypeOf(), "The entity property should be of type double");
Assert.That(entityResults.First()[IntTypePropertyName], Is.TypeOf(), "The entity property should be of type int");
}
@@ -468,12 +479,9 @@ public async Task QueryReturnsEntitiesWithoutOdataAnnoations()
List> entityResults;
List> entitiesToCreate = CreateTableEntities(PartitionKeyValue, 1);
- // Create the new entities.
+ // Upsert the new entities.
- foreach (var entity in entitiesToCreate)
- {
- await client.UpsertEntityAsync(entity, UpdateMode.Replace).ConfigureAwait(false);
- }
+ await UpsertTestEntities(entitiesToCreate, UpdateMode.Replace).ConfigureAwait(false);
// Query the entities with a filter specifying that to RowKey value must be greater than or equal to '10'.
@@ -495,10 +503,7 @@ public async Task CreatedCustomEntitiesCanBeQueriedWithAndWithoutPagination(int?
// Create the new entities.
- foreach (var entity in entitiesToCreate)
- {
- await client.CreateEntityAsync(entity).ConfigureAwait(false);
- }
+ await CreateTestEntities(entitiesToCreate).ConfigureAwait(false);
// Query the entities.
@@ -519,10 +524,7 @@ public async Task CreatedCustomEntitiesCanBeQueriedWithFilters()
// Create the new entities.
- foreach (var entity in entitiesToCreate)
- {
- await client.CreateEntityAsync(entity).ConfigureAwait(false);
- }
+ await CreateTestEntities(entitiesToCreate).ConfigureAwait(false);
// Query the entities with a filter specifying that to RowKey value must be greater than or equal to '10'.
@@ -631,6 +633,11 @@ public async Task CustomEntityUpdateRespectsEtag()
[Test]
public async Task CustomEntityMergeRespectsEtag()
{
+ if (_endpointType == TableEndpointType.CosmosTable)
+ {
+ Assert.Ignore("https://github.com/Azure/azure-sdk-for-net/issues/13555");
+ }
+
string tableName = $"testtable{Recording.GenerateId()}";
const string rowKeyValue = "1";
@@ -782,6 +789,11 @@ public async Task CreatedCustomEntitiesAreRoundtrippedProprly()
[Test]
public async Task GetAccessPoliciesReturnsPolicies()
{
+ if (_endpointType == TableEndpointType.CosmosTable)
+ {
+ Assert.Ignore("GetAccessPolicy is currently not supported by Cosmos endpoints.");
+ }
+
// Create some policies.
var policyToCreate = new List
diff --git a/sdk/tables/Azure.Data.Tables/tests/TableClientQueryExpressionTests.cs b/sdk/tables/Azure.Data.Tables/tests/TableClientQueryExpressionTests.cs
index 0a1ddd91233f..7c133c1a10d4 100644
--- a/sdk/tables/Azure.Data.Tables/tests/TableClientQueryExpressionTests.cs
+++ b/sdk/tables/Azure.Data.Tables/tests/TableClientQueryExpressionTests.cs
@@ -87,7 +87,7 @@ public void TestSetup()
[Test]
public void TestFilterExpressions(string expectedFilter, Expression> expression)
{
- var filter = client.CreateFilter(expression);
+ var filter = TableClient.CreateFilter(expression);
Assert.That(filter, Is.EqualTo(expectedFilter));
}
diff --git a/sdk/tables/Azure.Data.Tables/tests/TableClientQueryableLiveTests.cs b/sdk/tables/Azure.Data.Tables/tests/TableClientQueryableLiveTests.cs
index ce84c1b2c665..045bfbc3b614 100644
--- a/sdk/tables/Azure.Data.Tables/tests/TableClientQueryableLiveTests.cs
+++ b/sdk/tables/Azure.Data.Tables/tests/TableClientQueryableLiveTests.cs
@@ -119,7 +119,7 @@ public async Task TableQueryableComplexFilterWithCreateFilter()
await CreateTestEntities(entitiesToCreate).ConfigureAwait(false);
- var filter = client.CreateFilter(ent => (ent.RowKey == "0004" && ent.Int32 == 4) || ((ent.Int32 == 2) && (ent.String == "wrong string" || ent.Bool == true)) || (ent.LongPrimitiveN == (long)int.MaxValue + 50));
+ var filter = TableClient.CreateFilter(ent => (ent.RowKey == "0004" && ent.Int32 == 4) || ((ent.Int32 == 2) && (ent.String == "wrong string" || ent.Bool == true)) || (ent.LongPrimitiveN == (long)int.MaxValue + 50));
var results = await client.QueryAsync(filter).ToEnumerableAsync().ConfigureAwait(false);
foreach (ComplexEntity ent in results)
diff --git a/sdk/tables/Azure.Data.Tables/tests/TableServiceClientLiveTests.cs b/sdk/tables/Azure.Data.Tables/tests/TableServiceClientLiveTests.cs
index a15c51a56b78..6bc4ef14aacc 100644
--- a/sdk/tables/Azure.Data.Tables/tests/TableServiceClientLiveTests.cs
+++ b/sdk/tables/Azure.Data.Tables/tests/TableServiceClientLiveTests.cs
@@ -31,7 +31,7 @@ public void ValidateAccountSasCredentialsWithPermissions()
{
// Create a SharedKeyCredential that we can use to sign the SAS token
- var credential = new TableSharedKeyCredential(TestEnvironment.AccountName, TestEnvironment.PrimaryStorageAccountKey);
+ var credential = new TableSharedKeyCredential(TestEnvironment.StorageAccountName, TestEnvironment.PrimaryStorageAccountKey);
// Build a shared access signature with only Delete permissions and access to all service resource types.
@@ -79,7 +79,7 @@ public void ValidateAccountSasCredentialsWithResourceTypes()
{
// Create a SharedKeyCredential that we can use to sign the SAS token
- var credential = new TableSharedKeyCredential(TestEnvironment.AccountName, TestEnvironment.PrimaryStorageAccountKey);
+ var credential = new TableSharedKeyCredential(TestEnvironment.StorageAccountName, TestEnvironment.PrimaryStorageAccountKey);
// Build a shared access signature with all permissions and access to only Service resource types.
@@ -147,7 +147,7 @@ public async Task GetTablesReturnsTablesWithAndWithoutPagination(int? pageCount)
for (int i = 0; i < 10; i++)
{
var table = Recording.GenerateAlphaNumericId("testtable", useOnlyLowercase: true);
- await service.CreateTableAsync(table).ConfigureAwait(false);
+ await CosmosThrottleWrapper(async () => await service.CreateTableAsync(table).ConfigureAwait(false));
createdTables.Add(table);
}
@@ -182,7 +182,7 @@ public async Task GetTablesReturnsTablesWithFilter()
for (int i = 0; i < 10; i++)
{
var table = Recording.GenerateAlphaNumericId("testtable", useOnlyLowercase: true);
- await service.CreateTableAsync(table).ConfigureAwait(false);
+ await CosmosThrottleWrapper(async () => await service.CreateTableAsync(table).ConfigureAwait(false));
createdTables.Add(table);
}
@@ -205,6 +205,11 @@ public async Task GetTablesReturnsTablesWithFilter()
[Test]
public async Task GetPropertiesReturnsProperties()
{
+ if (_endpointType == TableEndpointType.CosmosTable)
+ {
+ Assert.Ignore("GetProperties is currently not supported by Cosmos endpoints.");
+ }
+
// Get current properties
TableServiceProperties responseToChange = await service.GetPropertiesAsync().ConfigureAwait(false);
@@ -237,6 +242,11 @@ public async Task GetPropertiesReturnsProperties()
[Test]
public async Task GetTableServiceStatsReturnsStats()
{
+ if (_endpointType == TableEndpointType.CosmosTable)
+ {
+ Assert.Ignore("GetProperties is currently not supported by Cosmos endpoints.");
+ }
+
// Get statistics
TableServiceStats stats = await service.GetTableServiceStatsAsync().ConfigureAwait(false);
diff --git a/sdk/tables/Azure.Data.Tables/tests/TableServiceLiveTestsBase.cs b/sdk/tables/Azure.Data.Tables/tests/TableServiceLiveTestsBase.cs
index 5244a352b78b..520aadb40241 100644
--- a/sdk/tables/Azure.Data.Tables/tests/TableServiceLiveTestsBase.cs
+++ b/sdk/tables/Azure.Data.Tables/tests/TableServiceLiveTestsBase.cs
@@ -35,6 +35,7 @@ public TableServiceLiveTestsBase(bool isAsync, TableEndpointType endpointType) :
protected TableServiceClient service { get; private set; }
protected TableClient client { get; private set; }
+
protected string tableName { get; private set; }
protected const string PartitionKeyValue = "somPartition";
protected const string PartitionKeyValue2 = "somPartition2";
@@ -47,6 +48,9 @@ public TableServiceLiveTestsBase(bool isAsync, TableEndpointType endpointType) :
protected const string DoubleDecimalTypePropertyName = "SomeDoubleProperty1";
protected const string IntTypePropertyName = "SomeIntProperty";
protected readonly TableEndpointType _endpointType;
+ protected string ServiceUri;
+ protected string AccountName;
+ protected string AccountKey;
///
/// Creates a with the endpoint and API key provided via environment
@@ -60,24 +64,47 @@ public async Task TablesTestSetup()
TableEndpointType.Storage => InstrumentClient(new TableServiceClient(
new Uri(TestEnvironment.StorageUri),
- new TableSharedKeyCredential(TestEnvironment.AccountName, TestEnvironment.PrimaryStorageAccountKey),
+ new TableSharedKeyCredential(TestEnvironment.StorageAccountName, TestEnvironment.PrimaryStorageAccountKey),
Recording.InstrumentClientOptions(new TableClientOptions()))),
- //TODO: Replace this with a Cosmos endpoint constructed client
TableEndpointType.CosmosTable => InstrumentClient(new TableServiceClient(
- new Uri(TestEnvironment.StorageUri),
- new TableSharedKeyCredential(TestEnvironment.AccountName, TestEnvironment.PrimaryStorageAccountKey),
+ new Uri(TestEnvironment.CosmosUri),
+ new TableSharedKeyCredential(TestEnvironment.CosmosAccountName, TestEnvironment.PrimaryCosmosAccountKey),
Recording.InstrumentClientOptions(new TableClientOptions()))),
_ => throw new NotSupportedException("Unknown endpoint type")
};
+ ServiceUri ??= _endpointType switch
+ {
+ TableEndpointType.Storage => TestEnvironment.StorageUri,
+ TableEndpointType.CosmosTable => TestEnvironment.CosmosUri,
+ _ => throw new NotSupportedException("Unknown endpoint type")
+ };
+
+ AccountName ??= _endpointType switch
+ {
+ TableEndpointType.Storage => TestEnvironment.StorageAccountName,
+ TableEndpointType.CosmosTable => TestEnvironment.CosmosAccountName,
+ _ => throw new NotSupportedException("Unknown endpoint type")
+ };
+
+ AccountKey ??= _endpointType switch
+ {
+ TableEndpointType.Storage => TestEnvironment.PrimaryStorageAccountKey,
+ TableEndpointType.CosmosTable => TestEnvironment.PrimaryCosmosAccountKey,
+ _ => throw new NotSupportedException("Unknown endpoint type")
+ };
+
tableName = Recording.GenerateAlphaNumericId("testtable", useOnlyLowercase: true);
- await service.CreateTableAsync(tableName).ConfigureAwait(false);
+
+ await CosmosThrottleWrapper(async () => await service.CreateTableAsync(tableName).ConfigureAwait(false));
+
client = service.GetTableClient(tableName);
}
+
[TearDown]
public async Task TablesTeardown()
{
@@ -110,7 +137,7 @@ protected static List> CreateTableEntities(string par
{GuidTypePropertyName, new Guid($"0d391d16-97f1-4b9a-be68-4cc871f9{n:D4}")},
{BinaryTypePropertyName, new byte[]{ 0x01, 0x02, 0x03, 0x04, 0x05 }},
{Int64TypePropertyName, long.Parse(number)},
- {DoubleTypePropertyName, (double)n},
+ {DoubleTypePropertyName, double.Parse($"{number}.0")},
{DoubleDecimalTypePropertyName, n + 0.1},
{IntTypePropertyName, n},
};
@@ -140,7 +167,7 @@ protected static List CreateCustomTableEntities(string partitionKeyV
GuidTypeProperty = new Guid($"0d391d16-97f1-4b9a-be68-4cc871f9{n:D4}"),
BinaryTypeProperty = new byte[] { 0x01, 0x02, 0x03, 0x04, 0x05 },
Int64TypeProperty = long.Parse(number),
- DoubleTypeProperty = (double)n,
+ DoubleTypeProperty = double.Parse($"{number}.0"),
IntTypeProperty = n,
};
}).ToList();
@@ -171,7 +198,7 @@ protected static List CreateComplexTableEntities(string partition
DateTimeN = new DateTime(2020, 1, 1, 1, 1, 0, DateTimeKind.Utc).AddMinutes(n),
DateTimeOffsetN = new DateTime(2020, 1, 1, 1, 1, 0, DateTimeKind.Utc).AddMinutes(n),
Double = n + ((double)n / 100),
- DoubleInteger = (double)n,
+ DoubleInteger = double.Parse($"{n.ToString()}.0"),
DoubleN = n + ((double)n / 100),
DoublePrimitive = n + ((double)n / 100),
DoublePrimitiveN = n + ((double)n / 100),
@@ -188,11 +215,34 @@ protected static List CreateComplexTableEntities(string partition
}).ToList();
}
+ // This is needed to prevent Live nightly test runs from failing due to 429 response failures.
+ // TODO: Remove after addressing https://github.com/Azure/azure-sdk-for-net/issues/13554
+ protected async Task CosmosThrottleWrapper(Func> action)
+ {
+ int retryCount = 0;
+ while (true)
+ {
+ try
+ {
+ return await action().ConfigureAwait(false);
+ }
+ // Disable retry throttling in Playback mode.
+ catch (RequestFailedException ex) when (ex.Status == 429 && Mode != RecordedTestMode.Playback)
+ {
+ if (++retryCount > 3)
+ {
+ throw;
+ }
+ await Task.Delay(750);
+ }
+ }
+ }
+
protected async Task CreateTestEntities(List entitiesToCreate) where T : TableEntity, new()
{
foreach (var entity in entitiesToCreate)
{
- await client.CreateEntityAsync(entity).ConfigureAwait(false);
+ await CosmosThrottleWrapper(async () => await client.CreateEntityAsync(entity).ConfigureAwait(false));
}
}
@@ -200,7 +250,23 @@ protected async Task CreateTestEntities(List> entitie
{
foreach (var entity in entitiesToCreate)
{
- await client.CreateEntityAsync(entity).ConfigureAwait(false);
+ await CosmosThrottleWrapper(async () => await client.CreateEntityAsync(entity).ConfigureAwait(false));
+ }
+ }
+
+ protected async Task UpsertTestEntities(List entitiesToCreate, UpdateMode updateMode) where T : TableEntity, new()
+ {
+ foreach (var entity in entitiesToCreate)
+ {
+ await CosmosThrottleWrapper(async () => await client.UpsertEntityAsync(entity, updateMode).ConfigureAwait(false));
+ }
+ }
+
+ protected async Task UpsertTestEntities(List> entitiesToCreate, UpdateMode updateMode)
+ {
+ foreach (var entity in entitiesToCreate)
+ {
+ await CosmosThrottleWrapper(async () => await client.UpsertEntityAsync(entity, updateMode).ConfigureAwait(false));
}
}
diff --git a/sdk/tables/Azure.Data.Tables/tests/TablesRecordedTestSanitizer.cs b/sdk/tables/Azure.Data.Tables/tests/TablesRecordedTestSanitizer.cs
index 5a67ac4e7bd9..181950e1aa2a 100644
--- a/sdk/tables/Azure.Data.Tables/tests/TablesRecordedTestSanitizer.cs
+++ b/sdk/tables/Azure.Data.Tables/tests/TablesRecordedTestSanitizer.cs
@@ -15,7 +15,8 @@ public override string SanitizeVariable(string variableName, string environmentV
{
return variableName switch
{
- TablesTestEnvironment.PrimaryKeyEnvironmentVariableName => string.Empty,
+ TablesTestEnvironment.PrimaryStorageKeyEnvironmentVariableName => string.Empty,
+ TablesTestEnvironment.PrimaryCosmosKeyEnvironmentVariableName => string.Empty,
_ => base.SanitizeVariable(variableName, environmentVariableValue)
};
}
diff --git a/sdk/tables/Azure.Data.Tables/tests/TablesTestEnvironment.cs b/sdk/tables/Azure.Data.Tables/tests/TablesTestEnvironment.cs
index 8c403487da6e..7a3f3d99152a 100644
--- a/sdk/tables/Azure.Data.Tables/tests/TablesTestEnvironment.cs
+++ b/sdk/tables/Azure.Data.Tables/tests/TablesTestEnvironment.cs
@@ -11,11 +11,18 @@ public TablesTestEnvironment() : base("tables")
{
}
- public const string PrimaryKeyEnvironmentVariableName = "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY";
+ // Storage Tables
+ public const string PrimaryStorageKeyEnvironmentVariableName = "TABLES_PRIMARY_STORAGE_ACCOUNT_KEY";
private const string StorageUriFormat = "https://{0}.table.core.windows.net";
+ public string PrimaryStorageAccountKey => GetRecordedVariable(PrimaryStorageKeyEnvironmentVariableName);
+ public string StorageAccountName => GetRecordedVariable("TABLES_STORAGE_ACCOUNT_NAME");
+ public string StorageUri => string.Format(StorageUriFormat, StorageAccountName);
- public string PrimaryStorageAccountKey => GetRecordedVariable(PrimaryKeyEnvironmentVariableName);
- public string AccountName => GetRecordedVariable("TABLES_STORAGE_ACCOUNT_NAME");
- public string StorageUri => string.Format(StorageUriFormat, AccountName);
+ // Cosmos Tables
+ public const string PrimaryCosmosKeyEnvironmentVariableName = "TABLES_PRIMARY_COSMOS_ACCOUNT_KEY";
+ private const string CosmosUriFormat = "https://{0}.table.cosmos.azure.com";
+ public string PrimaryCosmosAccountKey => GetRecordedVariable(PrimaryCosmosKeyEnvironmentVariableName);
+ public string CosmosAccountName => GetRecordedVariable("TABLES_COSMOS_ACCOUNT_NAME");
+ public string CosmosUri => string.Format(CosmosUriFormat, CosmosAccountName);
}
}
diff --git a/sdk/tables/Azure.Data.Tables/tests/samples/Sample1_CreateDeleteTable.cs b/sdk/tables/Azure.Data.Tables/tests/samples/Sample1_CreateDeleteTable.cs
index cdc273bc2c81..a41d884caa13 100644
--- a/sdk/tables/Azure.Data.Tables/tests/samples/Sample1_CreateDeleteTable.cs
+++ b/sdk/tables/Azure.Data.Tables/tests/samples/Sample1_CreateDeleteTable.cs
@@ -16,7 +16,7 @@ public partial class TablesSamples : TablesTestEnvironment
public void CreateTable()
{
string storageUri = StorageUri;
- string accountName = AccountName;
+ string accountName = StorageAccountName;
string storageAccountKey = PrimaryStorageAccountKey;
string tableName = "OfficeSupplies";
diff --git a/sdk/tables/Azure.Data.Tables/tests/samples/Sample1_CreateDeleteTableErrors.cs b/sdk/tables/Azure.Data.Tables/tests/samples/Sample1_CreateDeleteTableErrors.cs
index f2de033d963e..dac42772401a 100644
--- a/sdk/tables/Azure.Data.Tables/tests/samples/Sample1_CreateDeleteTableErrors.cs
+++ b/sdk/tables/Azure.Data.Tables/tests/samples/Sample1_CreateDeleteTableErrors.cs
@@ -15,7 +15,7 @@ public partial class TablesSamples : TablesTestEnvironment
public void TableCreateError()
{
string storageUri = StorageUri;
- string accountName = AccountName;
+ string accountName = StorageAccountName;
string storageAccountKey = PrimaryStorageAccountKey;
string tableName = "OfficeSupplies2";