From d003b2900d95caf98058d084a61c97b6a23f26e9 Mon Sep 17 00:00:00 2001 From: Mariana Rios Flores Date: Tue, 29 Jun 2021 19:46:44 -0700 Subject: [PATCH] enable AAD tests (#22315) --- .../tests/AnalyzeOperationTests.cs | 1 - .../tests/AnalyzeSentimentTests.cs | 1 - .../tests/DetectLanguageTests.cs | 1 - .../tests/ExtractKeyPhrasesTests.cs | 1 - .../tests/RecognizeEntitiesTests.cs | 1 - .../tests/RecognizeLinkedEntitiesTests.cs | 1 - .../tests/RecognizePiiEntitiesTests.cs | 1 - .../AnalyzeOperationWithAADTest.json | 868 +++++++++++++++--- .../AnalyzeOperationWithAADTestAsync.json | 463 +++++++--- .../AnalyzeSentimentWithAADTest.json | 12 +- .../AnalyzeSentimentWithAADTestAsync.json | 12 +- .../DetectLanguageWithAADTest.json | 12 +- .../DetectLanguageWithAADTestAsync.json | 12 +- .../ExtractKeyPhrasesWithAADTest.json | 14 +- .../ExtractKeyPhrasesWithAADTestAsync.json | 14 +- .../RecognizeEntitiesWithAADTest.json | 18 +- .../RecognizeEntitiesWithAADTestAsync.json | 18 +- .../RecognizeLinkedEntitiesWithAADTest.json | 12 +- ...cognizeLinkedEntitiesWithAADTestAsync.json | 14 +- .../RecognizePiiEntitiesWithAADTest.json | 12 +- .../RecognizePiiEntitiesWithAADTestAsync.json | 12 +- 21 files changed, 1177 insertions(+), 323 deletions(-) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationTests.cs index bb4d24b11ab8d..45346105d1198 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationTests.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationTests.cs @@ -37,7 +37,6 @@ public AnalyzeOperationTests(bool isAsync, TextAnalyticsClientOptions.ServiceVer }; [RecordedTest] - [Ignore("https://github.com/Azure/azure-sdk-for-net/issues/21782")] public async Task AnalyzeOperationWithAADTest() { TextAnalyticsClient client = GetClient(useTokenCredential: true); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeSentimentTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeSentimentTests.cs index c7ae0816eecf4..0e7f880e2f27f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeSentimentTests.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeSentimentTests.cs @@ -39,7 +39,6 @@ public AnalyzeSentimentTests(bool isAsync, TextAnalyticsClientOptions.ServiceVer }; [RecordedTest] - [Ignore("https://github.com/Azure/azure-sdk-for-net/issues/21782")] public async Task AnalyzeSentimentWithAADTest() { TextAnalyticsClient client = GetClient(useTokenCredential: true); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/DetectLanguageTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/DetectLanguageTests.cs index ce33975ecd0a5..3056ad44f1184 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/DetectLanguageTests.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/DetectLanguageTests.cs @@ -54,7 +54,6 @@ public DetectLanguageTests(bool isAsync, TextAnalyticsClientOptions.ServiceVersi }; [RecordedTest] - [Ignore("https://github.com/Azure/azure-sdk-for-net/issues/21782")] public async Task DetectLanguageWithAADTest() { TextAnalyticsClient client = GetClient(useTokenCredential: true); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/ExtractKeyPhrasesTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/ExtractKeyPhrasesTests.cs index 97ac1e3f1acce..726dc5418bcff 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/ExtractKeyPhrasesTests.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/ExtractKeyPhrasesTests.cs @@ -39,7 +39,6 @@ public ExtractKeyPhrasesTests(bool isAsync, TextAnalyticsClientOptions.ServiceVe }; [RecordedTest] - [Ignore("https://github.com/Azure/azure-sdk-for-net/issues/21782")] public async Task ExtractKeyPhrasesWithAADTest() { TextAnalyticsClient client = GetClient(useTokenCredential: true); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeEntitiesTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeEntitiesTests.cs index 0daae37fedcfe..84cd1e6db0c19 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeEntitiesTests.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeEntitiesTests.cs @@ -53,7 +53,6 @@ public RecognizeEntitiesTests(bool isAsync, TextAnalyticsClientOptions.ServiceVe }; [RecordedTest] - [Ignore("https://github.com/Azure/azure-sdk-for-net/issues/21782")] public async Task RecognizeEntitiesWithAADTest() { TextAnalyticsClient client = GetClient(useTokenCredential: true); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeLinkedEntitiesTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeLinkedEntitiesTests.cs index af4de5723ce18..6999f0d180eb1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeLinkedEntitiesTests.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeLinkedEntitiesTests.cs @@ -54,7 +54,6 @@ public RecognizeLinkedEntitiesTests(bool isAsync, TextAnalyticsClientOptions.Ser }; [RecordedTest] - [Ignore("https://github.com/Azure/azure-sdk-for-net/issues/21782")] public async Task RecognizeLinkedEntitiesWithAADTest() { TextAnalyticsClient client = GetClient(useTokenCredential: true); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizePiiEntitiesTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizePiiEntitiesTests.cs index 349f0eaa76929..38b68964e2fe3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizePiiEntitiesTests.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizePiiEntitiesTests.cs @@ -53,7 +53,6 @@ public RecognizePiiEntitiesTests(bool isAsync, TextAnalyticsClientOptions.Servic }; [RecordedTest] - [Ignore("https://github.com/Azure/azure-sdk-for-net/issues/21782")] public async Task RecognizePiiEntitiesWithAADTest() { TextAnalyticsClient client = GetClient(useTokenCredential: true); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithAADTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithAADTest.json index c7f927948c96d..a336f37a276ae 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithAADTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithAADTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", "Content-Length": "241", "Content-Type": "application/json", - "traceparent": "00-31ed9c8c292c224fa9f18118bcc1203d-c444db3c281f8e4e-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-c8271d7bcf44ea4a8f353607628623ed-22e2498e9149ba42-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "de59ba8e1395f2e982e2a8b6c3b12fcf", "x-ms-return-client-request-id": "true" }, @@ -38,50 +38,46 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "b9fc560b-8287-454e-96ac-ff2163b13d32", - "Date": "Thu, 27 May 2021 18:04:44 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/994a8fb8-f126-42c9-a9df-44fe61f628f2", + "apim-request-id": "6b2bc8ae-c068-4e59-82f8-3317ae5d2628", + "Date": "Wed, 30 Jun 2021 00:20:54 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/602a2768-4069-40f8-88a6-850cd688c6fd", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "103" + "x-envoy-upstream-service-time": "3505" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/994a8fb8-f126-42c9-a9df-44fe61f628f2", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/602a2768-4069-40f8-88a6-850cd688c6fd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d0f08a276f98a811231335a436578f77", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bfc63ec1-c7ea-4a7b-a0e5-6ad408ffb674", + "apim-request-id": "71889da7-da94-4412-be35-b10abc6300a7", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:04:44 GMT", + "Date": "Wed, 30 Jun 2021 00:20:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "599" }, "ResponseBody": { - "jobId": "994a8fb8-f126-42c9-a9df-44fe61f628f2", - "lastUpdateDateTime": "2021-05-27T18:04:44Z", - "createdDateTime": "2021-05-27T18:04:44Z", - "expirationDateTime": "2021-05-28T18:04:44Z", + "jobId": "602a2768-4069-40f8-88a6-850cd688c6fd", + "lastUpdateDateTime": "2021-06-30T00:20:54Z", + "createdDateTime": "2021-06-30T00:20:51Z", + "expirationDateTime": "2021-07-01T00:20:51Z", "status": "notStarted", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:04:44Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -90,39 +86,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/994a8fb8-f126-42c9-a9df-44fe61f628f2", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/602a2768-4069-40f8-88a6-850cd688c6fd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ec1ef899d7f19ce637bb763a0306aa84", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e8e664c5-be8c-4679-a76c-1ed8f32c44f0", + "apim-request-id": "553d04d5-0212-4436-8f83-83e53b9f7cc1", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:04:45 GMT", + "Date": "Wed, 30 Jun 2021 00:20:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "855" }, "ResponseBody": { - "jobId": "994a8fb8-f126-42c9-a9df-44fe61f628f2", - "lastUpdateDateTime": "2021-05-27T18:04:45Z", - "createdDateTime": "2021-05-27T18:04:44Z", - "expirationDateTime": "2021-05-28T18:04:44Z", + "jobId": "602a2768-4069-40f8-88a6-850cd688c6fd", + "lastUpdateDateTime": "2021-06-30T00:20:55Z", + "createdDateTime": "2021-06-30T00:20:51Z", + "expirationDateTime": "2021-07-01T00:20:51Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:04:45Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -131,39 +123,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/994a8fb8-f126-42c9-a9df-44fe61f628f2", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/602a2768-4069-40f8-88a6-850cd688c6fd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a8b531a4828c1ef7a8b1ba81de45bc2b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e67e71c4-f7ea-4d75-b7ca-b88f7259edf7", + "apim-request-id": "552db916-0dcf-4af0-97d5-bc2a474ccfb3", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:04:46 GMT", + "Date": "Wed, 30 Jun 2021 00:20:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { - "jobId": "994a8fb8-f126-42c9-a9df-44fe61f628f2", - "lastUpdateDateTime": "2021-05-27T18:04:45Z", - "createdDateTime": "2021-05-27T18:04:44Z", - "expirationDateTime": "2021-05-28T18:04:44Z", + "jobId": "602a2768-4069-40f8-88a6-850cd688c6fd", + "lastUpdateDateTime": "2021-06-30T00:20:55Z", + "createdDateTime": "2021-06-30T00:20:51Z", + "expirationDateTime": "2021-07-01T00:20:51Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:04:45Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -172,39 +160,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/994a8fb8-f126-42c9-a9df-44fe61f628f2", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/602a2768-4069-40f8-88a6-850cd688c6fd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cb1d3152439250dea35398dcf9d7a41d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "89391732-698a-4145-ba9f-966ac166def5", + "apim-request-id": "96c3f221-03fc-4506-be19-7b60b0cf0f36", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:04:47 GMT", + "Date": "Wed, 30 Jun 2021 00:20:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "41" + "x-envoy-upstream-service-time": "715" }, "ResponseBody": { - "jobId": "994a8fb8-f126-42c9-a9df-44fe61f628f2", - "lastUpdateDateTime": "2021-05-27T18:04:45Z", - "createdDateTime": "2021-05-27T18:04:44Z", - "expirationDateTime": "2021-05-28T18:04:44Z", + "jobId": "602a2768-4069-40f8-88a6-850cd688c6fd", + "lastUpdateDateTime": "2021-06-30T00:20:55Z", + "createdDateTime": "2021-06-30T00:20:51Z", + "expirationDateTime": "2021-07-01T00:20:51Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:04:45Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -213,39 +197,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/994a8fb8-f126-42c9-a9df-44fe61f628f2", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/602a2768-4069-40f8-88a6-850cd688c6fd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "04ffb169e6a116ea00ff433f1d64bef2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "449f2497-559a-4530-ad8e-1386671b5d6f", + "apim-request-id": "8e649f5c-416a-48c3-82e2-f22e21c5bc14", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:04:49 GMT", + "Date": "Wed, 30 Jun 2021 00:21:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "785" }, "ResponseBody": { - "jobId": "994a8fb8-f126-42c9-a9df-44fe61f628f2", - "lastUpdateDateTime": "2021-05-27T18:04:45Z", - "createdDateTime": "2021-05-27T18:04:44Z", - "expirationDateTime": "2021-05-28T18:04:44Z", + "jobId": "602a2768-4069-40f8-88a6-850cd688c6fd", + "lastUpdateDateTime": "2021-06-30T00:20:55Z", + "createdDateTime": "2021-06-30T00:20:51Z", + "expirationDateTime": "2021-07-01T00:20:51Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:04:45Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -254,39 +234,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/994a8fb8-f126-42c9-a9df-44fe61f628f2", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/602a2768-4069-40f8-88a6-850cd688c6fd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d2e74affdfe961f153650539ea1a25d0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9c279e3a-76d6-428e-8b0b-62c0d0ae684e", + "apim-request-id": "d5767c09-4c90-4d81-9e06-f5caa8d8c3b1", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:04:50 GMT", + "Date": "Wed, 30 Jun 2021 00:21:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "994a8fb8-f126-42c9-a9df-44fe61f628f2", - "lastUpdateDateTime": "2021-05-27T18:04:45Z", - "createdDateTime": "2021-05-27T18:04:44Z", - "expirationDateTime": "2021-05-28T18:04:44Z", + "jobId": "602a2768-4069-40f8-88a6-850cd688c6fd", + "lastUpdateDateTime": "2021-06-30T00:20:55Z", + "createdDateTime": "2021-06-30T00:20:51Z", + "expirationDateTime": "2021-07-01T00:20:51Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:04:45Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -295,39 +271,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/994a8fb8-f126-42c9-a9df-44fe61f628f2", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/602a2768-4069-40f8-88a6-850cd688c6fd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2d189c0cb7466b8a4606ca93ff9e333e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8c2b8f8e-7338-4473-aa7e-df3601ef6366", + "apim-request-id": "f40b5fb6-3365-421f-8946-eabf347a23b2", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:04:51 GMT", + "Date": "Wed, 30 Jun 2021 00:21:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "652" }, "ResponseBody": { - "jobId": "994a8fb8-f126-42c9-a9df-44fe61f628f2", - "lastUpdateDateTime": "2021-05-27T18:04:51Z", - "createdDateTime": "2021-05-27T18:04:44Z", - "expirationDateTime": "2021-05-28T18:04:44Z", + "jobId": "602a2768-4069-40f8-88a6-850cd688c6fd", + "lastUpdateDateTime": "2021-06-30T00:20:55Z", + "createdDateTime": "2021-06-30T00:20:51Z", + "expirationDateTime": "2021-07-01T00:20:51Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:04:51Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -336,55 +308,718 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/994a8fb8-f126-42c9-a9df-44fe61f628f2", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/602a2768-4069-40f8-88a6-850cd688c6fd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "aedda695d2f08a33c09db13ce1b02ce6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "54e5ae68-b110-4d2e-8786-4f51892e8cfa", + "apim-request-id": "4cecb40c-a30f-4467-aa47-e3720e38e377", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 30 Jun 2021 00:21:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "jobId": "602a2768-4069-40f8-88a6-850cd688c6fd", + "lastUpdateDateTime": "2021-06-30T00:20:55Z", + "createdDateTime": "2021-06-30T00:20:51Z", + "expirationDateTime": "2021-07-01T00:20:51Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/602a2768-4069-40f8-88a6-850cd688c6fd", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "803373da914c48acc07b8ce3145e62b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7856f3df-3c94-4841-9b33-7292cd8d46c9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 30 Jun 2021 00:21:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "602a2768-4069-40f8-88a6-850cd688c6fd", + "lastUpdateDateTime": "2021-06-30T00:20:55Z", + "createdDateTime": "2021-06-30T00:20:51Z", + "expirationDateTime": "2021-07-01T00:20:51Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/602a2768-4069-40f8-88a6-850cd688c6fd", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "44a4c632763d3ae0698e6da8064d8a95", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "412237af-80fa-42ed-9aa8-be1b97252532", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 30 Jun 2021 00:21:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "602a2768-4069-40f8-88a6-850cd688c6fd", + "lastUpdateDateTime": "2021-06-30T00:20:55Z", + "createdDateTime": "2021-06-30T00:20:51Z", + "expirationDateTime": "2021-07-01T00:20:51Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/602a2768-4069-40f8-88a6-850cd688c6fd", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8cb9e3dab26a03f2f995ee7446507561", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "88cc34f3-ea5b-4911-8707-a5b0082d44fa", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 30 Jun 2021 00:21:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "602a2768-4069-40f8-88a6-850cd688c6fd", + "lastUpdateDateTime": "2021-06-30T00:20:55Z", + "createdDateTime": "2021-06-30T00:20:51Z", + "expirationDateTime": "2021-07-01T00:20:51Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/602a2768-4069-40f8-88a6-850cd688c6fd", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1b0afc3be70c63a992f916bd24044172", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3f3a6662-95bf-499d-97e3-4f560545f7d2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 30 Jun 2021 00:21:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "jobId": "602a2768-4069-40f8-88a6-850cd688c6fd", + "lastUpdateDateTime": "2021-06-30T00:20:55Z", + "createdDateTime": "2021-06-30T00:20:51Z", + "expirationDateTime": "2021-07-01T00:20:51Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/602a2768-4069-40f8-88a6-850cd688c6fd", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3008f6f1d6a57f4ad3a04aa7886cf319", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "500cbdf7-da43-454c-9ca7-11bd372cf118", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 30 Jun 2021 00:21:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "602a2768-4069-40f8-88a6-850cd688c6fd", + "lastUpdateDateTime": "2021-06-30T00:20:55Z", + "createdDateTime": "2021-06-30T00:20:51Z", + "expirationDateTime": "2021-07-01T00:20:51Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/602a2768-4069-40f8-88a6-850cd688c6fd", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "096c0b186f43f2883a55f9709c35dff5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "90068e80-5e91-4a3f-8a39-16d7e597809f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 30 Jun 2021 00:21:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "602a2768-4069-40f8-88a6-850cd688c6fd", + "lastUpdateDateTime": "2021-06-30T00:20:55Z", + "createdDateTime": "2021-06-30T00:20:51Z", + "expirationDateTime": "2021-07-01T00:20:51Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/602a2768-4069-40f8-88a6-850cd688c6fd", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4f837c53444765bcb18a476c9d01da26", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d1e96586-5c67-4034-818b-7efcd28bc0c7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 30 Jun 2021 00:21:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "602a2768-4069-40f8-88a6-850cd688c6fd", + "lastUpdateDateTime": "2021-06-30T00:20:55Z", + "createdDateTime": "2021-06-30T00:20:51Z", + "expirationDateTime": "2021-07-01T00:20:51Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/602a2768-4069-40f8-88a6-850cd688c6fd", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "18a4fd053797822e6d16f64fdcd9e39e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9d8ab211-6319-47f4-996f-5df399683159", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 30 Jun 2021 00:21:13 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "11" + }, + "ResponseBody": { + "jobId": "602a2768-4069-40f8-88a6-850cd688c6fd", + "lastUpdateDateTime": "2021-06-30T00:20:55Z", + "createdDateTime": "2021-06-30T00:20:51Z", + "expirationDateTime": "2021-07-01T00:20:51Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/602a2768-4069-40f8-88a6-850cd688c6fd", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0c5454c0a4e9d4d14e0657b8271c5538", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4156c17a-474a-4523-9117-0158364ee068", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 30 Jun 2021 00:21:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "602a2768-4069-40f8-88a6-850cd688c6fd", + "lastUpdateDateTime": "2021-06-30T00:20:55Z", + "createdDateTime": "2021-06-30T00:20:51Z", + "expirationDateTime": "2021-07-01T00:20:51Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/602a2768-4069-40f8-88a6-850cd688c6fd", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9e6bd37bc6901b5d4d01e1314d6d89d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1dd4af10-2ceb-4da8-ad01-1d72aacb6667", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 30 Jun 2021 00:21:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "602a2768-4069-40f8-88a6-850cd688c6fd", + "lastUpdateDateTime": "2021-06-30T00:20:55Z", + "createdDateTime": "2021-06-30T00:20:51Z", + "expirationDateTime": "2021-07-01T00:20:51Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/602a2768-4069-40f8-88a6-850cd688c6fd", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "48aba9a7cead613d2bd0ca90e0765a50", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "eab2f72c-adcd-4251-b180-74b4fd10176b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 30 Jun 2021 00:21:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "602a2768-4069-40f8-88a6-850cd688c6fd", + "lastUpdateDateTime": "2021-06-30T00:20:55Z", + "createdDateTime": "2021-06-30T00:20:51Z", + "expirationDateTime": "2021-07-01T00:20:51Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/602a2768-4069-40f8-88a6-850cd688c6fd", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "09d4bec0446ef90df738bee7c2a086e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7c27bdb5-95ec-4970-b3d5-5a41f0aa7631", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 30 Jun 2021 00:21:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "602a2768-4069-40f8-88a6-850cd688c6fd", + "lastUpdateDateTime": "2021-06-30T00:20:55Z", + "createdDateTime": "2021-06-30T00:20:51Z", + "expirationDateTime": "2021-07-01T00:20:51Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/602a2768-4069-40f8-88a6-850cd688c6fd", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7d107f7d0d71ac8b960a72c0fccc3bd7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "54adb5a2-9f4b-476f-a489-04dee4ccd87f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 30 Jun 2021 00:21:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "13" + }, + "ResponseBody": { + "jobId": "602a2768-4069-40f8-88a6-850cd688c6fd", + "lastUpdateDateTime": "2021-06-30T00:20:55Z", + "createdDateTime": "2021-06-30T00:20:51Z", + "expirationDateTime": "2021-07-01T00:20:51Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/602a2768-4069-40f8-88a6-850cd688c6fd", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8f7090a6809963699cb151740f559e8b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "697d45e2-215c-4b9c-aa0b-775150d3e4cd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 30 Jun 2021 00:21:19 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "jobId": "602a2768-4069-40f8-88a6-850cd688c6fd", + "lastUpdateDateTime": "2021-06-30T00:20:55Z", + "createdDateTime": "2021-06-30T00:20:51Z", + "expirationDateTime": "2021-07-01T00:20:51Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/602a2768-4069-40f8-88a6-850cd688c6fd", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6013e949dc65b3df32277264d14dfd2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8d01b39c-8f95-454d-b28a-f5dc577e1291", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 30 Jun 2021 00:21:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "602a2768-4069-40f8-88a6-850cd688c6fd", + "lastUpdateDateTime": "2021-06-30T00:20:55Z", + "createdDateTime": "2021-06-30T00:20:51Z", + "expirationDateTime": "2021-07-01T00:20:51Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/602a2768-4069-40f8-88a6-850cd688c6fd", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3241e7fdf62ffd4715ade1bfbb169c40", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "12117003-1ac4-4be1-b6b5-1b3c7984cbc6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 30 Jun 2021 00:21:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "602a2768-4069-40f8-88a6-850cd688c6fd", + "lastUpdateDateTime": "2021-06-30T00:20:55Z", + "createdDateTime": "2021-06-30T00:20:51Z", + "expirationDateTime": "2021-07-01T00:20:51Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/602a2768-4069-40f8-88a6-850cd688c6fd", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1276e76bdab9c972b1bc5c710d05914e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3547dbef-299b-4d39-8b94-9a3c17448639", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 30 Jun 2021 00:21:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "602a2768-4069-40f8-88a6-850cd688c6fd", + "lastUpdateDateTime": "2021-06-30T00:20:55Z", + "createdDateTime": "2021-06-30T00:20:51Z", + "expirationDateTime": "2021-07-01T00:20:51Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/602a2768-4069-40f8-88a6-850cd688c6fd", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "287627b46c13525ba2154ab7fb1ff71b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8f37b56f-a181-4306-88a4-a46c7fc5703c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:04:52 GMT", + "Date": "Wed, 30 Jun 2021 00:21:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-envoy-upstream-service-time": "62" }, "ResponseBody": { - "jobId": "994a8fb8-f126-42c9-a9df-44fe61f628f2", - "lastUpdateDateTime": "2021-05-27T18:04:51Z", - "createdDateTime": "2021-05-27T18:04:44Z", - "expirationDateTime": "2021-05-28T18:04:44Z", + "jobId": "602a2768-4069-40f8-88a6-850cd688c6fd", + "lastUpdateDateTime": "2021-06-30T00:21:24Z", + "createdDateTime": "2021-06-30T00:20:51Z", + "expirationDateTime": "2021-07-01T00:20:51Z", "status": "succeeded", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:04:51Z" - }, "completed": 1, "failed": 0, "inProgress": 0, "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:04:51.4160218Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-30T00:21:24.1329224Z", + "taskName": "KeyPhraseExtraction_latest", "state": "succeeded", "results": { "documents": [ { "id": "1", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -392,14 +1027,13 @@ { "id": "2", "keyPhrases": [ - "Tesla stock", - "year" + "Tesla stock" ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2021-06-01" } } ] diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithAADTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithAADTestAsync.json index 1baf1f045d23c..fee8a71c38153 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithAADTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithAADTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", "Content-Length": "241", "Content-Type": "application/json", - "traceparent": "00-15c28150a8f096448f9447a5072be796-2225ed8dd686ca44-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-2bb39b9c1da5d443b879086b69503cab-1c92317ebb59484f-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ec9c0c6aa9ca8c9cbbe33cb4c774789e", "x-ms-return-client-request-id": "true" }, @@ -38,50 +38,46 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "32a11797-3f06-4af1-a180-e0f3e40d1384", - "Date": "Thu, 27 May 2021 18:07:51 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/ab2e4f07-d7eb-48e9-8008-eb606998f604", + "apim-request-id": "10659a9f-32e2-49d5-90ff-2aefd0b7fc46", + "Date": "Wed, 30 Jun 2021 00:21:25 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/dcaa83df-cd2c-462b-ab9f-9095d3e376d6", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "461" + "x-envoy-upstream-service-time": "278" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/ab2e4f07-d7eb-48e9-8008-eb606998f604", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/dcaa83df-cd2c-462b-ab9f-9095d3e376d6", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d368261fe68dfc54398eceda38310a93", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "30065cc4-ca9f-487e-af72-ad476f92a0fa", + "apim-request-id": "b42c64fd-0a97-4ac1-bf22-603e968126a3", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:51 GMT", + "Date": "Wed, 30 Jun 2021 00:21:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "ab2e4f07-d7eb-48e9-8008-eb606998f604", - "lastUpdateDateTime": "2021-05-27T18:07:51Z", - "createdDateTime": "2021-05-27T18:07:51Z", - "expirationDateTime": "2021-05-28T18:07:51Z", - "status": "running", + "jobId": "dcaa83df-cd2c-462b-ab9f-9095d3e376d6", + "lastUpdateDateTime": "2021-06-30T00:21:26Z", + "createdDateTime": "2021-06-30T00:21:25Z", + "expirationDateTime": "2021-07-01T00:21:25Z", + "status": "notStarted", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:07:51Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -90,39 +86,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/ab2e4f07-d7eb-48e9-8008-eb606998f604", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/dcaa83df-cd2c-462b-ab9f-9095d3e376d6", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f826ed24a6800a8a382a14c7adf928d8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "66252e6b-802a-41d7-80a4-c2bf5d2faf88", + "apim-request-id": "ec1b91ef-eb0a-48ed-aca6-4246589f6582", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:52 GMT", + "Date": "Wed, 30 Jun 2021 00:21:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "ab2e4f07-d7eb-48e9-8008-eb606998f604", - "lastUpdateDateTime": "2021-05-27T18:07:51Z", - "createdDateTime": "2021-05-27T18:07:51Z", - "expirationDateTime": "2021-05-28T18:07:51Z", - "status": "running", + "jobId": "dcaa83df-cd2c-462b-ab9f-9095d3e376d6", + "lastUpdateDateTime": "2021-06-30T00:21:26Z", + "createdDateTime": "2021-06-30T00:21:25Z", + "expirationDateTime": "2021-07-01T00:21:25Z", + "status": "notStarted", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:07:51Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -131,39 +123,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/ab2e4f07-d7eb-48e9-8008-eb606998f604", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/dcaa83df-cd2c-462b-ab9f-9095d3e376d6", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "902df9e8f6a48466b89fb23bdbc1538a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d8347495-6bf9-4fbd-a336-5e34dfcc7c74", + "apim-request-id": "cf49b802-2774-474a-99ab-07f8e1bcd3c9", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:53 GMT", + "Date": "Wed, 30 Jun 2021 00:21:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "ab2e4f07-d7eb-48e9-8008-eb606998f604", - "lastUpdateDateTime": "2021-05-27T18:07:51Z", - "createdDateTime": "2021-05-27T18:07:51Z", - "expirationDateTime": "2021-05-28T18:07:51Z", - "status": "running", + "jobId": "dcaa83df-cd2c-462b-ab9f-9095d3e376d6", + "lastUpdateDateTime": "2021-06-30T00:21:26Z", + "createdDateTime": "2021-06-30T00:21:25Z", + "expirationDateTime": "2021-07-01T00:21:25Z", + "status": "notStarted", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:07:51Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -172,39 +160,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/ab2e4f07-d7eb-48e9-8008-eb606998f604", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/dcaa83df-cd2c-462b-ab9f-9095d3e376d6", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "da90a9d97f4e791d9c5d9a62d18c4e3f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3097f754-5d5a-4016-b547-6d5dc5545ede", + "apim-request-id": "d8536bc2-ef96-4315-ab33-f7ee5f2cd81b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:54 GMT", + "Date": "Wed, 30 Jun 2021 00:21:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "ab2e4f07-d7eb-48e9-8008-eb606998f604", - "lastUpdateDateTime": "2021-05-27T18:07:51Z", - "createdDateTime": "2021-05-27T18:07:51Z", - "expirationDateTime": "2021-05-28T18:07:51Z", + "jobId": "dcaa83df-cd2c-462b-ab9f-9095d3e376d6", + "lastUpdateDateTime": "2021-06-30T00:21:28Z", + "createdDateTime": "2021-06-30T00:21:25Z", + "expirationDateTime": "2021-07-01T00:21:25Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:07:51Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -213,39 +197,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/ab2e4f07-d7eb-48e9-8008-eb606998f604", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/dcaa83df-cd2c-462b-ab9f-9095d3e376d6", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3ff2f56679032dee86a13fe0f34e2e77", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8c5b0565-adca-4f35-b20d-ac07acea939f", + "apim-request-id": "a3d06e75-8d84-40fb-9c31-7a4acf655fa7", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:55 GMT", + "Date": "Wed, 30 Jun 2021 00:21:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "ab2e4f07-d7eb-48e9-8008-eb606998f604", - "lastUpdateDateTime": "2021-05-27T18:07:51Z", - "createdDateTime": "2021-05-27T18:07:51Z", - "expirationDateTime": "2021-05-28T18:07:51Z", + "jobId": "dcaa83df-cd2c-462b-ab9f-9095d3e376d6", + "lastUpdateDateTime": "2021-06-30T00:21:28Z", + "createdDateTime": "2021-06-30T00:21:25Z", + "expirationDateTime": "2021-07-01T00:21:25Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:07:51Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -254,39 +234,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/ab2e4f07-d7eb-48e9-8008-eb606998f604", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/dcaa83df-cd2c-462b-ab9f-9095d3e376d6", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "04ee8ad64e69698adbb4f4465b03b22c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fab85bbb-8736-41f8-a669-7b7b100abdaa", + "apim-request-id": "764cf49e-794d-4b50-b25f-e8fa2074a83a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:56 GMT", + "Date": "Wed, 30 Jun 2021 00:21:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "ab2e4f07-d7eb-48e9-8008-eb606998f604", - "lastUpdateDateTime": "2021-05-27T18:07:51Z", - "createdDateTime": "2021-05-27T18:07:51Z", - "expirationDateTime": "2021-05-28T18:07:51Z", + "jobId": "dcaa83df-cd2c-462b-ab9f-9095d3e376d6", + "lastUpdateDateTime": "2021-06-30T00:21:28Z", + "createdDateTime": "2021-06-30T00:21:25Z", + "expirationDateTime": "2021-07-01T00:21:25Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:07:51Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -295,39 +271,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/ab2e4f07-d7eb-48e9-8008-eb606998f604", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/dcaa83df-cd2c-462b-ab9f-9095d3e376d6", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e6d4725014cf5f87ba6253ac3f3d854d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7329f304-6c67-461e-aef5-146599d87170", + "apim-request-id": "92c58fc7-9d22-433e-94a9-6786df26568c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:58 GMT", + "Date": "Wed, 30 Jun 2021 00:21:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "ab2e4f07-d7eb-48e9-8008-eb606998f604", - "lastUpdateDateTime": "2021-05-27T18:07:51Z", - "createdDateTime": "2021-05-27T18:07:51Z", - "expirationDateTime": "2021-05-28T18:07:51Z", + "jobId": "dcaa83df-cd2c-462b-ab9f-9095d3e376d6", + "lastUpdateDateTime": "2021-06-30T00:21:28Z", + "createdDateTime": "2021-06-30T00:21:25Z", + "expirationDateTime": "2021-07-01T00:21:25Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:07:51Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -336,55 +308,311 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/ab2e4f07-d7eb-48e9-8008-eb606998f604", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/dcaa83df-cd2c-462b-ab9f-9095d3e376d6", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "478c232f4a9e18d66b89634e85a7d283", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7d16af57-73e8-461f-bb3f-42bc82d4a810", + "apim-request-id": "8757be3a-9b24-49a9-90f8-f28096382ba1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 30 Jun 2021 00:21:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "dcaa83df-cd2c-462b-ab9f-9095d3e376d6", + "lastUpdateDateTime": "2021-06-30T00:21:28Z", + "createdDateTime": "2021-06-30T00:21:25Z", + "expirationDateTime": "2021-07-01T00:21:25Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/dcaa83df-cd2c-462b-ab9f-9095d3e376d6", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "808f13ef4879c2a8038e4907fbdd299d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "716749ba-cb8a-46df-9b3b-257e866e39bb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 30 Jun 2021 00:21:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "dcaa83df-cd2c-462b-ab9f-9095d3e376d6", + "lastUpdateDateTime": "2021-06-30T00:21:28Z", + "createdDateTime": "2021-06-30T00:21:25Z", + "expirationDateTime": "2021-07-01T00:21:25Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/dcaa83df-cd2c-462b-ab9f-9095d3e376d6", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3817a62f6b76068d9cbc7a46b038da13", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "49cd8d1f-7216-4543-a7fc-e6ca2c4dc1fb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 30 Jun 2021 00:21:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "dcaa83df-cd2c-462b-ab9f-9095d3e376d6", + "lastUpdateDateTime": "2021-06-30T00:21:28Z", + "createdDateTime": "2021-06-30T00:21:25Z", + "expirationDateTime": "2021-07-01T00:21:25Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/dcaa83df-cd2c-462b-ab9f-9095d3e376d6", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2bbdcf8f04aee7d47bca440f01cf1d8e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0e1db008-b136-4012-8b8f-b287c4e8fdb7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 30 Jun 2021 00:21:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "dcaa83df-cd2c-462b-ab9f-9095d3e376d6", + "lastUpdateDateTime": "2021-06-30T00:21:28Z", + "createdDateTime": "2021-06-30T00:21:25Z", + "expirationDateTime": "2021-07-01T00:21:25Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/dcaa83df-cd2c-462b-ab9f-9095d3e376d6", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "de1ec55f9a90840c8589e4bdcd6211ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "253509b2-2e9e-4a13-83d2-646a34835817", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 30 Jun 2021 00:21:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "dcaa83df-cd2c-462b-ab9f-9095d3e376d6", + "lastUpdateDateTime": "2021-06-30T00:21:28Z", + "createdDateTime": "2021-06-30T00:21:25Z", + "expirationDateTime": "2021-07-01T00:21:25Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/dcaa83df-cd2c-462b-ab9f-9095d3e376d6", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2b7735b4fd1f2aefd230bcac267e04cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a40a974c-559d-44a6-b3dd-fdf4f7fc620e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 30 Jun 2021 00:21:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "349" + }, + "ResponseBody": { + "jobId": "dcaa83df-cd2c-462b-ab9f-9095d3e376d6", + "lastUpdateDateTime": "2021-06-30T00:21:28Z", + "createdDateTime": "2021-06-30T00:21:25Z", + "expirationDateTime": "2021-07-01T00:21:25Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/dcaa83df-cd2c-462b-ab9f-9095d3e376d6", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "eae6ec9ffb19f583c239a62420171919", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "22b7f977-a4c7-4435-bfd1-2d91c8710b83", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 30 Jun 2021 00:21:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "dcaa83df-cd2c-462b-ab9f-9095d3e376d6", + "lastUpdateDateTime": "2021-06-30T00:21:28Z", + "createdDateTime": "2021-06-30T00:21:25Z", + "expirationDateTime": "2021-07-01T00:21:25Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/dcaa83df-cd2c-462b-ab9f-9095d3e376d6", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cb5b7ab8f157626ed5f40c5fdd5f5d07", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a1a7fd30-ace1-42ef-8d37-620a44d2b3cc", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:59 GMT", + "Date": "Wed, 30 Jun 2021 00:21:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "49" + "x-envoy-upstream-service-time": "83" }, "ResponseBody": { - "jobId": "ab2e4f07-d7eb-48e9-8008-eb606998f604", - "lastUpdateDateTime": "2021-05-27T18:07:59Z", - "createdDateTime": "2021-05-27T18:07:51Z", - "expirationDateTime": "2021-05-28T18:07:51Z", + "jobId": "dcaa83df-cd2c-462b-ab9f-9095d3e376d6", + "lastUpdateDateTime": "2021-06-30T00:21:40Z", + "createdDateTime": "2021-06-30T00:21:25Z", + "expirationDateTime": "2021-07-01T00:21:25Z", "status": "succeeded", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:07:59Z" - }, "completed": 1, "failed": 0, "inProgress": 0, "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:07:59.7198937Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-30T00:21:40.8778915Z", + "taskName": "KeyPhraseExtraction_latest", "state": "succeeded", "results": { "documents": [ { "id": "1", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -392,14 +620,13 @@ { "id": "2", "keyPhrases": [ - "Tesla stock", - "year" + "Tesla stock" ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2021-06-01" } } ] diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithAADTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithAADTest.json index 2765daf0d9fd7..afec3fc546416 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithAADTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithAADTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", "Content-Length": "85", "Content-Type": "application/json", - "traceparent": "00-64166efab28e1747b4a17fa4bf780e37-036101df2c4a1a44-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-7799595de8d37e47aa2cf2dfc8fd3bc2-aa8e5afd1a354040-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "281044ce62413e7f41aa77db23c5b9b7", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "51f0a05d-2ef1-447f-9cd8-bd963309823a", + "apim-request-id": "dc795d05-2936-4d1f-bb64-64f36b11281d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 14 May 2021 18:16:40 GMT", + "Date": "Wed, 30 Jun 2021 00:21:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "84" + "x-envoy-upstream-service-time": "85" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithAADTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithAADTestAsync.json index d14687a311044..c36a19452e4c5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithAADTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithAADTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", "Content-Length": "85", "Content-Type": "application/json", - "traceparent": "00-ee73cae4b392ce478413da1e07827b21-2851eb81aae7304f-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-559c5ea28b29b14fa0a792ebdb20cb47-2d58a05a38b86545-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "856c28003995315c9665766e550a7c71", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fc1aca18-720c-4b2c-813c-1d6c3279504c", + "apim-request-id": "248d7d37-6f5b-480a-a9f0-df5fa7f8e0a4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 14 May 2021 18:16:50 GMT", + "Date": "Wed, 30 Jun 2021 00:21:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "87" + "x-envoy-upstream-service-time": "116" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithAADTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithAADTest.json index 7490330b9593c..5574aeba7261e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithAADTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithAADTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/languages", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", "Content-Length": "82", "Content-Type": "application/json", - "traceparent": "00-f0ba89c3b9ea1f419ecbaf1f07a1b4cb-1c237c24b7bc1e4c-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-1495e396208b6542b0b47ef8278e525e-0795684d5ee15e4f-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ef2430ae6f80565b38fb6ed3d787f05a", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0a4c241b-a4ca-4fc3-9c80-ea1793275209", + "apim-request-id": "8d37fcc8-4412-4711-ab92-4b0d53cdbec2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:08:11 GMT", + "Date": "Wed, 30 Jun 2021 00:21:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2516" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithAADTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithAADTestAsync.json index 278ff60641e11..d19a75fb40a88 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithAADTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithAADTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/languages", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", "Content-Length": "82", "Content-Type": "application/json", - "traceparent": "00-6456e4c70aa38c4f8c9f7259328a4755-e95a237d2c5b7341-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-f81b0d81643f854792aa247df88a6ebb-2f21f6ce2e198c48-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1b8281bd4591fa487485e468863dda1c", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "131a502f-c4e8-4d82-827f-4d63a942f85e", + "apim-request-id": "8759d3de-a7a8-4669-b64a-39bd38814194", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:08:28 GMT", + "Date": "Wed, 30 Jun 2021 00:21:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithAADTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithAADTest.json index d9cadb8cd6870..4ea6383ca66fa 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithAADTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithAADTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/keyPhrases", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", "Content-Length": "92", "Content-Type": "application/json", - "traceparent": "00-7a5a1ab16915734d990a5c0da73a697b-d4915d73db966342-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-b9ec21c2be3b8946901051f7495bb269-05006b33e2a6a54c-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0e2817fb33e29ab963263578057e277d", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cc0c3339-91be-42fd-98d0-083a12587c83", + "apim-request-id": "6aabe28f-d8f6-4940-a456-88e0172654a9", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:08:31 GMT", + "Date": "Wed, 30 Jun 2021 00:21:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "documents": [ @@ -45,7 +45,7 @@ } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2021-06-01" } } ], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithAADTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithAADTestAsync.json index ef902e6e05d2f..0a70e265aa418 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithAADTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithAADTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/keyPhrases", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", "Content-Length": "92", "Content-Type": "application/json", - "traceparent": "00-714b0e474775e34fa9debd44a695d79a-1b1f7c8d24b85643-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-f3670ce03cb24b4d852294aed326abc3-929fe290e5a53b4c-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "58b567fd93ed15e6b47cc604bb5a578a", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f4ad572c-5df9-43ab-9367-289026da6020", + "apim-request-id": "25433599-6f69-4c37-91d9-655caa446d2d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:08:33 GMT", + "Date": "Wed, 30 Jun 2021 00:21:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "documents": [ @@ -45,7 +45,7 @@ } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2021-06-01" } } ], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithAADTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithAADTest.json index a5a411ef181b0..4d3d567a9e731 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithAADTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithAADTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", "Content-Length": "103", "Content-Type": "application/json", - "traceparent": "00-7994560652b602459920ebb623bf3281-410469c56420c74f-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-106b0194ac30994b8ab4c0b1369c9997-f8a3d983a5b62a45-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d22fd110eebc5d37b5bf26dc7ce47dd3", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "31128852-acb1-4cc2-afa7-d3944b0e8756", + "apim-request-id": "241e574c-ed98-43d0-9055-26213c38236c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:08:36 GMT", + "Date": "Wed, 30 Jun 2021 00:21:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { "documents": [ @@ -43,7 +43,7 @@ "category": "Organization", "offset": 0, "length": 9, - "confidenceScore": 0.97 + "confidenceScore": 1.0 }, { "text": "Bill Gates", @@ -57,14 +57,14 @@ "category": "Person", "offset": 40, "length": 10, - "confidenceScore": 0.99 + "confidenceScore": 1.0 } ], "warnings": [] } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithAADTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithAADTestAsync.json index ab5a3a7018dec..06c50b2c26980 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithAADTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithAADTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", "Content-Length": "103", "Content-Type": "application/json", - "traceparent": "00-36c1b29585d3a0409e60a1281cf1587f-3e5428d1c0a5954b-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-87e60bbbe02026438d9c0b19c231381d-b65d339b0a73c249-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ea644f0685369a42da05c1cab15ed4b8", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "54bdfa1b-7ff3-4351-9044-ba633fb7c73d", + "apim-request-id": "0db26ab0-8b3c-4561-a799-248a1af351a4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:08:39 GMT", + "Date": "Wed, 30 Jun 2021 00:21:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "documents": [ @@ -43,7 +43,7 @@ "category": "Organization", "offset": 0, "length": 9, - "confidenceScore": 0.97 + "confidenceScore": 1.0 }, { "text": "Bill Gates", @@ -57,14 +57,14 @@ "category": "Person", "offset": 40, "length": 10, - "confidenceScore": 0.99 + "confidenceScore": 1.0 } ], "warnings": [] } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithAADTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithAADTest.json index a22955959a271..5ccfa8dd1e01a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithAADTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithAADTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/linking?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", "Content-Length": "103", "Content-Type": "application/json", - "traceparent": "00-07eadb70c567624db05e9c065f05bace-9a0191cfaca9d346-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-5967756483d1b34697acf6704048f797-02c1a81b36c54b4e-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9cfcb2d38a13d7403cf9b4c884309692", "x-ms-return-client-request-id": "true" }, @@ -24,10 +24,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "940aa1f2-95e7-49cd-87e4-929e04cb25c5", + "apim-request-id": "a177bbca-a5b5-4216-a6d4-a283b899dafb", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:08:56 GMT", + "Date": "Wed, 30 Jun 2021 00:21:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", @@ -91,7 +91,7 @@ } ], "errors": [], - "modelVersion": "2020-02-01" + "modelVersion": "2021-06-01" } } ], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithAADTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithAADTestAsync.json index bde58c2b47535..84784c8eec7b5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithAADTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithAADTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/linking?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", "Content-Length": "103", "Content-Type": "application/json", - "traceparent": "00-615e0ed4008e9d4aa9c66244459c35df-0c0c7df07f658b47-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-18079e2a890dfb46b3be742be8db96ff-2ea32be14cd5884e-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "53ef8655a9a359cd56891afb97313ae8", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "278e6979-ef5c-4749-a438-768c7c112ea9", + "apim-request-id": "cc860ffc-1887-4851-89a8-bb9837117183", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:09:01 GMT", + "Date": "Wed, 30 Jun 2021 00:21:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "documents": [ @@ -91,7 +91,7 @@ } ], "errors": [], - "modelVersion": "2020-02-01" + "modelVersion": "2021-06-01" } } ], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithAADTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithAADTest.json index 11ea10a4714a8..7c4e150eb88f7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithAADTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithAADTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", "Content-Length": "175", "Content-Type": "application/json", - "traceparent": "00-d31921221de52e47979bdd56bf09c539-73df1d0777beac46-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-67add5db2a82e34dbc79e499c6c100dd-8b0874429ff7c34b-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "37b0c405e8fb2bfa7000c61a49129f9e", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9de0f0f6-219a-4675-a66f-91a5bc2c5025", + "apim-request-id": "618a46d0-722e-43bc-916a-3ccac79ca03a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 14 May 2021 17:21:44 GMT", + "Date": "Wed, 30 Jun 2021 00:21:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "37" + "x-envoy-upstream-service-time": "168" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithAADTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithAADTestAsync.json index d7bf1ab253ef4..fc6236b942c2e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithAADTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithAADTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", "Content-Length": "175", "Content-Type": "application/json", - "traceparent": "00-ddeac5c0b5e19a45bc91f15fe910b889-c7f932b9afa79340-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-e1ca7b3c7a96434fb5152601f1f47e1e-8cbc19ac0d7d0544-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "66cf91a593c37d4ee57b52513ba42d19", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "240f7b93-e8e1-4944-a87f-7252ec6c5f39", + "apim-request-id": "5a4ddfc4-bd48-45e7-b856-a9be57a4482b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 14 May 2021 17:21:46 GMT", + "Date": "Wed, 30 Jun 2021 00:21:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { "documents": [