From 2142d877404d3c67e6c739c907c46c9582d9f020 Mon Sep 17 00:00:00 2001 From: Michael Yanni Date: Tue, 8 Sep 2020 09:56:00 -0700 Subject: [PATCH 1/3] Made snippet names unique. --- sdk/schemaregistry/Azure.Data.SchemaRegistry/README.md | 8 ++++---- .../tests/Samples/Sample01_ReadmeSnippets.cs | 8 ++++---- .../README.md | 6 +++--- .../tests/Samples/Sample01_ReadmeSnippets.cs | 6 +++--- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/sdk/schemaregistry/Azure.Data.SchemaRegistry/README.md b/sdk/schemaregistry/Azure.Data.SchemaRegistry/README.md index c69c42d3452f..a771021da958 100644 --- a/sdk/schemaregistry/Azure.Data.SchemaRegistry/README.md +++ b/sdk/schemaregistry/Azure.Data.SchemaRegistry/README.md @@ -41,7 +41,7 @@ The simpliest way is to use the [Azure portal][azure_portal] and navigate to you Once you have the Azure resource credentials and the Event Hubs namespace hostname, you can create the [SchemaRegistryClient][schema_registry_client]. You'll also need the [Azure.Identity][azure_identity] package to create the credential. -```C# Snippet:CreateSchemaRegistryClient +```C# Snippet:SchemaRegistryCreateSchemaRegistryClient string endpoint = ""; var credentials = new ClientSecretCredential( "", @@ -77,7 +77,7 @@ The following shows examples of what is available through the SchemaRegistryClie Register a schema to be stored in the Azure Schema Registry. -```C# Snippet:RegisterSchema +```C# Snippet:SchemaRegistryRegisterSchema string schemaName = ""; string groupName = ""; SerializationType schemaType = SerializationType.Avro; @@ -100,7 +100,7 @@ Response schemaProperties = client.RegisterSchema(groupName, s Retrieve a previously registered schema ID from the Azure Schema Registry. -```C# Snippet:RetrieveSchemaId +```C# Snippet:SchemaRegistryRetrieveSchemaId string schemaName = ""; string groupName = ""; SerializationType schemaType = SerializationType.Avro; @@ -124,7 +124,7 @@ string schemaId = schemaProperties.Value.Id; Retrieve a previously registered schema's content from the Azure Schema Registry. -```C# Snippet:RetrieveSchema +```C# Snippet:SchemaRegistryRetrieveSchema string schemaId = ""; Response schemaProperties = client.GetSchema(schemaId); diff --git a/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/Samples/Sample01_ReadmeSnippets.cs b/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/Samples/Sample01_ReadmeSnippets.cs index 3e87ed29da3c..fc113af593f2 100644 --- a/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/Samples/Sample01_ReadmeSnippets.cs +++ b/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/Samples/Sample01_ReadmeSnippets.cs @@ -13,7 +13,7 @@ public class Sample01_ReadmeSnippets : SamplesBase", @@ -30,7 +30,7 @@ public void RegisterSchema() { var client = new SchemaRegistryClient(TestEnvironment.SchemaRegistryUri, TestEnvironment.Credential); - #region Snippet:RegisterSchema + #region Snippet:SchemaRegistryRegisterSchema string schemaName = ""; string groupName = ""; SerializationType schemaType = SerializationType.Avro; @@ -56,7 +56,7 @@ public void RetrieveSchemaId() { var client = new SchemaRegistryClient(TestEnvironment.SchemaRegistryUri, TestEnvironment.Credential); - #region Snippet:RetrieveSchemaId + #region Snippet:SchemaRegistryRetrieveSchemaId string schemaName = ""; string groupName = ""; SerializationType schemaType = SerializationType.Avro; @@ -83,7 +83,7 @@ public void RetrieveSchema() { var client = new SchemaRegistryClient(TestEnvironment.SchemaRegistryUri, TestEnvironment.Credential); - #region Snippet:RetrieveSchema + #region Snippet:SchemaRegistryRetrieveSchema string schemaId = ""; Response schemaProperties = client.GetSchema(schemaId); diff --git a/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/README.md b/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/README.md index a46cd9d4ec39..49b260aaa22a 100644 --- a/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/README.md +++ b/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/README.md @@ -41,7 +41,7 @@ The simpliest way is to use the [Azure portal][azure_portal] and navigate to you Once you have the Azure resource credentials and the Event Hubs namespace hostname, you can create the [SchemaRegistryClient][schema_registry_client]. You'll also need the [Azure.Identity][azure_identity] package to create the credential. -```C# Snippet:CreateSchemaRegistryClient +```C# Snippet:SchemaRegistryAvroCreateSchemaRegistryClient string endpoint = ""; var credentials = new ClientSecretCredential( "", @@ -92,7 +92,7 @@ Details on generating a class using the Apache Avro library can be found in the Register a schema to be stored in the Azure Schema Registry. -```C# Snippet:Serialize +```C# Snippet:SchemaRegistryAvroSerialize var employee = new Employee { Age = 42, Name = "John Doe" }; string groupName = ""; @@ -105,7 +105,7 @@ serializer.Serialize(memoryStream, employee, typeof(Employee), CancellationToken Retrieve a previously registered schema ID from the Azure Schema Registry. -```C# Snippet:Deserialize +```C# Snippet:SchemaRegistryAvroDeserialize string groupName = ""; var serializer = new SchemaRegistryAvroObjectSerializer(client, groupName, new SchemaRegistryAvroObjectSerializerOptions { AutoRegisterSchemas = true }); diff --git a/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/Samples/Sample01_ReadmeSnippets.cs b/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/Samples/Sample01_ReadmeSnippets.cs index 3daf069bca29..98e32fe1a763 100644 --- a/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/Samples/Sample01_ReadmeSnippets.cs +++ b/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/Samples/Sample01_ReadmeSnippets.cs @@ -17,7 +17,7 @@ public class Sample01_ReadmeSnippets : SamplesBase", @@ -34,7 +34,7 @@ public void Serialize() { var client = new SchemaRegistryClient(TestEnvironment.SchemaRegistryUri, TestEnvironment.Credential); - #region Snippet:Serialize + #region Snippet:SchemaRegistryAvroSerialize var employee = new Employee { Age = 42, Name = "John Doe" }; string groupName = ""; @@ -51,7 +51,7 @@ public void Deserialize() var client = new SchemaRegistryClient(TestEnvironment.SchemaRegistryUri, TestEnvironment.Credential); using var memoryStream = new MemoryStream(); - #region Snippet:Deserialize + #region Snippet:SchemaRegistryAvroDeserialize string groupName = ""; var serializer = new SchemaRegistryAvroObjectSerializer(client, groupName, new SchemaRegistryAvroObjectSerializerOptions { AutoRegisterSchemas = true }); From 420664db92a042e1bec20333883a7ab84cdc72e4 Mon Sep 17 00:00:00 2001 From: Michael Yanni Date: Thu, 10 Sep 2020 15:18:11 -0700 Subject: [PATCH 2/3] Fix readme links. --- sdk/schemaregistry/Azure.Data.SchemaRegistry/README.md | 6 +++--- .../README.md | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sdk/schemaregistry/Azure.Data.SchemaRegistry/README.md b/sdk/schemaregistry/Azure.Data.SchemaRegistry/README.md index cba122ada010..c4f4856102f8 100644 --- a/sdk/schemaregistry/Azure.Data.SchemaRegistry/README.md +++ b/sdk/schemaregistry/Azure.Data.SchemaRegistry/README.md @@ -151,9 +151,9 @@ This project has adopted the [Microsoft Open Source Code of Conduct][code_of_con [nuget]: https://www.nuget.org/ -[event_hubs_namespace]: https://docs.microsoft.com/en-us/azure/event-hubs/event-hubs-about -[azure_powershell]: https://docs.microsoft.com/en-us/powershell/azure/ -[create_event_hubs_namespace]: https://docs.microsoft.com/en-us/azure/event-hubs/event-hubs-quickstart-powershell#create-an-event-hubs-namespace +[event_hubs_namespace]: https://docs.microsoft.com/azure/event-hubs/event-hubs-about +[azure_powershell]: https://docs.microsoft.com/powershell/azure/ +[create_event_hubs_namespace]: https://docs.microsoft.com/azure/event-hubs/event-hubs-quickstart-powershell#create-an-event-hubs-namespace [quickstart_guide]: https://github.com/Azure/azure-sdk-for-net/blob/master/doc/mgmt_preview_quickstart.md [schema_registry_client]: src/SchemaRegistryClient.cs [azure_portal]: https://ms.portal.azure.com/ diff --git a/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/README.md b/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/README.md index 3d0c50dea921..15e357b7b59f 100644 --- a/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/README.md +++ b/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/README.md @@ -85,8 +85,8 @@ The following shows examples of what is available through the SchemaRegistryAvro Details on generating a class using the Apache Avro library can be found in the [Avro C# Documentation][avro_csharp_documentation]. -* [Serialize](#register-a-schema) -* [Deserialize](#retrieve-a-schema-id) +* [Serialize](#serialize) +* [Deserialize](#deserialize) ### Serialize @@ -133,9 +133,9 @@ This project has adopted the [Microsoft Open Source Code of Conduct][code_of_con [nuget]: https://www.nuget.org/ -[event_hubs_namespace]: https://docs.microsoft.com/en-us/azure/event-hubs/event-hubs-about -[azure_powershell]: https://docs.microsoft.com/en-us/powershell/azure/ -[create_event_hubs_namespace]: https://docs.microsoft.com/en-us/azure/event-hubs/event-hubs-quickstart-powershell#create-an-event-hubs-namespace +[event_hubs_namespace]: https://docs.microsoft.com/azure/event-hubs/event-hubs-about +[azure_powershell]: https://docs.microsoft.com/powershell/azure/ +[create_event_hubs_namespace]: https://docs.microsoft.com/azure/event-hubs/event-hubs-quickstart-powershell#create-an-event-hubs-namespace [quickstart_guide]: https://github.com/Azure/azure-sdk-for-net/blob/master/doc/mgmt_preview_quickstart.md [schema_registry_client]: ../Azure.Data.SchemaRegistry/src/SchemaRegistryClient.cs [azure_portal]: https://ms.portal.azure.com/ From fca9ff0eb9f92337373a0d19d107528099e73fcf Mon Sep 17 00:00:00 2001 From: Michael Yanni Date: Thu, 10 Sep 2020 15:38:57 -0700 Subject: [PATCH 3/3] Rerecorded tests and enabled them. --- .../tests/SchemaRegistryClientLiveTest.cs | 3 -- .../CanGetSchema.json | 32 +++++++++---------- .../CanGetSchemaAsync.json | 32 +++++++++---------- .../CanGetSchemaId.json | 22 ++++++------- .../CanGetSchemaIdAsync.json | 22 ++++++------- .../CanRegisterSchema.json | 16 +++++----- .../CanRegisterSchemaAsync.json | 16 +++++----- ...emaRegistryAvroObjectSerializerLiveTest.cs | 2 -- .../CanSerializeAndDeserialize.json | 18 +++++------ .../CanSerializeAndDeserializeAsync.json | 18 +++++------ ...nSerializeAndDeserializeGenericRecord.json | 18 +++++------ ...alizeAndDeserializeGenericRecordAsync.json | 18 +++++------ .../CannotDeserializeUnsupportedType.json | 2 +- ...CannotDeserializeUnsupportedTypeAsync.json | 2 +- .../CannotSerializeUnsupportedType.json | 2 +- .../CannotSerializeUnsupportedTypeAsync.json | 2 +- 16 files changed, 110 insertions(+), 115 deletions(-) diff --git a/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SchemaRegistryClientLiveTest.cs b/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SchemaRegistryClientLiveTest.cs index c13cc4972443..0fa6a8235848 100644 --- a/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SchemaRegistryClientLiveTest.cs +++ b/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SchemaRegistryClientLiveTest.cs @@ -24,7 +24,6 @@ private SchemaRegistryClient CreateClient() => private const string SchemaContent = "{\"type\" : \"record\",\"namespace\" : \"TestSchema\",\"name\" : \"Employee\",\"fields\" : [{ \"name\" : \"Name\" , \"type\" : \"string\" },{ \"name\" : \"Age\", \"type\" : \"int\" }]}"; - [Ignore("The recording keeping the entire schema content string literally (including surround quotes and backslashes) causing playback to fail.")] [Test] public async Task CanRegisterSchema() { @@ -40,7 +39,6 @@ public async Task CanRegisterSchema() Assert.AreEqual(SchemaContent, schemaProperties.Value.Content); } - [Ignore("The recording keeping the entire schema content string literally (including surround quotes and backslashes) causing playback to fail.")] [Test] public async Task CanGetSchemaId() { @@ -57,7 +55,6 @@ public async Task CanGetSchemaId() Assert.AreEqual(SchemaContent, schemaProperties.Value.Content); } - [Ignore("The recording keeping the entire schema content string literally (including surround quotes and backslashes) causing playback to fail.")] [Test] public async Task CanGetSchema() { diff --git a/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTest/CanGetSchema.json b/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTest/CanGetSchema.json index 81c677fef067..7a38228486cf 100644 --- a/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTest/CanGetSchema.json +++ b/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTest/CanGetSchema.json @@ -9,40 +9,40 @@ "Content-Length": "306", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20200904.1", + "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20200910.1", "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "a9bb4e4bb92bb7199b81a2fe15c1bf1d", "x-ms-return-client-request-id": "true", "X-Schema-Type": "avro" }, - "RequestBody": "{\u0022type\u0022 : \u0022record\u0022,\u0022namespace\u0022 : \u0022TestSchema\u0022,\u0022name\u0022 : \u0022Employee\u0022,\u0022fields\u0022 : [{ \u0022name\u0022 : \u0022Name\u0022 , \u0022type\u0022 : \u0022string\u0022 },{ \u0022name\u0022 : \u0022Age\u0022, \u0022type\u0022 : \u0022int\u0022 }]}", + "RequestBody": "\u0022{\\u0022type\\u0022 : \\u0022record\\u0022,\\u0022namespace\\u0022 : \\u0022TestSchema\\u0022,\\u0022name\\u0022 : \\u0022Employee\\u0022,\\u0022fields\\u0022 : [{ \\u0022name\\u0022 : \\u0022Name\\u0022 , \\u0022type\\u0022 : \\u0022string\\u0022 },{ \\u0022name\\u0022 : \\u0022Age\\u0022, \\u0022type\\u0022 : \\u0022int\\u0022 }]}\u0022", "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Sat, 05 Sep 2020 02:02:41 GMT", - "Location": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/test1/versions/11?api-version=2017-04", + "Date": "Thu, 10 Sep 2020 22:29:43 GMT", + "Location": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/test1/versions/24?api-version=2017-04", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000", "Transfer-Encoding": "chunked", - "X-Schema-Id": "5c48f8ad9d364b579883ffa05ae9f5e4", - "X-Schema-Id-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/getschemabyid/5c48f8ad9d364b579883ffa05ae9f5e4?api-version=2017-04", + "X-Schema-Id": "19ce9e525b5b410fa34ee4d0c2977ede", + "X-Schema-Id-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/getschemabyid/19ce9e525b5b410fa34ee4d0c2977ede?api-version=2017-04", "X-Schema-Type": "Avro", - "X-Schema-Version": "11", + "X-Schema-Version": "24", "X-Schema-Versions-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/miyanni_srgroup/schemas/test1/versions?api-version=2017-04" }, "ResponseBody": { - "id": "5c48f8ad9d364b579883ffa05ae9f5e4" + "id": "19ce9e525b5b410fa34ee4d0c2977ede" } }, { - "RequestUri": "https://sr-playground.servicebus.windows.net/$schemagroups/getSchemaById/5c48f8ad9d364b579883ffa05ae9f5e4?api-version=2017-04", + "RequestUri": "https://sr-playground.servicebus.windows.net/$schemagroups/getSchemaById/19ce9e525b5b410fa34ee4d0c2977ede?api-version=2017-04", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20200904.1", + "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20200910.1", "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "789557cb0beea63b2b639b6c79b01992", @@ -52,18 +52,18 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Sat, 05 Sep 2020 02:02:41 GMT", - "Location": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/test1/versions/11?api-version=2017-04", + "Date": "Thu, 10 Sep 2020 22:29:43 GMT", + "Location": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/test1/versions/24?api-version=2017-04", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000", "Transfer-Encoding": "chunked", - "X-Schema-Id": "5c48f8ad9d364b579883ffa05ae9f5e4", - "X-Schema-Id-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/getschemabyid/5c48f8ad9d364b579883ffa05ae9f5e4?api-version=2017-04", + "X-Schema-Id": "19ce9e525b5b410fa34ee4d0c2977ede", + "X-Schema-Id-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/getschemabyid/19ce9e525b5b410fa34ee4d0c2977ede?api-version=2017-04", "X-Schema-Type": "Avro", - "X-Schema-Version": "11", + "X-Schema-Version": "24", "X-Schema-Versions-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/miyanni_srgroup/schemas/test1/versions?api-version=2017-04" }, - "ResponseBody": "{\u0022type\u0022 : \u0022record\u0022,\u0022namespace\u0022 : \u0022TestSchema\u0022,\u0022name\u0022 : \u0022Employee\u0022,\u0022fields\u0022 : [{ \u0022name\u0022 : \u0022Name\u0022 , \u0022type\u0022 : \u0022string\u0022 },{ \u0022name\u0022 : \u0022Age\u0022, \u0022type\u0022 : \u0022int\u0022 }]}" + "ResponseBody": "\u0022{\\\u0022type\\\u0022 : \\\u0022record\\\u0022,\\\u0022namespace\\\u0022 : \\\u0022TestSchema\\\u0022,\\\u0022name\\\u0022 : \\\u0022Employee\\\u0022,\\\u0022fields\\\u0022 : [{ \\\u0022name\\\u0022 : \\\u0022Name\\\u0022 , \\\u0022type\\\u0022 : \\\u0022string\\\u0022 },{ \\\u0022name\\\u0022 : \\\u0022Age\\\u0022, \\\u0022type\\\u0022 : \\\u0022int\\\u0022 }]}\u0022" } ], "Variables": { diff --git a/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTest/CanGetSchemaAsync.json b/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTest/CanGetSchemaAsync.json index bc5e13b555f1..948da8e18fec 100644 --- a/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTest/CanGetSchemaAsync.json +++ b/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTest/CanGetSchemaAsync.json @@ -9,40 +9,40 @@ "Content-Length": "306", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20200904.1", + "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20200910.1", "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "23519c599ecca90a5a65530717191100", "x-ms-return-client-request-id": "true", "X-Schema-Type": "avro" }, - "RequestBody": "{\u0022type\u0022 : \u0022record\u0022,\u0022namespace\u0022 : \u0022TestSchema\u0022,\u0022name\u0022 : \u0022Employee\u0022,\u0022fields\u0022 : [{ \u0022name\u0022 : \u0022Name\u0022 , \u0022type\u0022 : \u0022string\u0022 },{ \u0022name\u0022 : \u0022Age\u0022, \u0022type\u0022 : \u0022int\u0022 }]}", + "RequestBody": "\u0022{\\u0022type\\u0022 : \\u0022record\\u0022,\\u0022namespace\\u0022 : \\u0022TestSchema\\u0022,\\u0022name\\u0022 : \\u0022Employee\\u0022,\\u0022fields\\u0022 : [{ \\u0022name\\u0022 : \\u0022Name\\u0022 , \\u0022type\\u0022 : \\u0022string\\u0022 },{ \\u0022name\\u0022 : \\u0022Age\\u0022, \\u0022type\\u0022 : \\u0022int\\u0022 }]}\u0022", "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Sat, 05 Sep 2020 02:02:43 GMT", - "Location": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/test1/versions/11?api-version=2017-04", + "Date": "Thu, 10 Sep 2020 22:29:45 GMT", + "Location": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/test1/versions/24?api-version=2017-04", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000", "Transfer-Encoding": "chunked", - "X-Schema-Id": "5c48f8ad9d364b579883ffa05ae9f5e4", - "X-Schema-Id-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/getschemabyid/5c48f8ad9d364b579883ffa05ae9f5e4?api-version=2017-04", + "X-Schema-Id": "19ce9e525b5b410fa34ee4d0c2977ede", + "X-Schema-Id-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/getschemabyid/19ce9e525b5b410fa34ee4d0c2977ede?api-version=2017-04", "X-Schema-Type": "Avro", - "X-Schema-Version": "11", + "X-Schema-Version": "24", "X-Schema-Versions-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/miyanni_srgroup/schemas/test1/versions?api-version=2017-04" }, "ResponseBody": { - "id": "5c48f8ad9d364b579883ffa05ae9f5e4" + "id": "19ce9e525b5b410fa34ee4d0c2977ede" } }, { - "RequestUri": "https://sr-playground.servicebus.windows.net/$schemagroups/getSchemaById/5c48f8ad9d364b579883ffa05ae9f5e4?api-version=2017-04", + "RequestUri": "https://sr-playground.servicebus.windows.net/$schemagroups/getSchemaById/19ce9e525b5b410fa34ee4d0c2977ede?api-version=2017-04", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20200904.1", + "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20200910.1", "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "fa78deb88eafe71485ee6b337d7d6b2d", @@ -52,18 +52,18 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Sat, 05 Sep 2020 02:02:44 GMT", - "Location": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/test1/versions/11?api-version=2017-04", + "Date": "Thu, 10 Sep 2020 22:29:45 GMT", + "Location": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/test1/versions/24?api-version=2017-04", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000", "Transfer-Encoding": "chunked", - "X-Schema-Id": "5c48f8ad9d364b579883ffa05ae9f5e4", - "X-Schema-Id-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/getschemabyid/5c48f8ad9d364b579883ffa05ae9f5e4?api-version=2017-04", + "X-Schema-Id": "19ce9e525b5b410fa34ee4d0c2977ede", + "X-Schema-Id-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/getschemabyid/19ce9e525b5b410fa34ee4d0c2977ede?api-version=2017-04", "X-Schema-Type": "Avro", - "X-Schema-Version": "11", + "X-Schema-Version": "24", "X-Schema-Versions-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/miyanni_srgroup/schemas/test1/versions?api-version=2017-04" }, - "ResponseBody": "{\u0022type\u0022 : \u0022record\u0022,\u0022namespace\u0022 : \u0022TestSchema\u0022,\u0022name\u0022 : \u0022Employee\u0022,\u0022fields\u0022 : [{ \u0022name\u0022 : \u0022Name\u0022 , \u0022type\u0022 : \u0022string\u0022 },{ \u0022name\u0022 : \u0022Age\u0022, \u0022type\u0022 : \u0022int\u0022 }]}" + "ResponseBody": "\u0022{\\\u0022type\\\u0022 : \\\u0022record\\\u0022,\\\u0022namespace\\\u0022 : \\\u0022TestSchema\\\u0022,\\\u0022name\\\u0022 : \\\u0022Employee\\\u0022,\\\u0022fields\\\u0022 : [{ \\\u0022name\\\u0022 : \\\u0022Name\\\u0022 , \\\u0022type\\\u0022 : \\\u0022string\\\u0022 },{ \\\u0022name\\\u0022 : \\\u0022Age\\\u0022, \\\u0022type\\\u0022 : \\\u0022int\\\u0022 }]}\u0022" } ], "Variables": { diff --git a/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTest/CanGetSchemaId.json b/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTest/CanGetSchemaId.json index eb9b37bac05c..7ea50792a957 100644 --- a/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTest/CanGetSchemaId.json +++ b/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTest/CanGetSchemaId.json @@ -9,30 +9,30 @@ "Content-Length": "306", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20200904.1", + "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20200910.1", "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "2c620897d9de14f8847756ca36bfb1dd", "x-ms-return-client-request-id": "true", "X-Schema-Type": "avro" }, - "RequestBody": "{\u0022type\u0022 : \u0022record\u0022,\u0022namespace\u0022 : \u0022TestSchema\u0022,\u0022name\u0022 : \u0022Employee\u0022,\u0022fields\u0022 : [{ \u0022name\u0022 : \u0022Name\u0022 , \u0022type\u0022 : \u0022string\u0022 },{ \u0022name\u0022 : \u0022Age\u0022, \u0022type\u0022 : \u0022int\u0022 }]}", + "RequestBody": "\u0022{\\u0022type\\u0022 : \\u0022record\\u0022,\\u0022namespace\\u0022 : \\u0022TestSchema\\u0022,\\u0022name\\u0022 : \\u0022Employee\\u0022,\\u0022fields\\u0022 : [{ \\u0022name\\u0022 : \\u0022Name\\u0022 , \\u0022type\\u0022 : \\u0022string\\u0022 },{ \\u0022name\\u0022 : \\u0022Age\\u0022, \\u0022type\\u0022 : \\u0022int\\u0022 }]}\u0022", "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Sat, 05 Sep 2020 02:02:42 GMT", - "Location": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/test1/versions/11?api-version=2017-04", + "Date": "Thu, 10 Sep 2020 22:29:44 GMT", + "Location": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/test1/versions/24?api-version=2017-04", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000", "Transfer-Encoding": "chunked", - "X-Schema-Id": "5c48f8ad9d364b579883ffa05ae9f5e4", - "X-Schema-Id-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/getschemabyid/5c48f8ad9d364b579883ffa05ae9f5e4?api-version=2017-04", + "X-Schema-Id": "19ce9e525b5b410fa34ee4d0c2977ede", + "X-Schema-Id-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/getschemabyid/19ce9e525b5b410fa34ee4d0c2977ede?api-version=2017-04", "X-Schema-Type": "Avro", - "X-Schema-Version": "11", + "X-Schema-Version": "24", "X-Schema-Versions-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/miyanni_srgroup/schemas/test1/versions?api-version=2017-04" }, "ResponseBody": { - "id": "5c48f8ad9d364b579883ffa05ae9f5e4" + "id": "19ce9e525b5b410fa34ee4d0c2977ede" } }, { @@ -44,18 +44,18 @@ "Content-Length": "306", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20200904.1", + "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20200910.1", "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f81747feb3bdd74d2da2f268fd8a6e28", "x-ms-return-client-request-id": "true", "X-Schema-Type": "avro" }, - "RequestBody": "{\u0022type\u0022 : \u0022record\u0022,\u0022namespace\u0022 : \u0022TestSchema\u0022,\u0022name\u0022 : \u0022Employee\u0022,\u0022fields\u0022 : [{ \u0022name\u0022 : \u0022Name\u0022 , \u0022type\u0022 : \u0022string\u0022 },{ \u0022name\u0022 : \u0022Age\u0022, \u0022type\u0022 : \u0022int\u0022 }]}", + "RequestBody": "\u0022{\\u0022type\\u0022 : \\u0022record\\u0022,\\u0022namespace\\u0022 : \\u0022TestSchema\\u0022,\\u0022name\\u0022 : \\u0022Employee\\u0022,\\u0022fields\\u0022 : [{ \\u0022name\\u0022 : \\u0022Name\\u0022 , \\u0022type\\u0022 : \\u0022string\\u0022 },{ \\u0022name\\u0022 : \\u0022Age\\u0022, \\u0022type\\u0022 : \\u0022int\\u0022 }]}\u0022", "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Sat, 05 Sep 2020 02:02:42 GMT", + "Date": "Thu, 10 Sep 2020 22:29:44 GMT", "Location": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/test1/versions/11?api-version=2017-04", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000", diff --git a/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTest/CanGetSchemaIdAsync.json b/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTest/CanGetSchemaIdAsync.json index b9493afa63f5..66ffe5744b08 100644 --- a/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTest/CanGetSchemaIdAsync.json +++ b/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTest/CanGetSchemaIdAsync.json @@ -9,30 +9,30 @@ "Content-Length": "306", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20200904.1", + "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20200910.1", "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "5417cde1a45d14a2ae3731d071449823", "x-ms-return-client-request-id": "true", "X-Schema-Type": "avro" }, - "RequestBody": "{\u0022type\u0022 : \u0022record\u0022,\u0022namespace\u0022 : \u0022TestSchema\u0022,\u0022name\u0022 : \u0022Employee\u0022,\u0022fields\u0022 : [{ \u0022name\u0022 : \u0022Name\u0022 , \u0022type\u0022 : \u0022string\u0022 },{ \u0022name\u0022 : \u0022Age\u0022, \u0022type\u0022 : \u0022int\u0022 }]}", + "RequestBody": "\u0022{\\u0022type\\u0022 : \\u0022record\\u0022,\\u0022namespace\\u0022 : \\u0022TestSchema\\u0022,\\u0022name\\u0022 : \\u0022Employee\\u0022,\\u0022fields\\u0022 : [{ \\u0022name\\u0022 : \\u0022Name\\u0022 , \\u0022type\\u0022 : \\u0022string\\u0022 },{ \\u0022name\\u0022 : \\u0022Age\\u0022, \\u0022type\\u0022 : \\u0022int\\u0022 }]}\u0022", "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Sat, 05 Sep 2020 02:02:44 GMT", - "Location": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/test1/versions/11?api-version=2017-04", + "Date": "Thu, 10 Sep 2020 22:29:47 GMT", + "Location": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/test1/versions/24?api-version=2017-04", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000", "Transfer-Encoding": "chunked", - "X-Schema-Id": "5c48f8ad9d364b579883ffa05ae9f5e4", - "X-Schema-Id-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/getschemabyid/5c48f8ad9d364b579883ffa05ae9f5e4?api-version=2017-04", + "X-Schema-Id": "19ce9e525b5b410fa34ee4d0c2977ede", + "X-Schema-Id-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/getschemabyid/19ce9e525b5b410fa34ee4d0c2977ede?api-version=2017-04", "X-Schema-Type": "Avro", - "X-Schema-Version": "11", + "X-Schema-Version": "24", "X-Schema-Versions-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/miyanni_srgroup/schemas/test1/versions?api-version=2017-04" }, "ResponseBody": { - "id": "5c48f8ad9d364b579883ffa05ae9f5e4" + "id": "19ce9e525b5b410fa34ee4d0c2977ede" } }, { @@ -44,18 +44,18 @@ "Content-Length": "306", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20200904.1", + "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20200910.1", "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "ebf572ccf2140bd54101f2c44b198261", "x-ms-return-client-request-id": "true", "X-Schema-Type": "avro" }, - "RequestBody": "{\u0022type\u0022 : \u0022record\u0022,\u0022namespace\u0022 : \u0022TestSchema\u0022,\u0022name\u0022 : \u0022Employee\u0022,\u0022fields\u0022 : [{ \u0022name\u0022 : \u0022Name\u0022 , \u0022type\u0022 : \u0022string\u0022 },{ \u0022name\u0022 : \u0022Age\u0022, \u0022type\u0022 : \u0022int\u0022 }]}", + "RequestBody": "\u0022{\\u0022type\\u0022 : \\u0022record\\u0022,\\u0022namespace\\u0022 : \\u0022TestSchema\\u0022,\\u0022name\\u0022 : \\u0022Employee\\u0022,\\u0022fields\\u0022 : [{ \\u0022name\\u0022 : \\u0022Name\\u0022 , \\u0022type\\u0022 : \\u0022string\\u0022 },{ \\u0022name\\u0022 : \\u0022Age\\u0022, \\u0022type\\u0022 : \\u0022int\\u0022 }]}\u0022", "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Sat, 05 Sep 2020 02:02:44 GMT", + "Date": "Thu, 10 Sep 2020 22:29:47 GMT", "Location": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/test1/versions/11?api-version=2017-04", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000", diff --git a/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTest/CanRegisterSchema.json b/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTest/CanRegisterSchema.json index 609a2d89bdc5..19df210f8e04 100644 --- a/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTest/CanRegisterSchema.json +++ b/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTest/CanRegisterSchema.json @@ -9,30 +9,30 @@ "Content-Length": "306", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20200904.1", + "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20200910.1", "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "06149688c0d107fba9beaa6650213cc6", "x-ms-return-client-request-id": "true", "X-Schema-Type": "avro" }, - "RequestBody": "{\u0022type\u0022 : \u0022record\u0022,\u0022namespace\u0022 : \u0022TestSchema\u0022,\u0022name\u0022 : \u0022Employee\u0022,\u0022fields\u0022 : [{ \u0022name\u0022 : \u0022Name\u0022 , \u0022type\u0022 : \u0022string\u0022 },{ \u0022name\u0022 : \u0022Age\u0022, \u0022type\u0022 : \u0022int\u0022 }]}", + "RequestBody": "\u0022{\\u0022type\\u0022 : \\u0022record\\u0022,\\u0022namespace\\u0022 : \\u0022TestSchema\\u0022,\\u0022name\\u0022 : \\u0022Employee\\u0022,\\u0022fields\\u0022 : [{ \\u0022name\\u0022 : \\u0022Name\\u0022 , \\u0022type\\u0022 : \\u0022string\\u0022 },{ \\u0022name\\u0022 : \\u0022Age\\u0022, \\u0022type\\u0022 : \\u0022int\\u0022 }]}\u0022", "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Sat, 05 Sep 2020 02:02:43 GMT", - "Location": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/test1/versions/11?api-version=2017-04", + "Date": "Thu, 10 Sep 2020 22:29:45 GMT", + "Location": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/test1/versions/24?api-version=2017-04", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000", "Transfer-Encoding": "chunked", - "X-Schema-Id": "5c48f8ad9d364b579883ffa05ae9f5e4", - "X-Schema-Id-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/getschemabyid/5c48f8ad9d364b579883ffa05ae9f5e4?api-version=2017-04", + "X-Schema-Id": "19ce9e525b5b410fa34ee4d0c2977ede", + "X-Schema-Id-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/getschemabyid/19ce9e525b5b410fa34ee4d0c2977ede?api-version=2017-04", "X-Schema-Type": "Avro", - "X-Schema-Version": "11", + "X-Schema-Version": "24", "X-Schema-Versions-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/miyanni_srgroup/schemas/test1/versions?api-version=2017-04" }, "ResponseBody": { - "id": "5c48f8ad9d364b579883ffa05ae9f5e4" + "id": "19ce9e525b5b410fa34ee4d0c2977ede" } } ], diff --git a/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTest/CanRegisterSchemaAsync.json b/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTest/CanRegisterSchemaAsync.json index b8dc0f889ddf..66d55c09b5d1 100644 --- a/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTest/CanRegisterSchemaAsync.json +++ b/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTest/CanRegisterSchemaAsync.json @@ -9,30 +9,30 @@ "Content-Length": "306", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20200904.1", + "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20200910.1", "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "10d841304c76af44a9857366d3cdcece", "x-ms-return-client-request-id": "true", "X-Schema-Type": "avro" }, - "RequestBody": "{\u0022type\u0022 : \u0022record\u0022,\u0022namespace\u0022 : \u0022TestSchema\u0022,\u0022name\u0022 : \u0022Employee\u0022,\u0022fields\u0022 : [{ \u0022name\u0022 : \u0022Name\u0022 , \u0022type\u0022 : \u0022string\u0022 },{ \u0022name\u0022 : \u0022Age\u0022, \u0022type\u0022 : \u0022int\u0022 }]}", + "RequestBody": "\u0022{\\u0022type\\u0022 : \\u0022record\\u0022,\\u0022namespace\\u0022 : \\u0022TestSchema\\u0022,\\u0022name\\u0022 : \\u0022Employee\\u0022,\\u0022fields\\u0022 : [{ \\u0022name\\u0022 : \\u0022Name\\u0022 , \\u0022type\\u0022 : \\u0022string\\u0022 },{ \\u0022name\\u0022 : \\u0022Age\\u0022, \\u0022type\\u0022 : \\u0022int\\u0022 }]}\u0022", "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Sat, 05 Sep 2020 02:02:45 GMT", - "Location": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/test1/versions/11?api-version=2017-04", + "Date": "Thu, 10 Sep 2020 22:29:48 GMT", + "Location": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/test1/versions/24?api-version=2017-04", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000", "Transfer-Encoding": "chunked", - "X-Schema-Id": "5c48f8ad9d364b579883ffa05ae9f5e4", - "X-Schema-Id-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/getschemabyid/5c48f8ad9d364b579883ffa05ae9f5e4?api-version=2017-04", + "X-Schema-Id": "19ce9e525b5b410fa34ee4d0c2977ede", + "X-Schema-Id-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/getschemabyid/19ce9e525b5b410fa34ee4d0c2977ede?api-version=2017-04", "X-Schema-Type": "Avro", - "X-Schema-Version": "11", + "X-Schema-Version": "24", "X-Schema-Versions-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/miyanni_srgroup/schemas/test1/versions?api-version=2017-04" }, "ResponseBody": { - "id": "5c48f8ad9d364b579883ffa05ae9f5e4" + "id": "19ce9e525b5b410fa34ee4d0c2977ede" } } ], diff --git a/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SchemaRegistryAvroObjectSerializerLiveTest.cs b/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SchemaRegistryAvroObjectSerializerLiveTest.cs index 3d6353dc8f78..5007c3947661 100644 --- a/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SchemaRegistryAvroObjectSerializerLiveTest.cs +++ b/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SchemaRegistryAvroObjectSerializerLiveTest.cs @@ -28,7 +28,6 @@ private SchemaRegistryClient CreateClient() => Recording.InstrumentClientOptions(new SchemaRegistryClientOptions()) )); - [Ignore("The recording keeping the entire schema content string literally (including surround quotes and backslashes) causing playback to fail.")] [Test] public async Task CanSerializeAndDeserialize() { @@ -48,7 +47,6 @@ public async Task CanSerializeAndDeserialize() Assert.AreEqual(42, readEmployee.Age); } - [Ignore("The recording keeping the entire schema content string literally (including surround quotes and backslashes) causing playback to fail.")] [Test] public async Task CanSerializeAndDeserializeGenericRecord() { diff --git a/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SessionRecords/SchemaRegistryAvroObjectSerializerLiveTest/CanSerializeAndDeserialize.json b/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SessionRecords/SchemaRegistryAvroObjectSerializerLiveTest/CanSerializeAndDeserialize.json index b2bc10d23865..4cb3ab8eb0c6 100644 --- a/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SessionRecords/SchemaRegistryAvroObjectSerializerLiveTest/CanSerializeAndDeserialize.json +++ b/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SessionRecords/SchemaRegistryAvroObjectSerializerLiveTest/CanSerializeAndDeserialize.json @@ -9,18 +9,18 @@ "Content-Length": "283", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20200903.1", + "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20200910.1", "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" ], - "x-ms-client-request-id": "868a705e78e1eacc39ee20f0603590e1", + "x-ms-client-request-id": "a4e0342bf488b2dedfa1a44e27c4ff86", "x-ms-return-client-request-id": "true", "X-Schema-Type": "avro" }, - "RequestBody": "{\u0022type\u0022:\u0022record\u0022,\u0022name\u0022:\u0022Employee\u0022,\u0022namespace\u0022:\u0022TestSchema\u0022,\u0022fields\u0022:[{\u0022name\u0022:\u0022Name\u0022,\u0022type\u0022:\u0022string\u0022},{\u0022name\u0022:\u0022Age\u0022,\u0022type\u0022:\u0022int\u0022}]}", + "RequestBody": "\u0022{\\u0022type\\u0022:\\u0022record\\u0022,\\u0022name\\u0022:\\u0022Employee\\u0022,\\u0022namespace\\u0022:\\u0022TestSchema\\u0022,\\u0022fields\\u0022:[{\\u0022name\\u0022:\\u0022Name\\u0022,\\u0022type\\u0022:\\u0022string\\u0022},{\\u0022name\\u0022:\\u0022Age\\u0022,\\u0022type\\u0022:\\u0022int\\u0022}]}\u0022", "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Fri, 04 Sep 2020 04:17:14 GMT", + "Date": "Thu, 10 Sep 2020 22:34:41 GMT", "Location": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/TestSchema.Employee/versions/1?api-version=2017-04", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000", @@ -42,17 +42,17 @@ "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20200903.1", + "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20200910.1", "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" ], - "x-ms-client-request-id": "fce63c5a3b2209ffbf3241fcd47809a7", + "x-ms-client-request-id": "70654df76b9dc735bed0cf1d43e365c1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Fri, 04 Sep 2020 04:17:14 GMT", + "Date": "Thu, 10 Sep 2020 22:34:41 GMT", "Location": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/TestSchema.Employee/versions/1?api-version=2017-04", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000", @@ -63,11 +63,11 @@ "X-Schema-Version": "1", "X-Schema-Versions-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/miyanni_srgroup/schemas/TestSchema.Employee/versions?api-version=2017-04" }, - "ResponseBody": "{\u0022type\u0022:\u0022record\u0022,\u0022name\u0022:\u0022Employee\u0022,\u0022namespace\u0022:\u0022TestSchema\u0022,\u0022fields\u0022:[{\u0022name\u0022:\u0022Name\u0022,\u0022type\u0022:\u0022string\u0022},{\u0022name\u0022:\u0022Age\u0022,\u0022type\u0022:\u0022int\u0022}]}" + "ResponseBody": "\u0022{\\\u0022type\\\u0022:\\\u0022record\\\u0022,\\\u0022name\\\u0022:\\\u0022Employee\\\u0022,\\\u0022namespace\\\u0022:\\\u0022TestSchema\\\u0022,\\\u0022fields\\\u0022:[{\\\u0022name\\\u0022:\\\u0022Name\\\u0022,\\\u0022type\\\u0022:\\\u0022string\\\u0022},{\\\u0022name\\\u0022:\\\u0022Age\\\u0022,\\\u0022type\\\u0022:\\\u0022int\\\u0022}]}\u0022" } ], "Variables": { - "RandomSeed": "720748394", + "RandomSeed": "478322997", "SCHEMAREGISTRY_URL": "sr-playground.servicebus.windows.net" } } \ No newline at end of file diff --git a/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SessionRecords/SchemaRegistryAvroObjectSerializerLiveTest/CanSerializeAndDeserializeAsync.json b/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SessionRecords/SchemaRegistryAvroObjectSerializerLiveTest/CanSerializeAndDeserializeAsync.json index ecba1315c80c..d6def6fb808b 100644 --- a/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SessionRecords/SchemaRegistryAvroObjectSerializerLiveTest/CanSerializeAndDeserializeAsync.json +++ b/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SessionRecords/SchemaRegistryAvroObjectSerializerLiveTest/CanSerializeAndDeserializeAsync.json @@ -9,18 +9,18 @@ "Content-Length": "283", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20200903.1", + "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20200910.1", "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" ], - "x-ms-client-request-id": "9194a80ecb3e28d6d988eee20cb5ed95", + "x-ms-client-request-id": "ff66bdce9ae906e73243e5d65e9c3087", "x-ms-return-client-request-id": "true", "X-Schema-Type": "avro" }, - "RequestBody": "{\u0022type\u0022:\u0022record\u0022,\u0022name\u0022:\u0022Employee\u0022,\u0022namespace\u0022:\u0022TestSchema\u0022,\u0022fields\u0022:[{\u0022name\u0022:\u0022Name\u0022,\u0022type\u0022:\u0022string\u0022},{\u0022name\u0022:\u0022Age\u0022,\u0022type\u0022:\u0022int\u0022}]}", + "RequestBody": "\u0022{\\u0022type\\u0022:\\u0022record\\u0022,\\u0022name\\u0022:\\u0022Employee\\u0022,\\u0022namespace\\u0022:\\u0022TestSchema\\u0022,\\u0022fields\\u0022:[{\\u0022name\\u0022:\\u0022Name\\u0022,\\u0022type\\u0022:\\u0022string\\u0022},{\\u0022name\\u0022:\\u0022Age\\u0022,\\u0022type\\u0022:\\u0022int\\u0022}]}\u0022", "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Fri, 04 Sep 2020 04:17:17 GMT", + "Date": "Thu, 10 Sep 2020 22:34:44 GMT", "Location": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/TestSchema.Employee/versions/1?api-version=2017-04", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000", @@ -42,17 +42,17 @@ "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20200903.1", + "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20200910.1", "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" ], - "x-ms-client-request-id": "bbd7ee0ffba0cfc5c3b161ee35b7e4ec", + "x-ms-client-request-id": "df21687668ce562470a6755bf133f3ce", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Fri, 04 Sep 2020 04:17:17 GMT", + "Date": "Thu, 10 Sep 2020 22:34:44 GMT", "Location": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/TestSchema.Employee/versions/1?api-version=2017-04", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000", @@ -63,11 +63,11 @@ "X-Schema-Version": "1", "X-Schema-Versions-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/miyanni_srgroup/schemas/TestSchema.Employee/versions?api-version=2017-04" }, - "ResponseBody": "{\u0022type\u0022:\u0022record\u0022,\u0022name\u0022:\u0022Employee\u0022,\u0022namespace\u0022:\u0022TestSchema\u0022,\u0022fields\u0022:[{\u0022name\u0022:\u0022Name\u0022,\u0022type\u0022:\u0022string\u0022},{\u0022name\u0022:\u0022Age\u0022,\u0022type\u0022:\u0022int\u0022}]}" + "ResponseBody": "\u0022{\\\u0022type\\\u0022:\\\u0022record\\\u0022,\\\u0022name\\\u0022:\\\u0022Employee\\\u0022,\\\u0022namespace\\\u0022:\\\u0022TestSchema\\\u0022,\\\u0022fields\\\u0022:[{\\\u0022name\\\u0022:\\\u0022Name\\\u0022,\\\u0022type\\\u0022:\\\u0022string\\\u0022},{\\\u0022name\\\u0022:\\\u0022Age\\\u0022,\\\u0022type\\\u0022:\\\u0022int\\\u0022}]}\u0022" } ], "Variables": { - "RandomSeed": "1605448636", + "RandomSeed": "794512674", "SCHEMAREGISTRY_URL": "sr-playground.servicebus.windows.net" } } \ No newline at end of file diff --git a/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SessionRecords/SchemaRegistryAvroObjectSerializerLiveTest/CanSerializeAndDeserializeGenericRecord.json b/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SessionRecords/SchemaRegistryAvroObjectSerializerLiveTest/CanSerializeAndDeserializeGenericRecord.json index b957cf8c672e..97e175185ab8 100644 --- a/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SessionRecords/SchemaRegistryAvroObjectSerializerLiveTest/CanSerializeAndDeserializeGenericRecord.json +++ b/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SessionRecords/SchemaRegistryAvroObjectSerializerLiveTest/CanSerializeAndDeserializeGenericRecord.json @@ -9,18 +9,18 @@ "Content-Length": "283", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20200903.1", + "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20200910.1", "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" ], - "x-ms-client-request-id": "62af9d4468e15d9ba239fef902b0ae57", + "x-ms-client-request-id": "f53af83530d117a50854958c5671a7b8", "x-ms-return-client-request-id": "true", "X-Schema-Type": "avro" }, - "RequestBody": "{\u0022type\u0022:\u0022record\u0022,\u0022name\u0022:\u0022Employee\u0022,\u0022namespace\u0022:\u0022TestSchema\u0022,\u0022fields\u0022:[{\u0022name\u0022:\u0022Name\u0022,\u0022type\u0022:\u0022string\u0022},{\u0022name\u0022:\u0022Age\u0022,\u0022type\u0022:\u0022int\u0022}]}", + "RequestBody": "\u0022{\\u0022type\\u0022:\\u0022record\\u0022,\\u0022name\\u0022:\\u0022Employee\\u0022,\\u0022namespace\\u0022:\\u0022TestSchema\\u0022,\\u0022fields\\u0022:[{\\u0022name\\u0022:\\u0022Name\\u0022,\\u0022type\\u0022:\\u0022string\\u0022},{\\u0022name\\u0022:\\u0022Age\\u0022,\\u0022type\\u0022:\\u0022int\\u0022}]}\u0022", "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Fri, 04 Sep 2020 04:17:16 GMT", + "Date": "Thu, 10 Sep 2020 22:34:43 GMT", "Location": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/TestSchema.Employee/versions/1?api-version=2017-04", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000", @@ -42,17 +42,17 @@ "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20200903.1", + "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20200910.1", "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" ], - "x-ms-client-request-id": "28b59f1d4676f2b691ef41bd27d253ab", + "x-ms-client-request-id": "02599ce50745d6b4567fb19a450b6571", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Fri, 04 Sep 2020 04:17:16 GMT", + "Date": "Thu, 10 Sep 2020 22:34:43 GMT", "Location": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/TestSchema.Employee/versions/1?api-version=2017-04", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000", @@ -63,11 +63,11 @@ "X-Schema-Version": "1", "X-Schema-Versions-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/miyanni_srgroup/schemas/TestSchema.Employee/versions?api-version=2017-04" }, - "ResponseBody": "{\u0022type\u0022:\u0022record\u0022,\u0022name\u0022:\u0022Employee\u0022,\u0022namespace\u0022:\u0022TestSchema\u0022,\u0022fields\u0022:[{\u0022name\u0022:\u0022Name\u0022,\u0022type\u0022:\u0022string\u0022},{\u0022name\u0022:\u0022Age\u0022,\u0022type\u0022:\u0022int\u0022}]}" + "ResponseBody": "\u0022{\\\u0022type\\\u0022:\\\u0022record\\\u0022,\\\u0022name\\\u0022:\\\u0022Employee\\\u0022,\\\u0022namespace\\\u0022:\\\u0022TestSchema\\\u0022,\\\u0022fields\\\u0022:[{\\\u0022name\\\u0022:\\\u0022Name\\\u0022,\\\u0022type\\\u0022:\\\u0022string\\\u0022},{\\\u0022name\\\u0022:\\\u0022Age\\\u0022,\\\u0022type\\\u0022:\\\u0022int\\\u0022}]}\u0022" } ], "Variables": { - "RandomSeed": "993263430", + "RandomSeed": "1382678481", "SCHEMAREGISTRY_URL": "sr-playground.servicebus.windows.net" } } \ No newline at end of file diff --git a/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SessionRecords/SchemaRegistryAvroObjectSerializerLiveTest/CanSerializeAndDeserializeGenericRecordAsync.json b/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SessionRecords/SchemaRegistryAvroObjectSerializerLiveTest/CanSerializeAndDeserializeGenericRecordAsync.json index 4976695a2082..b22de3952b3e 100644 --- a/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SessionRecords/SchemaRegistryAvroObjectSerializerLiveTest/CanSerializeAndDeserializeGenericRecordAsync.json +++ b/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SessionRecords/SchemaRegistryAvroObjectSerializerLiveTest/CanSerializeAndDeserializeGenericRecordAsync.json @@ -9,18 +9,18 @@ "Content-Length": "283", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20200903.1", + "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20200910.1", "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" ], - "x-ms-client-request-id": "29665161b7b0e47e8e47525f0cf322fd", + "x-ms-client-request-id": "9ba13199bb118cee931fd241601cb425", "x-ms-return-client-request-id": "true", "X-Schema-Type": "avro" }, - "RequestBody": "{\u0022type\u0022:\u0022record\u0022,\u0022name\u0022:\u0022Employee\u0022,\u0022namespace\u0022:\u0022TestSchema\u0022,\u0022fields\u0022:[{\u0022name\u0022:\u0022Name\u0022,\u0022type\u0022:\u0022string\u0022},{\u0022name\u0022:\u0022Age\u0022,\u0022type\u0022:\u0022int\u0022}]}", + "RequestBody": "\u0022{\\u0022type\\u0022:\\u0022record\\u0022,\\u0022name\\u0022:\\u0022Employee\\u0022,\\u0022namespace\\u0022:\\u0022TestSchema\\u0022,\\u0022fields\\u0022:[{\\u0022name\\u0022:\\u0022Name\\u0022,\\u0022type\\u0022:\\u0022string\\u0022},{\\u0022name\\u0022:\\u0022Age\\u0022,\\u0022type\\u0022:\\u0022int\\u0022}]}\u0022", "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Fri, 04 Sep 2020 04:17:18 GMT", + "Date": "Thu, 10 Sep 2020 22:34:45 GMT", "Location": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/TestSchema.Employee/versions/1?api-version=2017-04", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000", @@ -42,17 +42,17 @@ "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20200903.1", + "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20200910.1", "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" ], - "x-ms-client-request-id": "6a2d0bdc0bba5cc6479100de284925b6", + "x-ms-client-request-id": "fa6e728278df4a3f9923106cdf43fd7f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Fri, 04 Sep 2020 04:17:18 GMT", + "Date": "Thu, 10 Sep 2020 22:34:45 GMT", "Location": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/TestSchema.Employee/versions/1?api-version=2017-04", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000", @@ -63,11 +63,11 @@ "X-Schema-Version": "1", "X-Schema-Versions-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/miyanni_srgroup/schemas/TestSchema.Employee/versions?api-version=2017-04" }, - "ResponseBody": "{\u0022type\u0022:\u0022record\u0022,\u0022name\u0022:\u0022Employee\u0022,\u0022namespace\u0022:\u0022TestSchema\u0022,\u0022fields\u0022:[{\u0022name\u0022:\u0022Name\u0022,\u0022type\u0022:\u0022string\u0022},{\u0022name\u0022:\u0022Age\u0022,\u0022type\u0022:\u0022int\u0022}]}" + "ResponseBody": "\u0022{\\\u0022type\\\u0022:\\\u0022record\\\u0022,\\\u0022name\\\u0022:\\\u0022Employee\\\u0022,\\\u0022namespace\\\u0022:\\\u0022TestSchema\\\u0022,\\\u0022fields\\\u0022:[{\\\u0022name\\\u0022:\\\u0022Name\\\u0022,\\\u0022type\\\u0022:\\\u0022string\\\u0022},{\\\u0022name\\\u0022:\\\u0022Age\\\u0022,\\\u0022type\\\u0022:\\\u0022int\\\u0022}]}\u0022" } ], "Variables": { - "RandomSeed": "1337710688", + "RandomSeed": "403326279", "SCHEMAREGISTRY_URL": "sr-playground.servicebus.windows.net" } } \ No newline at end of file diff --git a/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SessionRecords/SchemaRegistryAvroObjectSerializerLiveTest/CannotDeserializeUnsupportedType.json b/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SessionRecords/SchemaRegistryAvroObjectSerializerLiveTest/CannotDeserializeUnsupportedType.json index d46a3d442f04..6d6f5438f38d 100644 --- a/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SessionRecords/SchemaRegistryAvroObjectSerializerLiveTest/CannotDeserializeUnsupportedType.json +++ b/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SessionRecords/SchemaRegistryAvroObjectSerializerLiveTest/CannotDeserializeUnsupportedType.json @@ -1,7 +1,7 @@ { "Entries": [], "Variables": { - "RandomSeed": "838895729", + "RandomSeed": "1872862857", "SCHEMAREGISTRY_URL": "sr-playground.servicebus.windows.net" } } \ No newline at end of file diff --git a/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SessionRecords/SchemaRegistryAvroObjectSerializerLiveTest/CannotDeserializeUnsupportedTypeAsync.json b/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SessionRecords/SchemaRegistryAvroObjectSerializerLiveTest/CannotDeserializeUnsupportedTypeAsync.json index 7f4c2ab72703..6e3b759d4a95 100644 --- a/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SessionRecords/SchemaRegistryAvroObjectSerializerLiveTest/CannotDeserializeUnsupportedTypeAsync.json +++ b/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SessionRecords/SchemaRegistryAvroObjectSerializerLiveTest/CannotDeserializeUnsupportedTypeAsync.json @@ -1,7 +1,7 @@ { "Entries": [], "Variables": { - "RandomSeed": "592153647", + "RandomSeed": "781109729", "SCHEMAREGISTRY_URL": "sr-playground.servicebus.windows.net" } } \ No newline at end of file diff --git a/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SessionRecords/SchemaRegistryAvroObjectSerializerLiveTest/CannotSerializeUnsupportedType.json b/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SessionRecords/SchemaRegistryAvroObjectSerializerLiveTest/CannotSerializeUnsupportedType.json index 8686dacebc09..408704fbfe32 100644 --- a/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SessionRecords/SchemaRegistryAvroObjectSerializerLiveTest/CannotSerializeUnsupportedType.json +++ b/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SessionRecords/SchemaRegistryAvroObjectSerializerLiveTest/CannotSerializeUnsupportedType.json @@ -1,7 +1,7 @@ { "Entries": [], "Variables": { - "RandomSeed": "977456895", + "RandomSeed": "1767903814", "SCHEMAREGISTRY_URL": "sr-playground.servicebus.windows.net" } } \ No newline at end of file diff --git a/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SessionRecords/SchemaRegistryAvroObjectSerializerLiveTest/CannotSerializeUnsupportedTypeAsync.json b/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SessionRecords/SchemaRegistryAvroObjectSerializerLiveTest/CannotSerializeUnsupportedTypeAsync.json index 720db6220d8f..1c2256d85349 100644 --- a/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SessionRecords/SchemaRegistryAvroObjectSerializerLiveTest/CannotSerializeUnsupportedTypeAsync.json +++ b/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SessionRecords/SchemaRegistryAvroObjectSerializerLiveTest/CannotSerializeUnsupportedTypeAsync.json @@ -1,7 +1,7 @@ { "Entries": [], "Variables": { - "RandomSeed": "504944443", + "RandomSeed": "17557132", "SCHEMAREGISTRY_URL": "sr-playground.servicebus.windows.net" } } \ No newline at end of file